-
Notifications
You must be signed in to change notification settings - Fork 306
/
Copy pathNoteWidgetDark.java
194 lines (171 loc) · 10.7 KB
/
NoteWidgetDark.java
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
package com.automattic.simplenote;
import static com.automattic.simplenote.analytics.AnalyticsTracker.CATEGORY_WIDGET;
import static com.automattic.simplenote.analytics.AnalyticsTracker.Stat.NOTE_WIDGET_DELETED;
import static com.automattic.simplenote.analytics.AnalyticsTracker.Stat.NOTE_WIDGET_FIRST_ADDED;
import static com.automattic.simplenote.analytics.AnalyticsTracker.Stat.NOTE_WIDGET_LAST_DELETED;
import static com.automattic.simplenote.analytics.AnalyticsTracker.Stat.NOTE_WIDGET_NOTE_NOT_FOUND_TAPPED;
import static com.automattic.simplenote.analytics.AnalyticsTracker.Stat.NOTE_WIDGET_NOTE_TAPPED;
import static com.automattic.simplenote.analytics.AnalyticsTracker.Stat.NOTE_WIDGET_SIGN_IN_TAPPED;
import static com.automattic.simplenote.utils.WidgetUtils.KEY_WIDGET_CLICK;
import android.app.PendingIntent;
import android.appwidget.AppWidgetManager;
import android.appwidget.AppWidgetProvider;
import android.content.Context;
import android.content.Intent;
import android.os.Bundle;
import android.text.SpannableStringBuilder;
import android.view.View;
import android.widget.RemoteViews;
import com.automattic.simplenote.analytics.AnalyticsTracker;
import com.automattic.simplenote.models.Note;
import com.automattic.simplenote.utils.ChecklistUtils;
import com.automattic.simplenote.utils.IntentUtils;
import com.automattic.simplenote.utils.PrefUtils;
import com.simperium.Simperium;
import com.simperium.client.Bucket;
import com.simperium.client.BucketObjectMissingException;
import com.simperium.client.User;
public class NoteWidgetDark extends AppWidgetProvider {
public static final String KEY_WIDGET_IDS_DARK = "key_widget_ids_dark";
@Override
public void onReceive(Context context, Intent intent) {
if (intent.getExtras() != null && intent.hasExtra(KEY_WIDGET_IDS_DARK)) {
int[] ids = intent.getExtras().getIntArray(KEY_WIDGET_IDS_DARK);
this.onUpdate(context, AppWidgetManager.getInstance(context), ids);
} else {
super.onReceive(context, intent);
}
}
@Override
public void onUpdate(Context context, AppWidgetManager appWidgetManager, int[] appWidgetIds) {
for (int appWidgetId : appWidgetIds) {
Bundle appWidgetOptions = appWidgetManager.getAppWidgetOptions(appWidgetId);
updateWidget(context, appWidgetManager, appWidgetId, appWidgetOptions);
}
}
@Override
public void onAppWidgetOptionsChanged(Context context, AppWidgetManager appWidgetManager, int appWidgetId, Bundle newOptions) {
RemoteViews views = new RemoteViews(context.getPackageName(), PrefUtils.getLayoutWidget(context, false));
resizeWidget(newOptions, views);
appWidgetManager.updateAppWidget(appWidgetId, views);
}
@Override
public void onDeleted(Context context, int[] appWidgetIds) {
AnalyticsTracker.track(
NOTE_WIDGET_DELETED,
CATEGORY_WIDGET,
"note_widget_deleted"
);
}
@Override
public void onEnabled(Context context) {
AnalyticsTracker.track(
NOTE_WIDGET_FIRST_ADDED,
CATEGORY_WIDGET,
"note_widget_first_added"
);
}
@Override
public void onDisabled(Context context) {
AnalyticsTracker.track(
NOTE_WIDGET_LAST_DELETED,
CATEGORY_WIDGET,
"note_widget_last_deleted"
);
}
private void resizeWidget(Bundle appWidgetOptions, RemoteViews views) {
// Show/Hide larger title and content based on widget width
if (appWidgetOptions.getInt(AppWidgetManager.OPTION_APPWIDGET_MAX_WIDTH) > 200) {
views.setViewVisibility(R.id.widget_text, View.GONE);
views.setViewVisibility(R.id.widget_text_title, View.VISIBLE);
views.setViewVisibility(R.id.widget_text_content, View.VISIBLE);
} else {
views.setViewVisibility(R.id.widget_text, View.VISIBLE);
views.setViewVisibility(R.id.widget_text_title, View.GONE);
views.setViewVisibility(R.id.widget_text_content, View.GONE);
}
}
private void updateWidget(Context context, AppWidgetManager appWidgetManager, int appWidgetId, Bundle appWidgetOptions) {
// Get widget views
RemoteViews views = new RemoteViews(context.getPackageName(), PrefUtils.getLayoutWidget(context, false));
resizeWidget(appWidgetOptions, views);
// Verify user authentication
Simplenote currentApp = (Simplenote) context.getApplicationContext();
Simperium simperium = currentApp.getSimperium();
User user = simperium.getUser();
if (user.getStatus().equals(User.Status.NOT_AUTHORIZED)) {
// Create intent to navigate to notes activity which redirects to login on widget click
Intent intent = IntentUtils.maybeAliasedIntent(context);
intent.putExtra(KEY_WIDGET_CLICK, NOTE_WIDGET_SIGN_IN_TAPPED);
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TOP);
PendingIntent pendingIntent = PendingIntent.getActivity(context, appWidgetId, intent, PendingIntent.FLAG_IMMUTABLE);
views.setOnClickPendingIntent(R.id.widget_layout, pendingIntent);
views.setTextViewText(R.id.widget_text, context.getResources().getString(R.string.log_in_use_widget));
views.setTextColor(R.id.widget_text, context.getResources().getColor(R.color.text_title_dark, context.getTheme()));
views.setTextViewText(R.id.widget_text_title, context.getResources().getString(R.string.log_in_use_widget));
views.setTextColor(R.id.widget_text_title, context.getResources().getColor(R.color.text_title_dark, context.getTheme()));
views.setViewVisibility(R.id.widget_text_content, View.GONE);
} else {
// Get note id from SharedPreferences
String key = PrefUtils.getStringPref(context, PrefUtils.PREF_NOTE_WIDGET_NOTE + appWidgetId);
if (!key.isEmpty()) {
// Get notes bucket
Bucket<Note> notesBucket = currentApp.getNotesBucket();
try {
// Update note
Note updatedNote = notesBucket.get(key);
// Prepare bundle for NoteEditorActivity
Bundle arguments = new Bundle();
arguments.putBoolean(NoteEditorFragment.ARG_IS_FROM_WIDGET, true);
arguments.putString(NoteEditorFragment.ARG_ITEM_ID, updatedNote.getSimperiumKey());
arguments.putBoolean(NoteEditorFragment.ARG_MARKDOWN_ENABLED, updatedNote.isMarkdownEnabled());
arguments.putBoolean(NoteEditorFragment.ARG_PREVIEW_ENABLED, updatedNote.isPreviewEnabled());
// Create intent to navigate to selected note on widget click
Intent intent = new Intent(context, NoteEditorActivity.class);
intent.putExtras(arguments);
intent.putExtra(KEY_WIDGET_CLICK, NOTE_WIDGET_NOTE_TAPPED);
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TOP);
PendingIntent pendingIntent = PendingIntent.getActivity(context, appWidgetId, intent, PendingIntent.FLAG_UPDATE_CURRENT | PendingIntent.FLAG_IMMUTABLE);
// Remove title from content
String title = updatedNote.getTitle();
String contentWithoutTitle = updatedNote.getContent().replace(title, "");
int indexOfNewline = contentWithoutTitle.indexOf("\n") + 1;
String content = contentWithoutTitle.substring(indexOfNewline < contentWithoutTitle.length() ? indexOfNewline : 0);
// Set widget content
views.setOnClickPendingIntent(R.id.widget_layout, pendingIntent);
views.setTextViewText(R.id.widget_text, title);
views.setTextColor(R.id.widget_text, context.getResources().getColor(R.color.text_title_dark, context.getTheme()));
views.setTextViewText(R.id.widget_text_title, title);
views.setTextColor(R.id.widget_text_title, context.getResources().getColor(R.color.text_title_dark, context.getTheme()));
SpannableStringBuilder contentSpan = new SpannableStringBuilder(content);
contentSpan = (SpannableStringBuilder) ChecklistUtils.addChecklistUnicodeSpansForRegex(
contentSpan,
ChecklistUtils.CHECKLIST_REGEX
);
views.setTextViewText(R.id.widget_text_content, contentSpan);
} catch (BucketObjectMissingException e) {
// Create intent to navigate to widget configure activity on widget click
Intent intent = new Intent(context, NoteWidgetDarkConfigureActivity.class);
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TOP);
intent.putExtra(KEY_WIDGET_CLICK, NOTE_WIDGET_NOTE_NOT_FOUND_TAPPED);
intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, appWidgetId);
PendingIntent pendingIntent = PendingIntent.getActivity(context, appWidgetId, intent, PendingIntent.FLAG_UPDATE_CURRENT | PendingIntent.FLAG_IMMUTABLE);
views.setOnClickPendingIntent(R.id.widget_layout, pendingIntent);
views.setTextViewText(R.id.widget_text, context.getResources().getString(R.string.note_not_found));
views.setTextColor(R.id.widget_text, context.getResources().getColor(R.color.text_title_dark, context.getTheme()));
views.setTextViewText(R.id.widget_text_title, context.getResources().getString(R.string.note_not_found));
views.setTextColor(R.id.widget_text_title, context.getResources().getColor(R.color.text_title_dark, context.getTheme()));
views.setViewVisibility(R.id.widget_text_content, View.GONE);
}
} else {
views.setOnClickPendingIntent(R.id.widget_layout, null);
views.setTextViewText(R.id.widget_text, context.getResources().getString(R.string.note_not_found));
views.setTextColor(R.id.widget_text, context.getResources().getColor(R.color.text_title_dark, context.getTheme()));
views.setTextViewText(R.id.widget_text_title, context.getResources().getString(R.string.note_not_found));
views.setTextColor(R.id.widget_text_title, context.getResources().getColor(R.color.text_title_dark, context.getTheme()));
views.setViewVisibility(R.id.widget_text_content, View.GONE);
}
}
appWidgetManager.updateAppWidget(appWidgetId, views);
}
}