forked from mattermost/mattermost-webapp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
189 lines (161 loc) · 6.98 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
// 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 {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, rehydrateDrafts} from 'actions/storage';
import {clearUserCookie} from 'actions/views/cookie';
import appReducer from 'reducers';
import {ActionTypes} from 'utils/constants';
import {getBasePath} from 'selectors/general';
function getAppReducer() {
return require('../reducers'); // eslint-disable-line global-require
}
// 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 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);
store.dispatch(rehydrateDrafts());
});
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,
_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) {
return state.storage?.storage?.[key.substr(8)];
}
return state[key];
},
_stateSetter: (state, key, value) => {
// eslint-disable-next-line no-process-env
if (process.env.NODE_ENV === 'production') {
if (key.indexOf('storage:') === 0) {
state.storage = state.storage || {storage: {}};
state.storage.storage[key.substr(8)] = value;
} else {
state[key] = value;
}
return state;
}
// In non-production environments, the store is immutable.
if (key.indexOf('storage:') === 0) {
return {
...state,
storage: {
...state.storage,
storage: {
...state.storage?.storage,
[key.substr(8)]: value,
},
},
};
}
return {
...state,
key: value,
};
},
},
};
return configureServiceStore(initialState, appReducer, offlineOptions, getAppReducer);
}