lbry-desktop/ui/redux/actions/settings.js

228 lines
6.4 KiB
JavaScript
Raw Normal View History

import { Lbry, ACTIONS, doToast, SHARED_PREFS, doWalletReconnect } from 'lbry-redux';
2019-10-24 23:41:18 +02:00
import * as SETTINGS from 'constants/settings';
2019-11-08 21:51:42 +01:00
import * as LOCAL_ACTIONS from 'constants/action_types';
import analytics from 'analytics';
2019-11-05 19:54:58 +01:00
import SUPPORTED_LANGUAGES from 'constants/supported_languages';
2019-11-18 19:30:15 +01:00
import { launcher } from 'util/autoLaunch';
import { makeSelectClientSetting } from 'redux/selectors/settings';
2018-01-14 10:14:15 +01:00
2019-11-18 19:30:15 +01:00
export const IS_MAC = process.platform === 'darwin';
2019-08-18 18:54:55 +02:00
const UPDATE_IS_NIGHT_INTERVAL = 5 * 60 * 1000;
2017-12-26 21:13:05 +01:00
export function doFetchDaemonSettings() {
return dispatch => {
Lbry.settings_get().then(settings => {
analytics.toggle(settings.share_usage_data);
dispatch({
type: ACTIONS.DAEMON_SETTINGS_RECEIVED,
data: {
2017-06-06 23:19:12 +02:00
settings,
},
});
});
};
}
export function doClearDaemonSetting(key) {
return dispatch => {
const clearKey = {
key,
};
Lbry.settings_clear(clearKey).then(defaultSettings => {
if (Object.values(SHARED_PREFS).includes(key)) {
dispatch({
type: ACTIONS.SHARED_PREFERENCE_SET,
data: { key: key, value: undefined },
});
}
if (key === SHARED_PREFS.WALLET_SERVERS) {
dispatch(doWalletReconnect());
}
});
Lbry.settings_get().then(settings => {
analytics.toggle(settings.share_usage_data);
dispatch({
type: ACTIONS.DAEMON_SETTINGS_RECEIVED,
data: {
settings,
},
});
});
};
}
export function doSetDaemonSetting(key, value) {
return dispatch => {
const newSettings = {
key,
value: !value && value !== false ? null : value,
};
Lbry.settings_set(newSettings).then(newSetting => {
if (Object.values(SHARED_PREFS).includes(key)) {
dispatch({
type: ACTIONS.SHARED_PREFERENCE_SET,
data: {key: key, value: newSetting[key]},
});
}
// hardcoding this in lieu of a better solution
if (key === SHARED_PREFS.WALLET_SERVERS) {
dispatch(doWalletReconnect());
}
});
2017-12-26 21:13:05 +01:00
Lbry.settings_get().then(settings => {
2019-04-01 16:30:19 +02:00
analytics.toggle(settings.share_usage_data);
dispatch({
type: ACTIONS.DAEMON_SETTINGS_RECEIVED,
data: {
2017-12-26 21:13:05 +01:00
settings,
2017-06-06 23:19:12 +02:00
},
});
});
};
2017-06-06 06:21:55 +02:00
}
2017-06-28 09:12:01 +02:00
export function doCacheCustomWalletServers(servers) {
return {
type: ACTIONS.WALLET_SERVERS_CACHED,
data: servers,
};
}
export function doGetDaemonStatus() {
return dispatch => {
return Lbry.status().then(settings => settings);
};
};
2017-06-28 09:12:01 +02:00
export function doSetClientSetting(key, value) {
return {
type: ACTIONS.CLIENT_SETTING_CHANGED,
2017-06-28 09:12:01 +02:00
data: {
key,
value,
},
};
}
2017-08-08 11:36:14 +02:00
2018-01-14 10:14:15 +01:00
export function doUpdateIsNight() {
return {
type: ACTIONS.UPDATE_IS_NIGHT,
};
}
export function doUpdateIsNightAsync() {
return dispatch => {
dispatch(doUpdateIsNight());
2019-03-05 05:46:57 +01:00
setInterval(() => dispatch(doUpdateIsNight()), UPDATE_IS_NIGHT_INTERVAL);
};
}
2019-08-18 18:54:55 +02:00
export function doSetDarkTime(value, options) {
const { fromTo, time } = options;
return (dispatch, getState) => {
const state = getState();
2019-09-17 20:49:03 +02:00
const darkModeTimes = state.settings.clientSettings[SETTINGS.DARK_MODE_TIMES];
2019-08-18 18:54:55 +02:00
const { hour, min } = darkModeTimes[fromTo];
const newHour = time === 'hour' ? value : hour;
const newMin = time === 'min' ? value : min;
const modifiedTimes = {
[fromTo]: {
hour: newHour,
min: newMin,
formattedTime: newHour + ':' + newMin,
},
};
const mergedTimes = { ...darkModeTimes, ...modifiedTimes };
2019-09-24 01:47:58 +02:00
dispatch(doSetClientSetting(SETTINGS.DARK_MODE_TIMES, mergedTimes));
2019-08-18 18:54:55 +02:00
dispatch(doUpdateIsNight());
};
}
2019-11-05 19:54:58 +01:00
export function doSetLanguage(language) {
2019-11-12 23:25:44 +01:00
return (dispatch, getState) => {
const { settings } = getState();
2019-12-06 16:42:05 +01:00
if (settings.language !== language || (settings.loadedLanguages && !settings.loadedLanguages.includes(language))) {
2019-11-12 23:25:44 +01:00
// this should match the behavior/logic in index-web.html
fetch('https://lbry.com/i18n/get/lbry-desktop/app-strings/' + language + '.json')
.then(r => r.json())
.then(j => {
window.i18n_messages[language] = j;
dispatch({
type: LOCAL_ACTIONS.DOWNLOAD_LANGUAGE_SUCCESS,
data: {
language,
},
});
})
.then(() => {
// set on localStorage so it can be read outside of redux
window.localStorage.setItem(SETTINGS.LANGUAGE, language);
dispatch(doSetClientSetting(SETTINGS.LANGUAGE, language));
})
.catch(e => {
window.localStorage.setItem(SETTINGS.LANGUAGE, 'en');
dispatch(doSetClientSetting(SETTINGS.LANGUAGE, 'en'));
const languageName = SUPPORTED_LANGUAGES[language] ? SUPPORTED_LANGUAGES[language] : language;
dispatch(
doToast({
message: __('Failed to load %language% translations.', { language: languageName }),
2019-11-14 00:54:41 +01:00
isError: true,
2019-11-12 23:25:44 +01:00
})
);
2019-11-08 21:51:42 +01:00
});
2019-11-12 23:25:44 +01:00
}
2019-11-05 19:54:58 +01:00
};
}
2019-11-18 19:30:15 +01:00
export function doSetAutoLaunch(value) {
return (dispatch, getState) => {
const state = getState();
const autoLaunch = makeSelectClientSetting(SETTINGS.AUTO_LAUNCH)(state);
if (IS_MAC || process.env.NODE_ENV !== 'production') {
2019-11-18 19:30:15 +01:00
return;
}
if (value === undefined) {
launcher.isEnabled().then(isEnabled => {
if (isEnabled) {
if (!autoLaunch) {
launcher.disable().then(() => {
dispatch(doSetClientSetting(SETTINGS.AUTO_LAUNCH, false));
});
}
} else {
if (autoLaunch || autoLaunch === null || autoLaunch === undefined) {
launcher.enable().then(() => {
dispatch(doSetClientSetting(SETTINGS.AUTO_LAUNCH, true));
});
}
}
});
} else if (value === true) {
launcher.isEnabled().then(function(isEnabled) {
if (!isEnabled) {
launcher.enable().then(() => {
dispatch(doSetClientSetting(SETTINGS.AUTO_LAUNCH, true));
});
} else {
dispatch(doSetClientSetting(SETTINGS.AUTO_LAUNCH, true));
}
});
} else {
// value = false
launcher.isEnabled().then(function(isEnabled) {
if (isEnabled) {
launcher.disable().then(() => {
dispatch(doSetClientSetting(SETTINGS.AUTO_LAUNCH, false));
});
} else {
dispatch(doSetClientSetting(SETTINGS.AUTO_LAUNCH, false));
}
});
}
};
}