aboutsummaryrefslogtreecommitdiffstats
path: root/src/features
diff options
context:
space:
mode:
authorLibravatar Stefan Malzner <stefan@adlk.io>2018-12-01 14:34:39 +0100
committerLibravatar Stefan Malzner <stefan@adlk.io>2018-12-01 14:34:39 +0100
commit035dc1bbb1951bfe99740009f8b999c65861d133 (patch)
tree4e987938d7a25c08ea64f2692d5ae9f0b8bd80fe /src/features
parentShow service dark mode option only for dark mode services (diff)
downloadferdium-app-035dc1bbb1951bfe99740009f8b999c65861d133.tar.gz
ferdium-app-035dc1bbb1951bfe99740009f8b999c65861d133.tar.zst
ferdium-app-035dc1bbb1951bfe99740009f8b999c65861d133.zip
Move default feature config to config.js
Diffstat (limited to 'src/features')
-rw-r--r--src/features/delayApp/index.js18
-rw-r--r--src/features/serviceProxy/index.js13
-rw-r--r--src/features/spellchecker/index.js8
3 files changed, 18 insertions, 21 deletions
diff --git a/src/features/delayApp/index.js b/src/features/delayApp/index.js
index 334433df8..3fc0f2570 100644
--- a/src/features/delayApp/index.js
+++ b/src/features/delayApp/index.js
@@ -2,19 +2,17 @@ import { autorun, observable, reaction } from 'mobx';
2import moment from 'moment'; 2import moment from 'moment';
3import DelayAppComponent from './Component'; 3import DelayAppComponent from './Component';
4 4
5const debug = require('debug')('Franz:feature:delayApp'); 5import { DEFAULT_FEATURES_CONFIG } from '../../config';
6 6
7const DEFAULT_DELAY_DURATION = 10000; // 10 seconds 7const debug = require('debug')('Franz:feature:delayApp');
8const DEFAULT_DELAY_OFFSET = 3600000; // 1 hour
9const DEFAULT_VISIBILITY = false;
10 8
11export const config = { 9export const config = {
12 delayOffset: DEFAULT_DELAY_OFFSET, 10 delayOffset: DEFAULT_FEATURES_CONFIG.needToWaitToProceedConfig.delayOffset,
13 delayDuration: DEFAULT_DELAY_DURATION, 11 delayDuration: DEFAULT_FEATURES_CONFIG.needToWaitToProceedConfig.wait,
14}; 12};
15 13
16export const state = observable({ 14export const state = observable({
17 isDelayAppScreenVisible: DEFAULT_VISIBILITY, 15 isDelayAppScreenVisible: DEFAULT_FEATURES_CONFIG.needToWaitToProceed,
18}); 16});
19 17
20function setVisibility(value) { 18function setVisibility(value) {
@@ -38,8 +36,8 @@ export default function init(stores) {
38 let shownAfterLaunch = false; 36 let shownAfterLaunch = false;
39 let timeLastDelay = moment(); 37 let timeLastDelay = moment();
40 38
41 config.delayOffset = globalConfig.delayOffset !== undefined ? globalConfig.delayOffset : DEFAULT_DELAY_OFFSET; 39 config.delayOffset = globalConfig.delayOffset !== undefined ? globalConfig.delayOffset : DEFAULT_FEATURES_CONFIG.needToWaitToProceedConfig.delayOffset;
42 config.delayDuration = globalConfig.wait !== undefined ? globalConfig.wait : DEFAULT_DELAY_DURATION; 40 config.delayDuration = globalConfig.wait !== undefined ? globalConfig.wait : DEFAULT_FEATURES_CONFIG.needToWaitToProceedConfig.wait;
43 41
44 autorun(() => { 42 autorun(() => {
45 const diff = moment().diff(timeLastDelay); 43 const diff = moment().diff(timeLastDelay);
@@ -55,7 +53,7 @@ export default function init(stores) {
55 debug('Resetting app delay'); 53 debug('Resetting app delay');
56 54
57 setVisibility(false); 55 setVisibility(false);
58 }, DEFAULT_DELAY_DURATION + 1000); // timer needs to be able to hit 0 56 }, DEFAULT_FEATURES_CONFIG.needToWaitToProceedConfig.wait + 1000); // timer needs to be able to hit 0
59 } 57 }
60 }); 58 });
61 } 59 }
diff --git a/src/features/serviceProxy/index.js b/src/features/serviceProxy/index.js
index edb1c9367..50dea8c9b 100644
--- a/src/features/serviceProxy/index.js
+++ b/src/features/serviceProxy/index.js
@@ -1,16 +1,15 @@
1import { autorun, reaction, observable } from 'mobx'; 1import { autorun, reaction, observable } from 'mobx';
2import { remote } from 'electron'; 2import { remote } from 'electron';
3 3
4import { DEFAULT_FEATURES_CONFIG } from '../../config';
5
4const { session } = remote; 6const { session } = remote;
5 7
6const debug = require('debug')('Franz:feature:serviceProxy'); 8const debug = require('debug')('Franz:feature:serviceProxy');
7 9
8const DEFAULT_ENABLED = false;
9const DEFAULT_IS_PREMIUM = true;
10
11export const config = observable({ 10export const config = observable({
12 isEnabled: DEFAULT_ENABLED, 11 isEnabled: DEFAULT_FEATURES_CONFIG.isServiceProxyEnabled,
13 isPremium: DEFAULT_IS_PREMIUM, 12 isPremium: DEFAULT_FEATURES_CONFIG.isServiceProxyPremiumFeature,
14}); 13});
15 14
16export default function init(stores) { 15export default function init(stores) {
@@ -25,8 +24,8 @@ export default function init(stores) {
25 24
26 const { isServiceProxyEnabled, isServiceProxyPremiumFeature } = stores.features.features; 25 const { isServiceProxyEnabled, isServiceProxyPremiumFeature } = stores.features.features;
27 26
28 config.isEnabled = isServiceProxyEnabled !== undefined ? isServiceProxyEnabled : DEFAULT_ENABLED; 27 config.isEnabled = isServiceProxyEnabled !== undefined ? isServiceProxyEnabled : DEFAULT_FEATURES_CONFIG.isServiceProxyEnabled;
29 config.isPremium = isServiceProxyPremiumFeature !== undefined ? isServiceProxyPremiumFeature : DEFAULT_IS_PREMIUM; 28 config.isPremium = isServiceProxyPremiumFeature !== undefined ? isServiceProxyPremiumFeature : DEFAULT_FEATURES_CONFIG.isServiceProxyPremiumFeature;
30 29
31 autorun(() => { 30 autorun(() => {
32 const services = stores.services.all; 31 const services = stores.services.all;
diff --git a/src/features/spellchecker/index.js b/src/features/spellchecker/index.js
index 9bffc1949..454096e4e 100644
--- a/src/features/spellchecker/index.js
+++ b/src/features/spellchecker/index.js
@@ -1,11 +1,11 @@
1import { autorun, reaction } from 'mobx'; 1import { autorun, reaction } from 'mobx';
2 2
3const debug = require('debug')('Franz:feature:spellchecker'); 3import { DEFAULT_FEATURES_CONFIG } from '../../config';
4 4
5const DEFAULT_IS_PREMIUM_FEATURE = true; 5const debug = require('debug')('Franz:feature:spellchecker');
6 6
7export const config = { 7export const config = {
8 isPremiumFeature: DEFAULT_IS_PREMIUM_FEATURE, 8 isPremiumFeature: DEFAULT_FEATURES_CONFIG.isSpellcheckerPremiumFeature,
9}; 9};
10 10
11export default function init(stores) { 11export default function init(stores) {
@@ -19,7 +19,7 @@ export default function init(stores) {
19 19
20 const { isSpellcheckerPremiumFeature } = stores.features.features; 20 const { isSpellcheckerPremiumFeature } = stores.features.features;
21 21
22 config.isPremiumFeature = isSpellcheckerPremiumFeature !== undefined ? isSpellcheckerPremiumFeature : DEFAULT_IS_PREMIUM_FEATURE; 22 config.isPremiumFeature = isSpellcheckerPremiumFeature !== undefined ? isSpellcheckerPremiumFeature : DEFAULT_FEATURES_CONFIG.isSpellcheckerPremiumFeature;
23 23
24 autorun(() => { 24 autorun(() => {
25 if (!stores.user.data.isPremium && config.isPremiumFeature) { 25 if (!stores.user.data.isPremium && config.isPremiumFeature) {