2017-12-21 18:32:51 +01:00
|
|
|
import * as SETTINGS from 'constants/settings';
|
2020-02-28 18:12:19 +01:00
|
|
|
import { SHARED_PREFERENCES, SETTINGS as LBRY_REDUX_SETTINGS } from 'lbry-redux';
|
2017-12-21 18:32:51 +01:00
|
|
|
import { createSelector } from 'reselect';
|
2017-05-17 23:52:45 +02:00
|
|
|
|
2017-12-21 18:32:51 +01:00
|
|
|
const selectState = state => state.settings || {};
|
2017-05-17 23:52:45 +02:00
|
|
|
|
2020-04-15 18:43:22 +02:00
|
|
|
export const selectDaemonSettings = createSelector(selectState, state => state.daemonSettings);
|
2017-05-17 23:52:45 +02:00
|
|
|
|
2020-04-15 18:43:22 +02:00
|
|
|
export const selectDaemonStatus = createSelector(selectState, state => state.daemonStatus);
|
2019-12-12 21:18:13 +01:00
|
|
|
|
2020-04-15 18:43:22 +02:00
|
|
|
export const selectFfmpegStatus = createSelector(selectDaemonStatus, status => status.ffmpeg_status);
|
2020-03-24 18:57:17 +01:00
|
|
|
|
2020-04-15 18:43:22 +02:00
|
|
|
export const selectFindingFFmpeg = createSelector(selectState, state => state.findingFFmpeg || false);
|
2020-03-24 18:57:17 +01:00
|
|
|
|
2020-04-15 18:43:22 +02:00
|
|
|
export const selectClientSettings = createSelector(selectState, state => state.clientSettings || {});
|
2017-05-17 23:52:45 +02:00
|
|
|
|
2020-04-15 18:43:22 +02:00
|
|
|
export const selectLoadedLanguages = createSelector(selectState, state => state.loadedLanguages || {});
|
2019-09-04 23:43:37 +02:00
|
|
|
|
2017-12-13 22:36:30 +01:00
|
|
|
export const makeSelectClientSetting = setting =>
|
2020-04-15 18:43:22 +02:00
|
|
|
createSelector(selectClientSettings, settings => (settings ? settings[setting] : undefined));
|
2017-08-21 05:06:26 +02:00
|
|
|
|
2017-12-13 22:36:30 +01:00
|
|
|
// refactor me
|
2020-02-28 18:12:19 +01:00
|
|
|
export const selectShowMatureContent = makeSelectClientSetting(LBRY_REDUX_SETTINGS.SHOW_MATURE);
|
2017-08-08 11:36:14 +02:00
|
|
|
|
2020-02-20 13:30:27 +01:00
|
|
|
// and me
|
2020-04-15 18:43:22 +02:00
|
|
|
export const selectShowRepostedContent = makeSelectClientSetting(LBRY_REDUX_SETTINGS.HIDE_REPOSTS);
|
2020-02-20 13:30:27 +01:00
|
|
|
|
2018-01-14 10:14:15 +01:00
|
|
|
export const selectTheme = makeSelectClientSetting(SETTINGS.THEME);
|
2019-05-07 23:38:29 +02:00
|
|
|
export const selectAutomaticDarkModeEnabled = makeSelectClientSetting(SETTINGS.AUTOMATIC_DARK_MODE_ENABLED);
|
2020-04-15 18:43:22 +02:00
|
|
|
export const selectIsNight = createSelector(selectState, state => state.isNight);
|
2018-01-14 10:14:15 +01:00
|
|
|
|
2020-04-15 18:43:22 +02:00
|
|
|
export const selectSavedWalletServers = createSelector(selectState, state => state.customWalletServers);
|
2019-12-11 21:09:27 +01:00
|
|
|
|
2020-04-15 18:43:22 +02:00
|
|
|
export const selectSharedPreferences = createSelector(selectState, state => state.sharedPreferences);
|
2019-12-11 21:09:27 +01:00
|
|
|
|
2019-12-12 21:18:13 +01:00
|
|
|
export const makeSelectSharedPreferencesForKey = key =>
|
2020-04-15 18:43:22 +02:00
|
|
|
createSelector(selectSharedPreferences, prefs => (prefs ? prefs[key] : undefined));
|
2019-12-11 21:09:27 +01:00
|
|
|
|
2020-02-20 13:30:27 +01:00
|
|
|
export const selectHasWalletServerPrefs = createSelector(
|
|
|
|
makeSelectSharedPreferencesForKey(SHARED_PREFERENCES.WALLET_SERVERS),
|
|
|
|
servers => {
|
2020-03-24 18:57:17 +01:00
|
|
|
return !!(servers && servers.length);
|
2020-02-20 13:30:27 +01:00
|
|
|
}
|
|
|
|
);
|
2019-12-12 21:18:13 +01:00
|
|
|
|
2017-09-07 02:52:34 +02:00
|
|
|
export const selectThemePath = createSelector(
|
2018-01-14 10:14:15 +01:00
|
|
|
selectTheme,
|
|
|
|
selectAutomaticDarkModeEnabled,
|
|
|
|
selectIsNight,
|
|
|
|
(theme, automaticDarkModeEnabled, isNight) => {
|
|
|
|
const dynamicTheme = automaticDarkModeEnabled && isNight ? 'dark' : theme;
|
2018-10-18 18:45:24 +02:00
|
|
|
return dynamicTheme || 'light';
|
2018-01-14 10:14:15 +01:00
|
|
|
}
|
2017-09-07 02:52:34 +02:00
|
|
|
);
|
2018-07-31 02:13:57 +02:00
|
|
|
|
2019-05-07 23:38:29 +02:00
|
|
|
export const selectosNotificationsEnabled = makeSelectClientSetting(SETTINGS.OS_NOTIFICATIONS_ENABLED);
|