-
-
Notifications
You must be signed in to change notification settings - Fork 153
Expand file tree
/
Copy pathBaseNoteFragment.java
More file actions
548 lines (464 loc) · 19.2 KB
/
BaseNoteFragment.java
File metadata and controls
548 lines (464 loc) · 19.2 KB
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
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
/*
* Nextcloud Notes - Android Client
*
* SPDX-FileCopyrightText: 2017-2024 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: GPL-3.0-or-later
*/
package it.niedermann.owncloud.notes.edit;
import static it.niedermann.owncloud.notes.edit.EditNoteActivity.ACTION_SHORTCUT;
import static it.niedermann.owncloud.notes.shared.util.WidgetUtil.pendingIntentFlagCompat;
import android.app.PendingIntent;
import android.content.Context;
import android.content.Intent;
import android.os.Build;
import android.os.Bundle;
import android.util.Log;
import android.view.Menu;
import android.view.MenuInflater;
import android.view.MenuItem;
import android.view.View;
import android.widget.ScrollView;
import androidx.annotation.CallSuper;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import androidx.core.content.pm.ShortcutInfoCompat;
import androidx.core.content.pm.ShortcutManagerCompat;
import androidx.core.graphics.drawable.IconCompat;
import com.nextcloud.android.sso.exceptions.NextcloudFilesAppAccountNotFoundException;
import com.nextcloud.android.sso.exceptions.NoCurrentAccountSelectedException;
import com.nextcloud.android.sso.helper.SingleAccountHelper;
import com.owncloud.android.lib.common.utils.Log_OC;
import java.util.ArrayList;
import java.util.Calendar;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
import it.niedermann.owncloud.notes.R;
import it.niedermann.owncloud.notes.accountpicker.AccountPickerDialogFragment;
import it.niedermann.owncloud.notes.branding.BrandedFragment;
import it.niedermann.owncloud.notes.branding.BrandingUtil;
import it.niedermann.owncloud.notes.edit.category.CategoryDialogFragment;
import it.niedermann.owncloud.notes.edit.category.CategoryDialogFragment.CategoryDialogListener;
import it.niedermann.owncloud.notes.edit.title.EditTitleDialogFragment;
import it.niedermann.owncloud.notes.edit.title.EditTitleDialogFragment.EditTitleListener;
import it.niedermann.owncloud.notes.persistence.NotesRepository;
import it.niedermann.owncloud.notes.persistence.entity.Account;
import it.niedermann.owncloud.notes.persistence.entity.Note;
import it.niedermann.owncloud.notes.shared.model.ApiVersion;
import it.niedermann.owncloud.notes.shared.model.DBStatus;
import it.niedermann.owncloud.notes.shared.model.ISyncCallback;
import it.niedermann.owncloud.notes.shared.util.ApiVersionUtil;
import it.niedermann.owncloud.notes.shared.util.NoteUtil;
import it.niedermann.owncloud.notes.shared.util.ShareUtil;
public abstract class BaseNoteFragment extends BrandedFragment implements CategoryDialogListener, EditTitleListener {
private static final String TAG = BaseNoteFragment.class.getSimpleName();
protected final ExecutorService executor = Executors.newCachedThreadPool();
protected static final int MENU_ID_PIN = -1;
public static final String PARAM_NOTE_ID = "noteId";
public static final String PARAM_ACCOUNT_ID = "accountId";
public static final String PARAM_CONTENT = "content";
public static final String PARAM_NEWNOTE = "newNote";
private static final String SAVEDKEY_NOTE = "note";
private static final String SAVEDKEY_ORIGINAL_NOTE = "original_note";
private Account localAccount;
protected Note note;
// TODO do we really need this? The reference to note is currently the same
@Nullable
private Note originalNote;
private int originalScrollY;
protected NotesRepository repo;
@Nullable
protected NoteFragmentListener listener;
private boolean titleModified = false;
protected boolean isNew = true;
@Override
public void onAttach(@NonNull Context context) {
super.onAttach(context);
try {
listener = (NoteFragmentListener) context;
} catch (ClassCastException e) {
throw new ClassCastException(context.getClass() + " must implement " + NoteFragmentListener.class);
}
repo = NotesRepository.getInstance(context);
}
@Override
public void onViewCreated(@NonNull View view, @Nullable Bundle savedInstanceState) {
super.onViewCreated(view, savedInstanceState);
setHasOptionsMenu(true);
executor.execute(() -> {
try {
initializeAccount();
if (savedInstanceState != null) {
loadFromSavedState(savedInstanceState);
} else {
loadFromArguments();
}
requireActivity().runOnUiThread(() -> {
Log.v("createAndLoadNote", "oldNote: id: " + note.getId() + " remote: " + note.getRemoteId());
Note updatedNote = repo.getNoteById$(note.getId()).getValue();
if (updatedNote != null) {
note = updatedNote;
}
Log.v("createAndLoadNote", "updatedNote: id: " + note.getId() + " remote: " + note.getRemoteId());
onNoteLoaded(note); // TODO update note
requireActivity().invalidateOptionsMenu();
if (listener != null) {
listener.onNoteUpdated(note);
}
});
} catch (NextcloudFilesAppAccountNotFoundException | NoCurrentAccountSelectedException e) {
Log_OC.e(TAG, e.getLocalizedMessage());
}
});
}
private void initializeAccount() throws NextcloudFilesAppAccountNotFoundException, NoCurrentAccountSelectedException {
final var ssoAccount = SingleAccountHelper.getCurrentSingleSignOnAccount(requireContext().getApplicationContext());
this.localAccount = repo.getAccountByName(ssoAccount.name);
}
private void loadFromSavedState(Bundle savedInstanceState) {
note = (Note) savedInstanceState.getSerializable(SAVEDKEY_NOTE);
originalNote = (Note) savedInstanceState.getSerializable(SAVEDKEY_ORIGINAL_NOTE);
}
private void loadFromArguments() {
final long noteId = requireArguments().getLong(PARAM_NOTE_ID);
if (noteId > 0) {
loadExistingNote(noteId);
} else {
createNewNote();
}
}
private void loadExistingNote(long noteId) {
// Switch account if provided
final long accountId = requireArguments().getLong(PARAM_ACCOUNT_ID);
if (accountId > 0) {
this.localAccount = repo.getAccountById(accountId);
SingleAccountHelper.commitCurrentAccount(requireContext().getApplicationContext(), localAccount.getAccountName());
}
isNew = false;
note = originalNote = repo.getNoteById(noteId);
if (note == null) {
Log_OC.d(TAG, "remoteNoteId will be used to get note");
note = repo.getNoteByRemoteId(noteId);
}
}
private void createNewNote() {
final var paramNote = (Note) requireArguments().getSerializable(PARAM_NEWNOTE);
final var content = requireArguments().getString(PARAM_CONTENT);
if (paramNote != null) {
// Create from provided note
paramNote.setStatus(DBStatus.LOCAL_EDITED);
note = repo.addNote(localAccount.getId(), paramNote);
originalNote = null;
} else if (content != null) {
// Create from content string
note = new Note(-1, null, Calendar.getInstance(),
NoteUtil.generateNoteTitle(content), content,
getString(R.string.category_readonly), false, null,
DBStatus.VOID, -1, "", 0, false, false);
} else {
throw new IllegalArgumentException("Missing required parameters: noteId, newNote, or content");
}
}
@Nullable
protected abstract ScrollView getScrollView();
protected abstract void scrollToY(int scrollY);
@Override
public void onResume() {
super.onResume();
if (note == null) {
Log.e(TAG, "note is null, onResume");
return;
}
if (listener == null) {
Log.e(TAG, "listener is null, onResume");
return;
}
listener.onNoteUpdated(note);
}
@Override
public void onPause() {
super.onPause();
saveNote(null);
}
@Override
public void onDetach() {
super.onDetach();
listener = null;
}
@Override
public void onSaveInstanceState(@NonNull Bundle outState) {
super.onSaveInstanceState(outState);
saveNote(null);
outState.putSerializable(SAVEDKEY_NOTE, note);
outState.putSerializable(SAVEDKEY_ORIGINAL_NOTE, originalNote);
}
@Override
public void onCreateOptionsMenu(@NonNull Menu menu, @NonNull MenuInflater inflater) {
inflater.inflate(R.menu.menu_note_fragment, menu);
if (ShortcutManagerCompat.isRequestPinShortcutSupported(requireContext()) && Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
menu.add(Menu.NONE, MENU_ID_PIN, 110, R.string.pin_to_homescreen);
}
super.onCreateOptionsMenu(menu, inflater);
}
@Override
public void onPrepareOptionsMenu(@NonNull Menu menu) {
super.onPrepareOptionsMenu(menu);
if (note != null) {
prepareFavoriteOption(menu.findItem(R.id.menu_favorite));
final var preferredApiVersion = ApiVersionUtil.getPreferredApiVersion(localAccount.getApiVersion());
menu.findItem(R.id.menu_title).setVisible(preferredApiVersion != null && preferredApiVersion.compareTo(ApiVersion.API_VERSION_1_0) >= 0);
menu.findItem(R.id.menu_delete).setVisible(!isNew);
}
}
private void prepareFavoriteOption(MenuItem item) {
if (note == null) {
Log.e(TAG, "note is null, prepareFavoriteOption");
return;
}
item.setIcon(note.getFavorite() ? R.drawable.ic_star_white_24dp : R.drawable.ic_star_border_white_24dp);
item.setChecked(note.getFavorite());
final var utils = BrandingUtil.of(colorAccent, requireContext());
utils.platform.colorToolbarMenuIcon(requireContext(), item);
}
/**
* Main-Menu-Handler
*/
@Override
public boolean onOptionsItemSelected(MenuItem item) {
final int itemId = item.getItemId();
if (itemId == R.id.menu_cancel) {
executor.submit(() -> {
if (originalNote == null) {
repo.deleteNoteAndSync(localAccount, note.getId());
} else {
repo.updateNoteAndSync(localAccount, originalNote, null, null, null);
}
});
if (listener != null) {
listener.close();
}
return true;
} else if (itemId == R.id.menu_delete) {
repo.deleteNoteAndSync(localAccount, note.getId());
if (listener != null) {
listener.close();
}
return true;
} else if (itemId == R.id.menu_favorite) {
note.setFavorite(!note.getFavorite());
repo.toggleFavoriteAndSync(localAccount, note);
if (listener != null) {
listener.onNoteUpdated(note);
}
prepareFavoriteOption(item);
return true;
} else if (itemId == R.id.menu_category) {
showCategorySelector();
return true;
} else if (itemId == R.id.menu_title) {
showEditTitleDialog();
return true;
} else if (itemId == R.id.menu_move) {
executor.submit(() -> AccountPickerDialogFragment
.newInstance(new ArrayList<>(repo.getAccounts()), note.getAccountId())
.show(requireActivity().getSupportFragmentManager(), BaseNoteFragment.class.getSimpleName()));
return true;
} else if (itemId == R.id.menu_share) {
shareNote();
return false;
} else if (itemId == MENU_ID_PIN) {
pinNoteToHome();
return true;
}
return super.onOptionsItemSelected(item);
}
private void pinNoteToHome() {
if (Build.VERSION.SDK_INT < Build.VERSION_CODES.O) {
return;
}
if (!ShortcutManagerCompat.isRequestPinShortcutSupported(requireContext())) {
Log.i(TAG, "RequestPinShortcut is not supported");
return;
}
final var iconId = note.getFavorite() ? R.drawable.ic_star_yellow_24dp : R.drawable.ic_star_border_grey_ccc_24dp;
final var icon = IconCompat.createWithResource(requireContext().getApplicationContext(), iconId);
final var intent = new Intent(getActivity(), EditNoteActivity.class)
.putExtra(EditNoteActivity.PARAM_NOTE_ID, note.getRemoteId())
.setAction(ACTION_SHORTCUT);
final var noteId = String.valueOf(note.getRemoteId());
final var pinShortcutInfo = new ShortcutInfoCompat.Builder(requireContext(), noteId)
.setShortLabel(note.getTitle())
.setIcon(icon)
.setIntent(intent)
.build();
final var broadcastIntent = ShortcutManagerCompat.createShortcutResultIntent(requireContext(), pinShortcutInfo);
final var intentFlag = pendingIntentFlagCompat(0);
final var intentSender = PendingIntent
.getBroadcast(requireContext(), 0, broadcastIntent, intentFlag)
.getIntentSender();
ShortcutManagerCompat.requestPinShortcut(requireContext(), pinShortcutInfo, intentSender);
}
protected void shareNote() {
if (note == null) {
Log_OC.w(TAG, "Note is null in shareNote");
return;
}
ShareUtil.openShareDialog(requireContext(), note.getTitle(), note.getContent());
}
@CallSuper
protected void onNoteLoaded(Note note) {
if (note == null) {
Log_OC.w(TAG, "Note is null in onNoteLoaded");
return;
}
this.originalScrollY = note.getScrollY();
scrollToY(originalScrollY);
final var scrollView = getScrollView();
if (scrollView == null) {
Log_OC.w(TAG, "Scroll view is null, onNoteLoaded");
return;
}
scrollView.setOnScrollChangeListener((View v, int scrollX, int scrollY, int oldScrollX, int oldScrollY) -> {
if (scrollY > 0) {
note.setScrollY(scrollY);
}
onScroll(scrollY, oldScrollY);
});
}
/**
* Scroll callback, to be overridden by subclasses. Default implementation is empty
*/
protected void onScroll(int scrollY, int oldScrollY) {
}
protected boolean shouldShowToolbar() {
return true;
}
public void onCloseNote() {
if (note == null) {
Log.e(TAG, "note is null, onCloseNote");
return;
}
if (!titleModified && originalNote == null && getContent().isEmpty()) {
repo.deleteNoteAndSync(localAccount, note.getId());
}
}
/**
* Save the current state in the database and schedule synchronization if needed.
*
* @param callback Observer which is called after save/synchronization
*/
protected void saveNote(@Nullable ISyncCallback callback) {
Log.d(TAG, "saveData()");
if (note == null) {
Log.e(TAG, "note is null, saveNote");
return;
}
if (listener == null) {
Log.e(TAG, "listener is null, saveNote");
return;
}
final var newContent = getContent();
if (note.getContent().equals(newContent)) {
if (note.getScrollY() != originalScrollY) {
Log.v(TAG, "... only saving new scroll state, since content did not change");
repo.updateScrollY(note.getId(), note.getScrollY());
} else {
Log.v(TAG, "... not saving, since nothing has changed");
}
} else {
// FIXME requires database queries on main thread!
note = repo.updateNoteAndSync(localAccount, note, newContent, null, callback);
listener.onNoteUpdated(note);
requireActivity().invalidateOptionsMenu();
}
}
protected abstract String getContent();
/**
* Opens a dialog in order to chose a category
*/
private void showCategorySelector() {
if (note == null) {
Log.e(TAG, "note is null, showCategorySelector");
return;
}
final var fragmentId = "fragment_category";
final var manager = requireActivity().getSupportFragmentManager();
final var frag = manager.findFragmentByTag(fragmentId);
if (frag != null) {
manager.beginTransaction().remove(frag).commit();
}
final var categoryFragment = CategoryDialogFragment.newInstance(note.getAccountId(), note.getCategory());
categoryFragment.setTargetFragment(this, 0);
categoryFragment.show(manager, fragmentId);
}
/**
* Opens a dialog in order to chose a category
*/
public void showEditTitleDialog() {
if (note == null) {
Log.e(TAG, "note is null, showEditTitleDialog");
return;
}
saveNote(null);
final var fragmentId = "fragment_edit_title";
final var manager = requireActivity().getSupportFragmentManager();
final var frag = manager.findFragmentByTag(fragmentId);
if (frag != null) {
manager.beginTransaction().remove(frag).commit();
}
final var editTitleFragment = EditTitleDialogFragment.newInstance(note.getTitle());
editTitleFragment.setTargetFragment(this, 0);
editTitleFragment.show(manager, fragmentId);
}
@Override
public void onCategoryChosen(String category) {
if (note == null) {
Log.e(TAG, "note is null, onCategoryChosen");
return;
}
if (listener == null) {
Log.e(TAG, "listener is null, onCategoryChosen");
return;
}
repo.setCategory(localAccount, note.getId(), category);
note.setCategory(category);
listener.onNoteUpdated(note);
}
@Override
public void onTitleEdited(String newTitle) {
if (note == null) {
Log.e(TAG, "note is null, onTitleEdited");
return;
}
if (listener == null) {
Log.e(TAG, "listener is null, onTitleEdited");
return;
}
titleModified = true;
note.setTitle(newTitle);
executor.submit(() -> {
note = repo.updateNoteAndSync(localAccount, note, note.getContent(), newTitle, null);
requireActivity().runOnUiThread(() -> listener.onNoteUpdated(note));
});
}
public void moveNote(Account account) {
if (note == null) {
Log.e(TAG, "note is null, moveNote");
return;
}
if (listener == null) {
Log.e(TAG, "listener is null, moveNote");
return;
}
final var moveLiveData = repo.moveNoteToAnotherAccount(account, note);
moveLiveData.observe(this, (v) -> moveLiveData.removeObservers(this));
listener.close();
}
public interface NoteFragmentListener {
enum Mode {
EDIT, PREVIEW, DIRECT_EDIT
}
void close();
void onNoteUpdated(Note note);
void changeMode(@NonNull Mode mode, boolean reloadNote);
}
}