aboutsummaryrefslogtreecommitdiffstats
path: root/src/features/todos/store.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/features/todos/store.js')
-rw-r--r--src/features/todos/store.js15
1 files changed, 7 insertions, 8 deletions
diff --git a/src/features/todos/store.js b/src/features/todos/store.js
index 429507927..f283c1e59 100644
--- a/src/features/todos/store.js
+++ b/src/features/todos/store.js
@@ -20,7 +20,6 @@ import { FeatureStore } from '../utils/FeatureStore';
20import { createReactions } from '../../stores/lib/Reaction'; 20import { createReactions } from '../../stores/lib/Reaction';
21import { createActionBindings } from '../utils/ActionBinding'; 21import { createActionBindings } from '../utils/ActionBinding';
22import { IPC, TODOS_ROUTES } from './constants'; 22import { IPC, TODOS_ROUTES } from './constants';
23import { state as delayAppState } from '../delayApp';
24import UserAgent from '../../models/UserAgent'; 23import UserAgent from '../../models/UserAgent';
25 24
26const debug = require('debug')('Ferdi:feature:todos:store'); 25const debug = require('debug')('Ferdi:feature:todos:store');
@@ -46,7 +45,7 @@ export default class TodoStore extends FeatureStore {
46 45
47 @computed get isTodosPanelForceHidden() { 46 @computed get isTodosPanelForceHidden() {
48 const { isAnnouncementShown } = this.stores.announcements; 47 const { isAnnouncementShown } = this.stores.announcements;
49 return delayAppState.isDelayAppScreenVisible || !this.isFeatureEnabledByUser || isAnnouncementShown; 48 return !this.isFeatureEnabledByUser || isAnnouncementShown;
50 } 49 }
51 50
52 @computed get isTodosPanelVisible() { 51 @computed get isTodosPanelVisible() {
@@ -123,12 +122,6 @@ export default class TodoStore extends FeatureStore {
123 this._registerReactions(this._allReactions); 122 this._registerReactions(this._allReactions);
124 123
125 this.isFeatureActive = true; 124 this.isFeatureActive = true;
126
127 if (this.settings.isFeatureEnabledByUser === undefined) {
128 this._updateSettings({
129 isFeatureEnabledByUser: DEFAULT_IS_FEATURE_ENABLED_BY_USER,
130 });
131 }
132 } 125 }
133 126
134 @action stop() { 127 @action stop() {
@@ -266,6 +259,12 @@ export default class TodoStore extends FeatureStore {
266 _firstLaunchReaction = () => { 259 _firstLaunchReaction = () => {
267 const { stats } = this.stores.settings.all; 260 const { stats } = this.stores.settings.all;
268 261
262 if (this.settings.isFeatureEnabledByUser === undefined) {
263 this._updateSettings({
264 isFeatureEnabledByUser: DEFAULT_IS_FEATURE_ENABLED_BY_USER,
265 });
266 }
267
269 // Hide todos layer on first app start but show on second 268 // Hide todos layer on first app start but show on second
270 if (stats.appStarts <= 1) { 269 if (stats.appStarts <= 1) {
271 this._updateSettings({ 270 this._updateSettings({