mirror of https://github.com/Fabio286/antares.git
fix: issues with trigger temp tabs
This commit is contained in:
parent
f6faad98f8
commit
6b725b1d40
|
@ -310,7 +310,13 @@ export default {
|
||||||
trigger: 'trigger-props'
|
trigger: 'trigger-props'
|
||||||
};
|
};
|
||||||
|
|
||||||
this.newTab({ uid: this.connection.uid, elementName: misc.name, schema: this.database.name, type: miscTabs[type], elementType: type });
|
this.newTab({
|
||||||
|
uid: this.connection.uid,
|
||||||
|
elementName: misc.name,
|
||||||
|
schema: this.database.name,
|
||||||
|
type: miscTabs[type],
|
||||||
|
elementType: type
|
||||||
|
});
|
||||||
this.setBreadcrumbs({ schema, [type]: misc.name });
|
this.setBreadcrumbs({ schema, [type]: misc.name });
|
||||||
},
|
},
|
||||||
showSchemaContext (event, schema) {
|
showSchemaContext (event, schema) {
|
||||||
|
|
|
@ -152,6 +152,7 @@ export default {
|
||||||
return {
|
return {
|
||||||
isLoading: false,
|
isLoading: false,
|
||||||
isSaving: false,
|
isSaving: false,
|
||||||
|
isReady: false,
|
||||||
originalTrigger: null,
|
originalTrigger: null,
|
||||||
localTrigger: { sql: '' },
|
localTrigger: { sql: '' },
|
||||||
lastTrigger: null,
|
lastTrigger: null,
|
||||||
|
@ -211,10 +212,10 @@ export default {
|
||||||
this.getTriggerData();
|
this.getTriggerData();
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
isChanged (val, oldVal) {
|
isChanged (val) {
|
||||||
this.setUnsavedChanges({ uid: this.connection.uid, tUid: this.tabUid, isChanged: val });
|
this.setUnsavedChanges({ uid: this.connection.uid, tUid: this.tabUid, isChanged: val });
|
||||||
|
|
||||||
if (val && !oldVal) {
|
if (val) {
|
||||||
const triggerName = this.customizations.triggerTableInName ? `${this.originalTrigger.table}.${this.originalTrigger.name}` : this.originalTrigger.name;
|
const triggerName = this.customizations.triggerTableInName ? `${this.originalTrigger.table}.${this.originalTrigger.name}` : this.originalTrigger.name;
|
||||||
|
|
||||||
this.newTab({
|
this.newTab({
|
||||||
|
@ -233,7 +234,7 @@ export default {
|
||||||
window.addEventListener('keydown', this.onKey);
|
window.addEventListener('keydown', this.onKey);
|
||||||
},
|
},
|
||||||
mounted () {
|
mounted () {
|
||||||
window.addEventListener('resize', this.resizeQueryEditor);
|
window.addEventListener('resize', this.resizeQueryEditor); ;
|
||||||
},
|
},
|
||||||
destroyed () {
|
destroyed () {
|
||||||
window.removeEventListener('resize', this.resizeQueryEditor);
|
window.removeEventListener('resize', this.resizeQueryEditor);
|
||||||
|
@ -273,6 +274,7 @@ export default {
|
||||||
this.originalTrigger = response;
|
this.originalTrigger = response;
|
||||||
this.localTrigger = JSON.parse(JSON.stringify(this.originalTrigger));
|
this.localTrigger = JSON.parse(JSON.stringify(this.originalTrigger));
|
||||||
this.sqlProxy = this.localTrigger.sql;
|
this.sqlProxy = this.localTrigger.sql;
|
||||||
|
this.isReady = true;
|
||||||
|
|
||||||
if (this.customizations.triggerMultipleEvents) {
|
if (this.customizations.triggerMultipleEvents) {
|
||||||
this.originalTrigger.event.forEach(e => {
|
this.originalTrigger.event.forEach(e => {
|
||||||
|
|
Loading…
Reference in New Issue