This commit is contained in:
syuilo 2020-07-04 22:53:56 +09:00
parent ecb0861be4
commit 37f862947b

View file

@ -177,12 +177,26 @@ export default Vue.extend({
}, },
widgets(): any[] { widgets(): any[] {
const widgets = this.$store.state.deviceUser.widgets; if (this.$store.getters.isSignedIn) {
return { const widgets = this.$store.state.deviceUser.widgets;
left: widgets.filter(x => x.place === 'left'), return {
right: widgets.filter(x => x.place == null || x.place === 'right'), left: widgets.filter(x => x.place === 'left'),
mobile: widgets.filter(x => x.place === 'mobile'), right: widgets.filter(x => x.place == null || x.place === 'right'),
}; mobile: widgets.filter(x => x.place === 'mobile'),
};
} else {
return {
left: [],
right: [{
name: 'calendar',
id: 'a', place: 'right', data: {}
}, {
name: 'trends',
id: 'c', place: 'right', data: {}
}],
mobile: [],
};
}
}, },
menu(): string[] { menu(): string[] {