Example #1
0
 /**
  * Adds the card to the view
  *
  * @param sharedPreferences the shared preferences
  * @param key the key
  */
 private void addCard(SharedPreferences sharedPreferences, String key) {
   String json = sharedPreferences.getString(key, null);
   if (json != null) {
     try {
       JSONObject jsonData = new JSONObject(json);
       if (jsonData.has(IMAGE_KEY)) {
         String image = jsonData.getString(IMAGE_KEY);
         List<ITopic> cards = getSourceTopicModel();
         if (key.equals(POOL_KEY)) {
           cards.add(0, Cards.pool(image, getActivity()));
           removeDuplicates(POOL_KEY, cards);
         } else if (key.equals(FOOD_KEY)) {
           cards.add(0, Cards.food(image, getActivity()));
           removeDuplicates(FOOD_KEY, cards);
         }
       } else if (jsonData.has(MESSAGE_KEY)) {
         String message = jsonData.getString(MESSAGE_KEY);
         List<ITopic> cards = getSourceTopicModel();
         cards.add(0, Cards.test(message, getActivity()));
       }
       UI.execute(this::filterModel);
     } catch (JSONException e) {
       e.printStackTrace();
     }
   }
 }
Example #2
0
  @Override
  public View onCreateView(
      LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
    View view = inflater.inflate(R.layout.fragment_cards_now, container, false);

    initViewsAndAdapters();
    initListView();

    FrameLayout mFrameLayout = (FrameLayout) view.findViewById(R.id.now_cards_list);
    mFrameLayout.addView(getExpandableListView());

    mSocket.on(
        EVENT_INIT,
        args -> {
          UI.execute(
              () -> {
                JSONObject jsonObject = (JSONObject) args[0];

                try {
                  JSONArray jsonArray = jsonObject.getJSONArray(INIT_BEACONS_KEY);
                  for (int i = 0; i < jsonArray.length(); i++) {
                    JSONObject beacon = (JSONObject) jsonArray.get(i);
                    String identifier = beacon.getString(ID_KEY);
                    int floor = beacon.getInt(FLOOR_KEY);

                    BeaconLocationManager bm = HereAndNowApplication.getBeaconLocationManager();
                    bm.addBeacon(identifier, floor, getContext());
                  }

                  // Start the manager.
                  HereAndNowApplication.getBeaconLocationManager().resume();

                  // Initialize cards.
                  JSONArray cardsArray = jsonObject.getJSONArray(INIT_MESSAGES_KEY);
                  setupInitialView(cardsArray);
                } catch (JSONException e) {
                  e.printStackTrace();
                }
              });
        });

    mSocket.emit(EVENT_INIT); // Requests latest messages

    initTopicsAndCards(createPreBuiltTopics(), getSourceTopicModel(), getTopicListAdapter());
    filterModel();

    return view;
  }
Example #3
0
  private void setupInitialView(JSONArray jsonArray) {
    try {
      for (int i = 0; i < jsonArray.length(); i++) {
        JSONObject jsonObject = jsonArray.getJSONObject(i);
        Context context = HereAndNowApplication.getStaticContext();
        List<ITopic> cards = getSourceTopicModel();
        switch (jsonObject.getString(TYPE_KEY)) {
          case TOILET_KEY:
            SharedPreferencesManager.saveToSharedPreferences(jsonObject, context);
            break;
          case POOL_KEY:
            String poolImage = jsonObject.getString(IMAGE_KEY);
            cards.add(0, Cards.pool(poolImage, context));
            removeDuplicates(POOL_KEY, cards);
            break;
          case FOOD_KEY:
            String foodImage = jsonObject.getString(IMAGE_KEY);
            cards.add(0, Cards.food(foodImage, context));
            removeDuplicates(FOOD_KEY, cards);
            break;
          case TEST_KEY:
            String message = jsonObject.getString(MESSAGE_KEY);
            cards.add(0, Cards.test(message, context));
            break;
          case SAUNA_KEY:
            String status = jsonObject.getString(STATUS_KEY);
            cards.add(0, Cards.sauna(status, context));
            removeDuplicates(SAUNA_KEY, cards);
            break;
          case TRACK_ITEM_KEY:
            String item = jsonObject.getString(ITEM_KEY);
            cards.add(0, Cards.trackItem(item, context));
            break;
          default:
            break;
        }
      }
    } catch (JSONException e) {
      e.printStackTrace();
    }

    UI.execute(this::filterModel);
  }