多维表格
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.
 
 
 
 
 
 

356 lines
11 KiB

<template>
<v-dialog
width="60%"
v-model="dialogShow">
<v-tabs
v-model="activeTab"
height="32">
<v-tabs-slider></v-tabs-slider>
<v-tab
v-for="env in envs"
:key="env"
:to="`#${env}`">
{{env}}
</v-tab>
<div style="padding:0;margin-top:3px;margin-left:20px">
<x-btn small
tooltip="Add a new environment"
outlined
v-if="!isDashboard" @click="addNewEnvDialog = true"> Add Env
</x-btn>
</div>
<v-spacer></v-spacer>
<div style="padding:0;margin-left:20px">
<x-btn small v-if="!isDashboard && activeTab !== 'global'" color="error"
tooltip="Deletes environment(without confirmation dialog)"
outlined
@click="deleteEnvironemt(activeTab)">
Delete '{{activeTab}}' Env
</x-btn>
<x-btn
@click="saveEnvironment(env)"
outlined
color="primary" :tooltip="`Save all the environemtns`" btn.class="ma-1" small>
<v-icon
small
>save
</v-icon> &nbsp;Save All
</x-btn>
</div>
<v-tab-item
v-for="(env) in envs"
:key="env"
:value="env">
<div class="d-flex" style="height: 100%; width:100%">
<v-simple-table class="ignore-height-style params-table my-4" style="width: 100%" dense>
<template v-slot:default>
<thead>
<tr>
<th class="text-left body-2" width="5%"></th>
<th class="text-left body-2 grey--text" width="40%">Key</th>
<th class="text-left body-2 grey--text" width="40%">Value</th>
<th class="text-left body-2" width="5%"></th>
</tr>
</thead>
<draggable v-if="value" v-model="envValues[env].data" tag="tbody">
<tr v-for="(item,i) in envValues[env].data" :key="i">
<td>
<v-checkbox
small
class="mt-0"
color="primary lighten-1"
hide-details
v-model="item.enabled" dense></v-checkbox>
</td>
<td>
<v-text-field
class="body-2"
:disabled="!item.enabled"
v-model="item.key"
@input="handleInput(env,i,item.key)"
placeholder="Key"
hide-details
single-line
dense
></v-text-field>
</td>
<td style="height: auto">
<v-text-field
class="body-2"
v-model="item.value"
:disabled="!item.enabled"
:placeholder="'Value'"
hide-details
single-line
dense
></v-text-field>
</td>
<td class="">
<x-icon
tooltip="Delete environment key"
color="error grey"
small @click="removeKey(env,i)">mdi-delete-outline
</x-icon>
</td>
</tr>
</draggable>
</template>
</v-simple-table>
</div>
</v-tab-item>
</v-tabs>
<v-dialog v-model="addNewEnvDialog" max-width="500">
<v-card>
<v-card-title class="headline">New Environment</v-card-title>
<v-card-text>
<v-text-field hide-details outlined dense v-model="newEnvName" label="Enter environment name"></v-text-field>
</v-card-text>
<v-card-actions>
<v-spacer></v-spacer>
<v-btn
color="green darken-1"
text
@click="addNewEnvDialog = false"
>
Cancel
</v-btn>
<v-btn
color="green darken-1"
text
@click="addNewEnvironment(newEnvName)"
>
Create
</v-btn>
</v-card-actions>
</v-card>
</v-dialog>
</v-dialog>
</template>
<script>
import draggable from "vuedraggable";
//
// const {promisify, fs, path, config, Handlebars} = require("electron").remote.require(
// "./libs"
// );
export default {
name: "environment",
data() {
return {
addNewEnvDialog: false,
newEnvName: '',
activeTab: 'global',
envValues: {}
};
},
methods: {
async addNewEnvironment(name) {
this.addNewEnvDialog = false;
if (!this.isDashboard) {
const projectJsonPath = config.electron.defaultProjectPath;
const freshProjectObj = JSON.parse(JSON.stringify(this.$store.state.project.defaultProject));
freshProjectObj.envs[name] = {apiClient: {data: []}};
fs.writeFileSync(
projectJsonPath,
JSON.stringify(freshProjectObj, null, 2),
"utf-8");
this.$store.commit('project/setDefaultProjectJson', JSON.parse(JSON.stringify(freshProjectObj)));
this.loadEnvironments();
}
},
deleteEnvironemt(env) {
if (!this.isDashboard) {
const projectJsonPath = config.electron.defaultProjectPath;
const freshProjectObj = JSON.parse(JSON.stringify(this.$store.state.project.defaultProject));
delete freshProjectObj.envs[env];
fs.writeFileSync(
projectJsonPath,
JSON.stringify(freshProjectObj, null, 2),
"utf-8");
this.$store.commit('project/setDefaultProjectJson', JSON.parse(JSON.stringify(freshProjectObj)));
this.loadEnvironments();
}
},
// add extra column if last row is filled
handleInput(env, i, key) {
if (i === this.envValues[env].data.length - 1 && key.length) {
this.envValues[env].data = [...this.envValues[env].data, {key: '', value: '', enabled: true}]
}
},
// remove environment key
removeKey(env, i) {
this.envValues[env].data.splice(i, 1);
if (!this.envValues[env].data.length) {
this.envValues[env].data = [{key: '', value: '', enabled: true}]
}
},
// filter empty environments and save project JSON
async saveEnvironmentFile(projectJsonPath, freshProject) {
this.envs.forEach(env => {
let envObj = {}
if (!this.envValues[env] || !this.envValues[env].data)
this.$set(this.envValues, env, {data: []})
else
envObj = this.envValues[env];
if (env === 'global') {
freshProject.apiClient.data = envObj.data.filter(o => o.key.trim());
} else {
freshProject.envs[env].apiClient.data = envObj.data.filter(o => o.key.trim());
}
});
fs.writeFileSync(
projectJsonPath,
JSON.stringify(freshProject, null, 2),
"utf-8");
},
async saveEnvironment(env) {
console.log(env, this.envValues[env])
try {
let projectJsonPath, freshProjectObj;
// make a copy of project json and get it's file path
// save the changes made to project json and update in state
if (this.isDashboard) {
projectJsonPath = path.join(this.$store.getters['project/currentProjectFolder'], "config.xc.json");
freshProjectObj = JSON.parse(fs.readFileSync(projectJsonPath));
await this.saveEnvironmentFile(projectJsonPath, freshProjectObj);
this.$store.commit('project/setProjectJson', JSON.parse(JSON.stringify(freshProjectObj), (key, value) => {
return typeof value === 'string' ? Handlebars.compile(value, {noEscape: true})(process.env) : value;
}));
} else {
projectJsonPath = config.electron.defaultProjectPath;
freshProjectObj = JSON.parse(JSON.stringify(this.$store.state.project.defaultProject));
await this.saveEnvironmentFile(projectJsonPath, freshProjectObj);
this.$store.commit('project/setDefaultProjectJson', JSON.parse(JSON.stringify(freshProjectObj)));
}
this.$toast.success('Environment saved successfully').goAway(3000)
} catch (e) {
console.log(e);
this.$toast.error('Invalid JSON failed to save environment').goAway(3000)
}
},
// load current environment values for active project from state
loadEnvironments() {
let projectJsonObj;
if (this.isDashboard) {
projectJsonObj = this.$store.getters['project/GtrProjectJson'];
} else {
projectJsonObj = this.$store.state.project.defaultProject;
}
// extract environment object (key-value pair)
this.envValues = JSON.parse(JSON.stringify({
'global': projectJsonObj.apiClient,
...(projectJsonObj.envs ?
Object.entries(projectJsonObj.envs)
.reduce((obj, [name, env]) => ({[name]: env.apiClient, ...obj}), {}) : [])
}));
// add extra empty environment to show in form
for (let env in this.envValues) {
this.envValues[env].data.push({key: '', value: '', enabled: true})
}
}
},
beforeCreated() {
},
created() {
this.activeTab = this.env;
this.loadEnvironments();
// listen for active project change
this.$store.watch(
(state) => state.project.unserializedList,
(unserializedList) => {
if (unserializedList.envs) this.loadEnvironments();
}
)
},
mounted() {
},
beforeDestroy() {
},
destroy() {
},
validate({params}) {
return true;
},
head() {
return {};
},
props: {
value: Boolean,
env: String
},
computed: {
dialogShow: {
get() {
return this.value;
}, set(val) {
this.$emit('input', val);
}
},
envs() {
if (this.isDashboard) {
return ['global', ...(Object.keys(this.$store.getters['project/GtrProjectJson'].envs))];
} else {
return ['global', ...(Object.keys(this.$store.state.project.defaultProject.envs))]
}
}
},
watch: {
env(env) {
this.activeTab = env;
}
},
directives: {},
components: {
draggable
}
}
</script>
<style scoped>
</style>
<!--
/**
* @copyright Copyright (c) 2021, Xgene Cloud Ltd
*
* @author Naveen MR <oof1lab@gmail.com>
* @author Pranav C Balan <pranavxc@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/>.
*
*/
-->