-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathTODO.txt
32 lines (21 loc) · 991 Bytes
/
TODO.txt
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
BUGS:
- deleting an author then clicking their name in the author list before it reloads lets you load that author in the edit form
(race condition)
maybe dispatch an action like 'AUTHOR_DELETED' from the 'DELETE_AUTHOR' mutation and then the form can use that to update the list
- refresh author list after deleting, BEFORE navigating back to it so the user doesn't see the record disappear
- same for course page
- header links stay in mouse-down state after clicked
FEATURES:
- action creator functions (started)
- discern need for action creators
- if it's just a simple state change, we probably don't need them
(saving, deleting, dirty, etc.)
- courseActions.test.js implementation
X initial action tests
- mutation tests
- action tests
- api tests
- maintain data in local storage
- vue-focus https://github.com/simplesmiler/vue-focus
- check that fields actually changed before allowing saves
- track original values