-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathreducer.js
93 lines (81 loc) · 2.53 KB
/
reducer.js
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
import _ from 'lodash'
import { persistentReducer } from 'redux-pouchdb';
import { createReducer } from 'redux-act';
import * as actions from './actions'
import { getDoc } from './selectors'
import { ensureUnusedId } from '../utils'
let defaultState = {
docs: {
// [docId]: {url: '....'},
// [docId]: {text: '....'},
},
links: {
// [linkId]: {source: [sourceDocId], target: [targetDocId]}
},
}
function addUrl(state, {docId, url}) {
let newDoc = {url: url}
return {...state, docs: {...state.docs, [docId]: newDoc}}
}
function addNote(state, {docId, text}) {
let newDoc = {text}
return {...state, docs: {...state.docs, [docId]: newDoc}}
}
function updateNoteText(state, {docId, text}) {
let doc = getDoc(state, docId)
let newDoc = {...doc, text}
return {...state, docs: {...state.docs, [docId]: newDoc}}
}
function deleteDoc(state, {docId}) {
// Remove doc
let docs = _.omit(state.docs, docId)
// Also remove links to and from doc
let links = _.omitBy(state.links, ({source, target}) => (source===docId || target===docId))
return {...state, docs, links}
}
function addLink(state, {linkId, source, target, type}) {
// Refuse creating self-links
if (source === target)
return state
let newLink = {source, target, type}
return {...state, links: {...state.links, [linkId]: newLink}}
}
// Delete a link. Pass either a linkId, or two docIds.
function deleteLink(state, {linkId, doc1, doc2}) {
let links
if (linkId===undefined) {
links = _.omitBy(state.links, ({source, target}) => (
(source===doc1 && target===doc2) || (source===doc2 && target===doc1)
))
}
else {
links = _.omit(state.links, linkId)
}
return {...state, links}
}
function importFromDump(state, {storageDump, deleteCurrent=false}) {
if (deleteCurrent===true) {
return storageDump
}
else {
let stateCopy = _.cloneDeep(state) // Because _.merge mutates it.
return _.merge(stateCopy, storageDump)
}
}
let reducer = createReducer(
{
[actions.addUrl]: addUrl,
[actions.addNote]: addNote,
[actions.updateNoteText]: updateNoteText,
[actions.deleteDoc]: deleteDoc,
[actions.addLink]: addLink,
[actions.deleteLink]: deleteLink,
[actions.importFromDump]: importFromDump,
},
defaultState
)
// wrap it to set a function name for redux-pouchdb
function storageReducer(...args) {
return reducer(...args)
}
export default persistentReducer(storageReducer)