aboutsummaryrefslogtreecommitdiffstats
path: root/app/src/main/java/net/lacolaco/smileessence/view/UserListFragment.java
blob: ccdf89f7de9f8022896b9b007b356dd4c26f75b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
/*
 * The MIT License (MIT)
 *
 * Copyright (c) 2012-2014 lacolaco.net
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in all
 * copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 * SOFTWARE.
 */

package net.lacolaco.smileessence.view;

import android.content.DialogInterface;
import android.os.Bundle;
import android.text.TextUtils;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ImageButton;
import android.widget.ListView;
import android.widget.TextView;
import com.handmark.pulltorefresh.library.PullToRefreshBase;
import com.handmark.pulltorefresh.library.PullToRefreshListView;
import net.lacolaco.smileessence.R;
import net.lacolaco.smileessence.activity.MainActivity;
import net.lacolaco.smileessence.entity.Account;
import net.lacolaco.smileessence.entity.Tweet;
import net.lacolaco.smileessence.notification.Notificator;
import net.lacolaco.smileessence.twitter.StatusFilter;
import net.lacolaco.smileessence.twitter.task.UserListStatusesTask;
import net.lacolaco.smileessence.twitter.util.TwitterUtils;
import net.lacolaco.smileessence.util.UIHandler;
import net.lacolaco.smileessence.view.dialog.SelectUserListDialogFragment;
import net.lacolaco.smileessence.viewmodel.StatusViewModel;
import net.lacolaco.smileessence.viewmodel.UserListListAdapter;
import twitter4j.Paging;

public class UserListFragment extends CustomListFragment<UserListListAdapter> implements View.OnClickListener {

    // ------------------------------ FIELDS ------------------------------

    private TextView textListName;

    // --------------------- GETTER / SETTER METHODS ---------------------

    private MainActivity getMainActivity() {
        return (MainActivity) getActivity();
    }

    @Override
    protected PullToRefreshBase.Mode getRefreshMode() {
        return PullToRefreshBase.Mode.BOTH;
    }

    // ------------------------ INTERFACE METHODS ------------------------

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        UserListListAdapter adapter = new UserListListAdapter(getActivity());
        setAdapter(adapter);

        String lastUserList = getMainActivity().getLastUserList();
        if (!TextUtils.isEmpty(lastUserList)) {
            startUserList(((MainActivity) getActivity()).getCurrentAccount(), lastUserList);
        }
    }
    // --------------------- Interface OnClickListener ---------------------

    @Override
    public void onClick(View v) {
        int id = v.getId();
        switch (id) {
            case R.id.button_userlist_lists: {
                openUserListsDialog(getMainActivity());
                break;
            }
        }
    }

    // --------------------- Interface OnRefreshListener2 ---------------------

    @Override
    public void onPullDownToRefresh(final PullToRefreshBase<ListView> refreshView) {
        final MainActivity activity = getMainActivity();
        final Account currentAccount = activity.getCurrentAccount();
        final UserListListAdapter adapter = getAdapter();
        String listFullName = adapter.getListFullName();
        if (TextUtils.isEmpty(listFullName)) {
            new UIHandler().post(() -> {
                notifyTextEmpty(activity);
                refreshView.onRefreshComplete();
            });
            return;
        }
        Paging paging = TwitterUtils.getPaging(activity.getRequestCountPerPage());
        if (adapter.getCount() > 0) {
            paging.setSinceId(adapter.getTopID());
        }
        new UserListStatusesTask(currentAccount, listFullName, paging).onDoneUI(tweets -> {
            for (int i = tweets.size() - 1; i >= 0; i--) {
                StatusViewModel statusViewModel = new StatusViewModel(tweets.get(i));
                adapter.addToTop(statusViewModel);
                StatusFilter.getInstance().filter(statusViewModel);
            }
            updateListViewWithNotice(refreshView.getRefreshableView(), true);
            refreshView.onRefreshComplete();
        }).execute();
    }

    @Override
    public void onPullUpToRefresh(final PullToRefreshBase<ListView> refreshView) {
        final MainActivity activity = getMainActivity();
        final Account currentAccount = activity.getCurrentAccount();
        final UserListListAdapter adapter = getAdapter();
        String listFullName = adapter.getListFullName();
        if (TextUtils.isEmpty(listFullName)) {
            new UIHandler().post(() -> {
                notifyTextEmpty(activity);
                refreshView.onRefreshComplete();
            });
            return;
        }
        Paging paging = TwitterUtils.getPaging(activity.getRequestCountPerPage());
        if (adapter.getCount() > 0) {
            paging.setMaxId(adapter.getLastID() - 1);
        }
        new UserListStatusesTask(currentAccount, listFullName, paging).onDoneUI(tweets -> {
            for (int i = 0; i < tweets.size(); i++) {
                StatusViewModel statusViewModel = new StatusViewModel(tweets.get(i));
                adapter.addToBottom(statusViewModel);
                StatusFilter.getInstance().filter(statusViewModel);
            }
            updateListViewWithNotice(refreshView.getRefreshableView(), false);
            refreshView.onRefreshComplete();
        }).execute();
    }

    // ------------------------ OVERRIDE METHODS ------------------------

    @Override
    protected PullToRefreshListView getListView(View page) {
        return (PullToRefreshListView) page.findViewById(R.id.listview_userlist);
    }

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
        View page = inflater.inflate(R.layout.fragment_userlist, container, false);
        PullToRefreshListView listView = getListView(page);
        UserListListAdapter adapter = (UserListListAdapter) getAdapter();
        listView.setAdapter(adapter);
        listView.setOnScrollListener(this);
        listView.setOnRefreshListener(this);
        listView.setMode(getRefreshMode());
        ImageButton buttonUserLists = getUserListsButton(page);
        buttonUserLists.setOnClickListener(this);
        textListName = getTextListName(page);
        textListName.setText(adapter.getListFullName());
        return page;
    }

    private TextView getTextListName(View page) {
        return (TextView) page.findViewById(R.id.textview_userlist_name);
    }

    private ImageButton getUserListsButton(View page) {
        return (ImageButton) page.findViewById(R.id.button_userlist_lists);
    }

    private void notifyTextEmpty(MainActivity activity) {
        Notificator.getInstance().publish(R.string.notice_userlist_not_selected);
    }

    private void openUserListsDialog(final MainActivity mainActivity) {
        DialogHelper.showDialog(mainActivity, new SelectUserListDialogFragment() {
            @Override
            public void onDismiss(DialogInterface dialog) {
                super.onDismiss(dialog);
                textListName.setText(getAdapter().getListFullName());
            }
        });
    }

    public void startUserList(Account account, String listFullName) {
        getMainActivity().setLastUserList(listFullName);
        final UserListListAdapter adapter = getAdapter();
        adapter.setListFullName(listFullName);
        adapter.clear();
        adapter.updateForce();
        new UserListStatusesTask(account, listFullName, TwitterUtils.getPaging(getMainActivity().getRequestCountPerPage())).onDoneUI(tweets -> {
            for (Tweet tweet : tweets) {
                StatusViewModel statusViewModel = new StatusViewModel(tweet);
                adapter.addToBottom(statusViewModel);
                StatusFilter.getInstance().filter(statusViewModel);
            }
            adapter.updateForce();
        }).execute();
    }
}