-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathselectors.js
47 lines (40 loc) · 1.39 KB
/
selectors.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
import { themeName } from '@react-theming/theme-name';
export const createSelector = (...args) => {
const resultFn = args.pop();
return store => {
const selected = args.map(selector => selector(store));
return resultFn(...selected, store);
};
};
export const getCurrentInd = store => store.currentTheme;
export const getThemesList = store => store.themesList;
export const getSnippet = store => store.fieldSnippetFn;
export const getColorSnippet = store => store.colorSnippet;
export const getTheme = createSelector(
getCurrentInd,
getThemesList,
(ind, themes) => (themes ? themes[ind] : undefined),
);
export const getThemeInfoList = createSelector(getThemesList, (list = []) =>
list.map((theme, ind) => ({
name: themeName(theme, ind),
theme,
})),
);
export const getThemeInfo = createSelector(
getCurrentInd,
getThemeInfoList,
(ind, themesInfo) => (themesInfo ? themesInfo[ind] : undefined),
);
export const getSelectedValue = createSelector(getTheme, (theme, store) => {
const { selectedValue } = store;
if (!selectedValue) return undefined;
const { name, namespace, type } = selectedValue;
const nestedObj = namespace.reduce((subObj, subKey) => subObj[subKey], theme);
const value = nestedObj[name];
return { name, namespace, value, type };
});
export const getSelectedWord = createSelector(store => {
const { selectedWord } = store;
return selectedWord;
});