forked from mattermost/mattermost-webapp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
216 lines (185 loc) · 7.53 KB
/
index.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
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
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
/* eslint max-nested-callbacks: ["error", 3] */
import Observable from 'zen-observable';
import localForage from 'localforage';
import {extendPrototype} from 'localforage-observable';
import {createTransform, persistStore} from 'redux-persist';
import {General, RequestStatus} from 'mattermost-redux/constants';
import configureServiceStore from 'mattermost-redux/store';
import reduxInitialState from 'mattermost-redux/store/initial_state';
import {storageRehydrate} from 'actions/storage';
import {clearUserCookie} from 'actions/views/cookie';
import appReducer from 'reducers';
import {transformSet} from 'store/utils';
import {detect} from 'utils/network.js';
import {ActionTypes} from 'utils/constants.jsx';
import {getBasePath} from 'selectors/general';
function getAppReducer() {
return require('../reducers'); // eslint-disable-line global-require
}
const usersSetTransform = [
'profilesInChannel',
'profilesNotInChannel',
'profilesInTeam',
'profilesNotInTeam',
];
const teamSetTransform = [
'membersInTeam',
];
const setTransforms = [
...usersSetTransform,
...teamSetTransform,
];
// This is a hack to get the whitelist to work with our storage keys
// We will implement it properly when we eventually upgrade redux-persist
const whitelist = {
keys: [], // add normal whitelist keys here
prefixes: ['storage'], // add any whitelist prefixes here
indexOf: function indexOf(key) {
if (this.keys.indexOf(key) !== -1) {
return 0;
}
for (let i = 0; i < this.prefixes.length; i++) {
if (key.startsWith(this.prefixes[i])) {
return 0;
}
}
return -1;
},
};
window.Observable = Observable;
export default function configureStore(initialState) {
const setTransformer = createTransform(
(inboundState, key) => {
if (key === 'entities') {
const state = {...inboundState};
for (const prop in state) {
if (state.hasOwnProperty(prop)) {
state[prop] = transformSet(state[prop], setTransforms);
}
}
return state;
}
return inboundState;
},
(outboundState, key) => {
if (key === 'entities') {
const state = {...outboundState};
for (const prop in state) {
if (state.hasOwnProperty(prop)) {
state[prop] = transformSet(state[prop], setTransforms, false);
}
}
return state;
}
return outboundState;
}
);
const offlineOptions = {
persist: (store, options) => {
const localforage = extendPrototype(localForage);
const storage = localforage;
const KEY_PREFIX = 'reduxPersist:';
localforage.ready().then(() => {
const persistor = persistStore(store, {storage, keyPrefix: KEY_PREFIX, ...options}, () => {
store.dispatch({
type: General.STORE_REHYDRATION_COMPLETE,
complete: true,
});
});
localforage.configObservables({
crossTabNotification: true,
});
const observable = localforage.newObservable({
crossTabNotification: true,
changeDetection: true,
});
const restoredState = {};
localforage.iterate((value, key) => {
if (key && key.indexOf(KEY_PREFIX + 'storage:') === 0) {
const keyspace = key.substr((KEY_PREFIX + 'storage:').length);
restoredState[keyspace] = value;
}
}).then(() => {
storageRehydrate(restoredState, persistor)(store.dispatch, store.getState);
});
observable.subscribe({
next: (args) => {
if (args.key && args.key.indexOf(KEY_PREFIX + 'storage:') === 0 && args.oldValue === null) {
const keyspace = args.key.substr((KEY_PREFIX + 'storage:').length);
var statePartial = {};
statePartial[keyspace] = args.newValue;
storageRehydrate(statePartial, persistor)(store.dispatch, store.getState);
}
},
});
let purging = false;
// check to see if the logout request was successful
store.subscribe(() => {
const state = store.getState();
const basePath = getBasePath(state);
if (state.requests.users.logout.status === RequestStatus.SUCCESS && !purging) {
purging = true;
persistor.purge().then(() => {
clearUserCookie();
// Preserve any query string parameters on logout, including parameters
// used by the application such as extra and redirect_to.
window.location.href = `${basePath}${window.location.search}`;
store.dispatch({
type: General.OFFLINE_STORE_RESET,
data: Object.assign({}, reduxInitialState, initialState),
});
setTimeout(() => {
purging = false;
}, 500);
});
}
});
}).catch((error) => {
store.dispatch({
type: ActionTypes.STORE_REHYDRATION_FAILED,
error,
});
});
},
persistOptions: {
autoRehydrate: {
log: false,
},
whitelist,
debounce: 30,
transforms: [
setTransformer,
],
_stateIterator: (collection, callback) => {
return Object.keys(collection).forEach((key) => {
if (key === 'storage') {
Object.keys(collection.storage.storage).forEach((storageKey) => {
callback(collection.storage.storage[storageKey], 'storage:' + storageKey);
});
} else {
callback(collection[key], key);
}
});
},
_stateGetter: (state, key) => {
if (key.indexOf('storage:') === 0) {
state.storage = state.storage || {storage: {}};
return state.storage.storage[key.substr(8)];
}
return state[key];
},
_stateSetter: (state, key, value) => {
if (key.indexOf('storage:') === 0) {
state.storage = state.storage || {storage: {}};
state.storage.storage[key.substr(8)] = value;
}
state[key] = value;
return state;
},
},
detectNetwork: detect,
};
return configureServiceStore({}, appReducer, offlineOptions, getAppReducer, {enableBuffer: false});
}