From 624c9f3418ce1c2597fbe2cb75caf01939e4d845 Mon Sep 17 00:00:00 2001 From: syuilo Date: Sat, 4 Jul 2020 22:33:42 +0900 Subject: [PATCH] =?UTF-8?q?feat(client):=20=E3=82=A6=E3=82=A3=E3=82=B8?= =?UTF-8?q?=E3=82=A7=E3=83=83=E3=83=88=E3=82=92=E5=B7=A6=E3=81=AB=E3=82=82?= =?UTF-8?q?=E7=BD=AE=E3=81=91=E3=82=8B=E3=82=88=E3=81=86=E3=81=AB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/client/app.vue | 83 +++++++++++++++++++++++++++++----------------- 1 file changed, 53 insertions(+), 30 deletions(-) diff --git a/src/client/app.vue b/src/client/app.vue index dc396d753..94d75ebe6 100644 --- a/src/client/app.vue +++ b/src/client/app.vue @@ -86,18 +86,18 @@ -
-
@@ -179,7 +177,12 @@ export default Vue.extend({ }, widgets(): any[] { - return this.$store.state.deviceUser.widgets; + const widgets = this.$store.state.deviceUser.widgets; + return { + left: widgets.filter(x => x.place === 'left'), + right: widgets.filter(x => x.place == null || x.place === 'right'), + mobile: widgets.filter(x => x.place === 'mobile'), + }; }, menu(): string[] { @@ -219,16 +222,16 @@ export default Vue.extend({ this.connection = this.$root.stream.useSharedConnection('main'); this.connection.on('notification', this.onNotification); - if (this.widgets.length === 0) { + if (this.$store.state.deviceUser.widgets.length === 0) { this.$store.commit('deviceUser/setWidgets', [{ name: 'calendar', - id: 'a', data: {} + id: 'a', place: 'right', data: {} }, { name: 'notifications', - id: 'b', data: {} + id: 'b', place: 'right', data: {} }, { name: 'trends', - id: 'c', data: {} + id: 'c', place: 'right', data: {} }]); } } @@ -503,7 +506,7 @@ export default Vue.extend({ this.saveHome(); }, - addWidget(ev) { + async addWidget(place) { const widgets = [ 'memo', 'notifications', @@ -516,18 +519,24 @@ export default Vue.extend({ 'photos', ]; - this.$root.menu({ - items: widgets.map(widget => ({ - text: this.$t('_widgets.' + widget), - action: () => { - this.$store.commit('deviceUser/addWidget', { - name: widget, - id: uuid(), - data: {} - }); - } - })), - source: ev.currentTarget || ev.target, + const { canceled, result: widget } = await this.$root.dialog({ + type: null, + title: this.$t('chooseWidget'), + select: { + items: widgets.map(widget => ({ + value: widget, + text: this.$t('_widgets.' + widget), + })) + }, + showCancelButton: true + }); + if (canceled) return; + + this.$store.commit('deviceUser/addWidget', { + name: widget, + id: uuid(), + place: place, + data: {} }); }, @@ -536,7 +545,7 @@ export default Vue.extend({ }, saveHome() { - this.$store.commit('deviceUser/setWidgets', this.widgets); + this.$store.commit('deviceUser/setWidgets', [...this.widgets.left, ...this.widgets.right, ...this.widgets.mobile]); } } }); @@ -574,6 +583,8 @@ export default Vue.extend({ $nav-icon-only-threshold: 1279px; $nav-hide-threshold: 650px; $side-hide-threshold: 1090px; + $left-widgets-hide-threshold: 1600px; + $right-widgets-hide-threshold: 1090px; min-height: 100vh; box-sizing: border-box; @@ -970,7 +981,19 @@ export default Vue.extend({ overflow: auto; box-shadow: 1px 0 0 0 var(--divider), -1px 0 0 0 var(--divider); - @media (max-width: $side-hide-threshold) { + &:first-of-type { + order: -1; + + @media (max-width: $left-widgets-hide-threshold) { + display: none; + } + } + + &:empty { + display: none; + } + + @media (max-width: $right-widgets-hide-threshold) { display: none; }