mirror of https://github.com/nocodb/nocodb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
121 lines
3.3 KiB
121 lines
3.3 KiB
4 years ago
|
<template>
|
||
|
<div>
|
||
|
<v-progress-linear
|
||
3 years ago
|
v-if="progressbar"
|
||
4 years ago
|
indeterminate
|
||
|
color="green"
|
||
3 years ago
|
/>
|
||
|
<h3 class=" text-center mb-5 grey--text text--darken-2">
|
||
|
Change environment
|
||
|
</h3>
|
||
4 years ago
|
<div>
|
||
|
<div class="">
|
||
|
<v-select
|
||
3 years ago
|
v-model="selectedEnv"
|
||
4 years ago
|
hide-details
|
||
|
dense
|
||
|
:items="envList"
|
||
|
label="Solo field"
|
||
|
solo
|
||
3 years ago
|
/>
|
||
4 years ago
|
</div>
|
||
|
</div>
|
||
|
<div class="mt-4 d-flex d-100">
|
||
3 years ago
|
<v-spacer />
|
||
|
<v-btn small :disabled="progressbar" @click="dialogShow = false">
|
||
3 years ago
|
<!-- Close -->
|
||
|
{{ $t('general.close') }}
|
||
3 years ago
|
</v-btn>
|
||
|
<v-btn color="primary" small :disabled="progressbar" @click="changeEnv">
|
||
|
Change
|
||
|
</v-btn>
|
||
4 years ago
|
</div>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
|
||
3 years ago
|
import { mapGetters } from 'vuex'
|
||
|
import axios from 'axios'
|
||
4 years ago
|
|
||
|
export default {
|
||
3 years ago
|
name: 'Env',
|
||
4 years ago
|
data: () => ({
|
||
3 years ago
|
selectedEnv: '_noco',
|
||
4 years ago
|
progressbar: false
|
||
|
}),
|
||
|
computed: {
|
||
|
...mapGetters({
|
||
3 years ago
|
envList: 'project/GtrEnvList'
|
||
|
})
|
||
4 years ago
|
},
|
||
3 years ago
|
mounted() {
|
||
3 years ago
|
const unserializedList = this.$store.state.project.unserializedList
|
||
|
this.selectedEnv = (unserializedList[0] &&
|
||
|
unserializedList[0].projectJson &&
|
||
3 years ago
|
unserializedList[0].projectJson.workingEnv) || '_noco'
|
||
4 years ago
|
this.$store.watch((state) => {
|
||
|
const unserializedList = state.project.unserializedList
|
||
3 years ago
|
return (unserializedList[0] &&
|
||
|
unserializedList[0].projectJson &&
|
||
3 years ago
|
unserializedList[0].projectJson.workingEnv) || '_noco'
|
||
3 years ago
|
}, (value) => { this.selectedEnv = value })
|
||
4 years ago
|
},
|
||
|
methods: {
|
||
3 years ago
|
async changeEnv() {
|
||
3 years ago
|
this.progressbar = true
|
||
|
await this.$store.dispatch('sqlMgr/ActSqlOp', [null, 'projectChangeEnv', { env: this.selectedEnv }])
|
||
|
await new Promise((resolve) => {
|
||
4 years ago
|
const interv = setInterval(() => {
|
||
|
axios.create({
|
||
3 years ago
|
baseURL: `${this.$axios.defaults.baseURL}/dashboard`
|
||
4 years ago
|
}).get('').then(() => {
|
||
3 years ago
|
this.projectReloading = false
|
||
|
clearInterval(interv)
|
||
|
resolve()
|
||
|
}).catch(() => {
|
||
4 years ago
|
})
|
||
3 years ago
|
}, 1000)
|
||
4 years ago
|
})
|
||
3 years ago
|
this.progressbar = false
|
||
|
await this.$store.dispatch('users/ActSignOut')
|
||
4 years ago
|
|
||
3 years ago
|
await this.$store.dispatch('project/ActLoadProjectInfo')
|
||
3 years ago
|
if (this.$store.state.project.appInfo.projectHasAdmin === false) {
|
||
4 years ago
|
return this.$router.push('/start')
|
||
|
}
|
||
3 years ago
|
location.reload()
|
||
|
}
|
||
4 years ago
|
},
|
||
3 years ago
|
props: { value: Boolean }
|
||
4 years ago
|
}
|
||
|
</script>
|
||
|
|
||
|
<style scoped>
|
||
|
</style>
|
||
|
<!--
|
||
|
/**
|
||
|
* @copyright Copyright (c) 2021, Xgene Cloud Ltd
|
||
|
*
|
||
|
* @author Naveen MR <oof1lab@gmail.com>
|
||
|
* @author Pranav C Balan <pranavxc@gmail.com>
|
||
3 years ago
|
* @author Wing-Kam Wong <wingkwong.code@gmail.com>
|
||
4 years ago
|
*
|
||
|
* @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/>.
|
||
|
*
|
||
|
*/
|
||
|
-->
|