1
0
mirror of https://github.com/mail-in-a-box/mailinabox.git synced 2025-04-05 00:27:25 +00:00

Fix model update on create and activate

This commit is contained in:
downtownallday 2021-04-09 06:44:25 -04:00
parent 606e5e0569
commit 0ec968c3b6
2 changed files with 13 additions and 5 deletions

View File

@ -6,7 +6,7 @@
<b-form @submit.prevent="getChartData()" class="d-flex"> <b-form @submit.prevent="getChartData()" class="d-flex">
<b-input-group class="mb-3" style="width:30em"> <b-input-group class="mb-3" style="width:30em">
<b-form-input class="h-auto" :autofocus="data_user_id===null" list="panel-ua-users" @change="user_id_changed" placeholder="Enter a user id/email address"></b-form-input> <b-form-input ref="user_id_input" class="h-auto" :autofocus="data_user_id===null" list="panel-ua-users" @change="sync_user_id" placeholder="Enter a user id/email address"></b-form-input>
<b-input-group-append> <b-input-group-append>
<b-button variant="primary" @click="change_user">Change user</b-button> <b-button variant="primary" @click="change_user">Change user</b-button>
</b-input-group-append> </b-input-group-append>

View File

@ -20,7 +20,8 @@ Vue.component('panel-user-activity', function(resolve, reject) {
Number(this.$route.query.tab) : Number(this.$route.query.tab) :
0; 0;
return { return {
user_id: this.$route.query.user || '', /* v-model */ //user_id: this.$route.query.user || '', /* v-model */
user_id: '', /* v-model */
tab_index: start_tab, /* v-model */ tab_index: start_tab, /* v-model */
show_only_flagged: false, show_only_flagged: false,
show_only_flagged_filter: null, show_only_flagged_filter: null,
@ -39,7 +40,7 @@ Vue.component('panel-user-activity', function(resolve, reject) {
const new_user = this.$route.query.user; const new_user = this.$route.query.user;
if (new_user && new_user != this.user_id) { if (new_user && new_user != this.user_id) {
this.user_id = new_user; this.sync_user_id(new_user);
this.getChartData(isNaN(new_tab) ? 0 : new_tab); this.getChartData(isNaN(new_tab) ? 0 : new_tab);
return; return;
} }
@ -65,6 +66,10 @@ Vue.component('panel-user-activity', function(resolve, reject) {
this.getChartData(); this.getChartData();
} }
}, },
mounted: function() {
this.sync_user_id(this.$route.query.user || '');
},
methods: { methods: {
update_route: function() { update_route: function() {
@ -78,8 +83,11 @@ Vue.component('panel-user-activity', function(resolve, reject) {
} }
}, },
user_id_changed: function(evt) { sync_user_id: function(user_id) {
this.user_id = evt; // manually update "model" for <input> to avoid
// slowness with large tables
this.user_id = user_id;
this.$refs.user_id_input.value = user_id;
}, },
change_user: function() { change_user: function() {