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.
316 lines
9.3 KiB
316 lines
9.3 KiB
<template> |
|
<v-container fluid class="pa-0 ma-0"> |
|
<v-toolbar flat height="42" class="toolbar-border-bottom"> |
|
<v-toolbar-title> |
|
<v-breadcrumbs :items="[{ |
|
text: this.nodes.env, |
|
disabled: true, |
|
href: '#' |
|
},{ |
|
text: this.nodes.dbAlias, |
|
disabled: true, |
|
href: '#' |
|
}, |
|
{ |
|
text: this.originalNodes.sequence_name + ' (sequence)', |
|
disabled: true, |
|
href: '#' |
|
}]" divider=">" small> |
|
<template v-slot:divider> |
|
<v-icon small color="grey lighten-2">forward</v-icon> |
|
</template> |
|
</v-breadcrumbs> |
|
</v-toolbar-title> |
|
<v-spacer></v-spacer> |
|
<x-btn outlined tooltip="Reload Sequences" small @click="loadSequences()" color="primary" icon="refresh" :disabled="newSequence"> |
|
Reload |
|
</x-btn> |
|
<x-btn outlined tooltip="Save Changes" small @click="applyChanges()" color="primary" icon="save" :disabled="!(newSequence || edited)"> |
|
Save |
|
</x-btn> |
|
<x-btn outlined tooltip="Delete Sequence" small color="error" @click="deleteSequence('showDialog')" icon="mdi-delete-outline"> |
|
Delete Sequence |
|
|
|
</x-btn> |
|
</v-toolbar> |
|
<br> |
|
<v-row> |
|
<v-col cols="8" offset="2"> |
|
<v-simple-table v-if="newSequence"> |
|
<template v-slot:default> |
|
<thead> |
|
<tr> |
|
<th class="text-left">Name</th> |
|
<th class="text-left">Value</th> |
|
</tr> |
|
</thead> |
|
<tbody> |
|
<tr class="pa-1"> |
|
<td>sequence_name</td> |
|
<td class="pb-2 pt-1 pr-1"> |
|
<v-row></v-row> |
|
<v-text-field @input="sequenceNameChanged()" v-model="sequence.sequence_name" |
|
:rules="[v=> !!v || 'Value required']"></v-text-field> |
|
</td> |
|
</tr> |
|
</tbody> |
|
</template> |
|
</v-simple-table> |
|
|
|
<v-simple-table v-else> |
|
<template v-slot:default> |
|
<thead> |
|
<tr> |
|
<th class="text-left">Name</th> |
|
<th class="text-left">Value</th> |
|
</tr> |
|
</thead> |
|
<tbody> |
|
|
|
<tr> |
|
<td>sequence_name</td> |
|
<td class="pb-2 pt-1 pr-1"> |
|
<v-text-field :disabled="nodes.dbConnection.client === 'mssql'" @input="sequenceNameChanged()" v-model="sequence.sequence_name" |
|
:rules="[v=> !!v || 'Value required']"></v-text-field> |
|
</td> |
|
</tr> |
|
<tr v-for="(item,key,i) in sequence" :style="key ==='sequence_name' ? 'display:none' : ''" class="grey--text" |
|
:key="i"> |
|
<td>{{ key }}</td> |
|
<td> |
|
{{ item }} |
|
</td> |
|
</tr> |
|
</tbody> |
|
</template> |
|
</v-simple-table> |
|
|
|
</v-col> |
|
</v-row> |
|
<dlgLabelSubmitCancel |
|
type="error" |
|
v-if="dialogShow" |
|
:dialogShow="dialogShow" |
|
cssStyle="border:1px solid grey;height:300px" |
|
:actionsMtd="deleteSequence" |
|
heading="Click Submit to Delete the Sequence" |
|
/> |
|
|
|
|
|
</v-container> |
|
</template> |
|
|
|
<script> |
|
import {mapGetters, mapActions} from "vuex"; |
|
|
|
import dlgLabelSubmitCancel from "../utils/dlgLabelSubmitCancel"; |
|
|
|
export default { |
|
components: {dlgLabelSubmitCancel}, |
|
data() { |
|
return { |
|
edited : false, |
|
originalNodes: {}, |
|
sequence: {}, |
|
newSequence: this.nodes.newSequence ? true : false, |
|
oldCreateSequence: "", |
|
dialogShow: false |
|
}; |
|
}, |
|
computed: { |
|
...mapGetters({sqlMgr: "sqlMgr/sqlMgr"}) |
|
}, |
|
methods: { |
|
...mapActions({ |
|
loadSequencesFromChildTreeNode: |
|
"project/loadSequencesFromChildTreeNode", |
|
loadSequencesFromParentTreeNode: |
|
"project/loadSequencesFromParentTreeNode", |
|
removeSequenceTab: "tabs/removeSequenceTab" |
|
}), |
|
async loadSequences() { |
|
|
|
try { |
|
this.$store.commit('notification/MutToggleProgressBar', true); |
|
if (this.newSequence) { |
|
this.sequence = { |
|
sequence_name: this.originalNodes.sequence_name, |
|
} |
|
this.$store.commit('notification/MutToggleProgressBar', false); |
|
return; |
|
} |
|
|
|
// // console.log("env: this.env", this.env, this.dbAlias); |
|
// const client = await this.sqlMgr.projectGetSqlClient({ |
|
// env: this.nodes.env, |
|
// dbAlias: this.nodes.dbAlias |
|
// }); |
|
// const result = await client.sequenceList({ |
|
// sequence_name: this.originalNodes.sequence_name |
|
// }); |
|
|
|
|
|
const result = await this.sqlMgr.sqlOp({ |
|
env: this.nodes.env, |
|
dbAlias: this.nodes.dbAlias |
|
}, 'sequenceList',{ sequence_name: this.originalNodes.sequence_name}); |
|
|
|
// console.log("sequence read", result); |
|
this.sequence = {...result.data.list.find(seq => seq.sequence_name === this.originalNodes.sequence_name)}; |
|
|
|
} catch (e) { |
|
console.log(e); |
|
this.$toast.error('Loading sequence failed'); |
|
} finally { |
|
this.$store.commit('notification/MutToggleProgressBar', false); |
|
} |
|
|
|
}, |
|
async applyChanges() { |
|
try { |
|
if (this.newSequence) { |
|
|
|
let result = await this.$store.dispatch('sqlMgr/ActSqlOpPlus', [ |
|
{ |
|
env: this.nodes.env, |
|
dbAlias: this.nodes.dbAlias |
|
}, |
|
"sequenceCreate", |
|
this.sequence]); |
|
|
|
await this.loadSequencesFromChildTreeNode({ |
|
_nodes: { |
|
...this.nodes |
|
} |
|
}); |
|
console.log("create sequence result", result); |
|
this.originalNodes.sequence_name = this.sequence.sequence_name; |
|
this.newSequence = false; |
|
await this.loadSequences(); |
|
this.$toast.success('Sequence created successfully').goAway(3000); |
|
} else { |
|
|
|
|
|
let result = await this.$store.dispatch('sqlMgr/ActSqlOpPlus', [ |
|
{ |
|
env: this.nodes.env, |
|
dbAlias: this.nodes.dbAlias |
|
}, |
|
"sequenceUpdate", |
|
this.sequence |
|
]); |
|
|
|
|
|
console.log("update sequence result", result); |
|
this.$toast.success('Sequence updated successfully').goAway(3000); |
|
} |
|
} catch (e) { |
|
this.$toast.error('Saving sequence failed').goAway(3000); |
|
throw e; |
|
} |
|
|
|
|
|
}, |
|
async deleteSequence(action = "") { |
|
|
|
try { |
|
if (action === "showDialog") { |
|
this.dialogShow = true; |
|
} else if (action === "hideDialog") { |
|
this.dialogShow = false; |
|
} else { |
|
let result = await this.$store.dispatch('sqlMgr/ActSqlOpPlus', [ |
|
{ |
|
env: this.nodes.env, |
|
dbAlias: this.nodes.dbAlias |
|
}, |
|
"sequenceDelete", |
|
{ |
|
sequence_name: this.originalNodes.sequence_name, |
|
}]); |
|
|
|
this.removeSequenceTab({ |
|
env: this.nodes.env, |
|
dbAlias: this.nodes.dbAlias, |
|
sequence_name: this.originalNodes.sequence_name |
|
}); |
|
await this.loadSequencesFromParentTreeNode({ |
|
_nodes: { |
|
...this.nodes |
|
} |
|
}); |
|
this.dialogShow = false; |
|
this.$toast.success('Sequence deleted successfully').goAway(3000); |
|
} |
|
} catch (e) { |
|
this.$toast.error('Deleting sequence failed').goAway(3000) |
|
throw e; |
|
} |
|
|
|
|
|
|
|
}, |
|
sequenceNameChanged(){ |
|
console.log('changed',this.sequence.sequence_name.trim()) |
|
this.edited = this.sequence.sequence_name.trim() !== ''; |
|
} |
|
}, |
|
beforeCreated() { |
|
}, |
|
async created() { |
|
this.originalNodes = {...this.nodes} |
|
await this.loadSequences(); |
|
}, |
|
mounted() { |
|
}, |
|
beforeDestroy() { |
|
}, |
|
destroy() { |
|
}, |
|
validate({params}) { |
|
return true; |
|
}, |
|
head() { |
|
return {}; |
|
}, |
|
props: ["nodes"], |
|
watch: { |
|
// 'sequence' : { |
|
// deep:true, |
|
// handler(n,o) { |
|
// console.log('watch sequence',n,o); |
|
// if(o.sequence_name) |
|
// this.edited = true; |
|
// } |
|
// } |
|
}, |
|
directives: {} |
|
}; |
|
</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/>. |
|
* |
|
*/ |
|
-->
|
|
|