|
|
|
<template>
|
|
|
|
<div>
|
|
|
|
<v-progress-linear v-if="progressbar" indeterminate color="green" />
|
|
|
|
<h3 class="text-center mb-5 grey--text text--darken-2">Change environment</h3>
|
|
|
|
<div>
|
|
|
|
<div class="">
|
|
|
|
<v-select v-model="selectedEnv" hide-details dense :items="envList" label="Solo field" solo />
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="mt-4 d-flex d-100">
|
|
|
|
<v-spacer />
|
|
|
|
<v-btn small :disabled="progressbar" @click="dialogShow = false">
|
|
|
|
<!-- Close -->
|
|
|
|
{{ $t('general.close') }}
|
|
|
|
</v-btn>
|
|
|
|
<v-btn color="primary" small :disabled="progressbar" @click="changeEnv"> Change </v-btn>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import { mapGetters } from 'vuex';
|
|
|
|
import axios from 'axios';
|
|
|
|
|
|
|
|
export default {
|
|
|
|
name: 'Env',
|
|
|
|
data: () => ({
|
|
|
|
selectedEnv: '_noco',
|
|
|
|
progressbar: false,
|
|
|
|
}),
|
|
|
|
computed: {
|
|
|
|
...mapGetters({
|
|
|
|
envList: 'project/GtrEnvList',
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
mounted() {
|
|
|
|
const unserializedList = this.$store.state.project.unserializedList;
|
|
|
|
this.selectedEnv =
|
|
|
|
(unserializedList[0] && unserializedList[0].projectJson && unserializedList[0].projectJson.workingEnv) || '_noco';
|
|
|
|
this.$store.watch(
|
|
|
|
state => {
|
|
|
|
const unserializedList = state.project.unserializedList;
|
|
|
|
return (
|
|
|
|
(unserializedList[0] && unserializedList[0].projectJson && unserializedList[0].projectJson.workingEnv) ||
|
|
|
|
'_noco'
|
|
|
|
);
|
|
|
|
},
|
|
|
|
value => {
|
|
|
|
this.selectedEnv = value;
|
|
|
|
}
|
|
|
|
);
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
async changeEnv() {
|
|
|
|
this.progressbar = true;
|
|
|
|
await this.$store.dispatch('sqlMgr/ActSqlOp', [null, 'projectChangeEnv', { env: this.selectedEnv }]);
|
|
|
|
await new Promise(resolve => {
|
|
|
|
const interv = setInterval(() => {
|
|
|
|
axios
|
|
|
|
.create({
|
|
|
|
baseURL: `${this.$axios.defaults.baseURL}/dashboard`,
|
|
|
|
})
|
|
|
|
.get('')
|
|
|
|
.then(() => {
|
|
|
|
this.projectReloading = false;
|
|
|
|
clearInterval(interv);
|
|
|
|
resolve();
|
|
|
|
})
|
|
|
|
.catch(() => {});
|
|
|
|
}, 1000);
|
|
|
|
});
|
|
|
|
this.progressbar = false;
|
|
|
|
await this.$store.dispatch('users/ActSignOut');
|
|
|
|
|
|
|
|
await this.$store.dispatch('project/ActLoadProjectInfo');
|
|
|
|
if (this.$store.state.project.appInfo.projectHasAdmin === false) {
|
|
|
|
return this.$router.push('/start');
|
|
|
|
}
|
|
|
|
location.reload();
|
|
|
|
},
|
|
|
|
},
|
|
|
|
props: { value: Boolean },
|
|
|
|
};
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style scoped></style>
|
|
|
|
<!--
|
|
|
|
/**
|
|
|
|
* @copyright Copyright (c) 2021, Xgene Cloud Ltd
|
|
|
|
*
|
|
|
|
* @author Naveen MR <oof1lab@gmail.com>
|
|
|
|
* @author Pranav C Balan <pranavxc@gmail.com>
|
|
|
|
* @author Wing-Kam Wong <wingkwong.code@gmail.com>
|
|
|
|
*
|
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
-->
|