-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTODO
100 lines (83 loc) · 2.09 KB
/
TODO
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
[ ] Rename to @rematch-point/*
[ ] Add a clean command that runs before build for each submodule
[ ] Change to tslint
- [ ] Optimistic pre-effect for PUT - optional
- [ ] Optimistic pre-effect for POST - optional
- [ ] Optimistic pre-effect for DELETE - optional
- [ ] Optimistic pre-effect for GET - optional
- [ ] Remove optimistic function usage from HoC->connectHelpers
- [ ] Rollback if optimistic
- [ ] Support relatedQueries for GET requests
- [ ] Why is the build for the example client so big?
- [ ] Nested objects
/chats
{
uuid: 'asdfafasf',
name: 'asdf',
createdAt: 'asdf',
messages: [
{
uuid: '1234',
}
],
}
nestedNormalizer(data) => {
return [{
collection: 'messages',
data: data.messages,
key: 'uuid',
}, {
collection: 'participants',
data: data.participants,
key: 'uuid',
}];
}
Example:
var a = {
chats: {
items: {
'1': {
uuid: '1',
name: 'My Chat Room',
createdAt: Date,
messages: {
$type: 'messages',
query: 'messages:interalQuery/chats:url.com/chats/1'
},
participants: {
}
},
},
queries: {
'chats:url.com/chats/1': {
normalized: ['1'],
queryStatus: LOADED,
},
}
},
messages: {
items: {
'a': {
uuid: 'a',
text: 'hi',
},
'b': {
uuid: 'b',
text: 'get out'
}
},
queries: {
'messages:interalQuery/chats:url.com/chats/1': {
normalized: ['a', 'b'],
queryStatus: LOADED,
},
'messages:url.com/chats/1/messages?page=2': {
normalized: ['b'],
queryStatus: LOADED,
relatedQueries: [
'chats:url.com/chats/1',
]
},
},
}
};