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
|
// Copyright (c) 2015 Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.
import Constants from 'utils/constants.jsx';
const ActionTypes = Constants.ActionTypes;
import AppDispatcher from '../dispatcher/app_dispatcher.jsx';
import EventEmitter from 'events';
const CHANGE_EVENT = 'change';
class PreferenceStoreClass extends EventEmitter {
constructor() {
super();
this.handleEventPayload = this.handleEventPayload.bind(this);
this.dispatchToken = AppDispatcher.register(this.handleEventPayload);
this.preferences = new Map();
this.setMaxListeners(20);
}
getKey(category, name) {
return `${category}--${name}`;
}
get(category, name, defaultValue = '') {
const key = this.getKey(category, name);
if (!this.preferences.has(key)) {
return defaultValue;
}
return this.preferences.get(key);
}
getBool(category, name, defaultValue = false) {
const key = this.getKey(category, name);
if (!this.preferences.has(key)) {
return defaultValue;
}
return this.preferences.get(key) !== 'false';
}
getInt(category, name, defaultValue = 0) {
const key = this.getKey(category, name);
if (!this.preferences.has(key)) {
return defaultValue;
}
return parseInt(this.preferences.get(key), 10);
}
getCategory(category) {
const prefix = category + '--';
const preferences = new Map();
for (const [key, value] of this.preferences) {
if (key.startsWith(prefix)) {
preferences.set(key.substring(prefix.length), value);
}
}
return preferences;
}
setPreference(category, name, value) {
this.preferences.set(this.getKey(category, name), value);
}
setPreferencesFromServer(newPreferences) {
for (const preference of newPreferences) {
this.setPreference(preference.category, preference.name, preference.value);
}
}
clear() {
this.preferences.clear();
}
emitChange(category) {
this.emit(CHANGE_EVENT, category);
}
addChangeListener(callback) {
this.on(CHANGE_EVENT, callback);
}
removeChangeListener(callback) {
this.removeListener(CHANGE_EVENT, callback);
}
handleEventPayload(payload) {
const action = payload.action;
switch (action.type) {
case ActionTypes.RECEIVED_PREFERENCE: {
const preference = action.preference;
this.setPreference(preference.category, preference.name, preference.value);
this.emitChange(preference.category);
break;
}
case ActionTypes.RECEIVED_PREFERENCES:
this.setPreferencesFromServer(action.preferences);
this.emitChange();
break;
}
}
}
const PreferenceStore = new PreferenceStoreClass();
PreferenceStore.setMaxListeners(25);
export default PreferenceStore;
global.window.PreferenceStore = PreferenceStore;
|