mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
* feat: activator disabled based on thiggers * feat: tooltip over inactive switch * feat: message for trigger types * feat: deactivate on save if trigger is removed * chore: refactor executions modal * feat: calculate service name if possible * feat: alert on activation * chore: fix linting * feat: always enable activator when active * fix: adjust the alert * feat: take disabled state into account * feat: automatically save on activation * feat: rely on nodes name and edit messages * feat: isolate state for each activator instance * feat: create activation modal component * feat: activationModal checkbox and trigger message * feat: add activation messages to node config * chore: style activation modal * chore: style fixes * feat: refactor disabled state * chore: refactor modal * chore: refactor modal * chore: tidy the node config * chore: refactor and styling tweaks * chore: minor fixes * fix: check webhooks from ui nodes * chore: remove saving prompt * chore: explicit current workflow evaluation * feat: add settings link to activation modal * fix: immediately load executions on render * feat: exclude error trigger from trigger nodes * chore: add i18n keys * fix: check localstorage more strictly * fix: handle refresh in execution list * remove unnessary event * remove comment * fix closing executions modal bugs * update closing * update translation key * fix translation keys * fix modal closing * fix closing * fix drawer closing * close all modals when opening executions * update key * close all modals when opening workflow or new page * delete unnessary comment * clean up import * clean up unnessary initial data * clean up activator impl * rewrite * fix open modal bug * simply remove error * refactor activation logic * fix i18n and such * remove changes * revert saving changes * Revert "revert saving changes" 25c29d10553ebcc11939ff29938e8a5ac6b3ffae * add translation * fix new workflows saving * clean up modal impl * clean up impl * refactor common code out * remove active changes from saving * refactor differently * revert unnessary change * set dirty false * fix i18n bug * avoid opening two modals * fix tooltips * add comment * address other comments * address comments Co-authored-by: saintsebastian <tilitidam@gmail.com>
115 lines
2.0 KiB
Vue
115 lines
2.0 KiB
Vue
<template>
|
|
<el-drawer
|
|
:direction="direction"
|
|
:visible="visible"
|
|
:size="width"
|
|
:before-close="close"
|
|
:modal="modal"
|
|
:wrapperClosable="wrapperClosable"
|
|
>
|
|
<template v-slot:title>
|
|
<slot name="header" />
|
|
</template>
|
|
<template>
|
|
<span @keydown.stop>
|
|
<slot name="content"/>
|
|
</span>
|
|
</template>
|
|
</el-drawer>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import Vue from "vue";
|
|
|
|
export default Vue.extend({
|
|
name: "ModalDrawer",
|
|
props: {
|
|
name: {
|
|
type: String,
|
|
},
|
|
beforeClose: {
|
|
type: Function,
|
|
},
|
|
eventBus: {
|
|
type: Vue,
|
|
},
|
|
direction: {
|
|
type: String,
|
|
},
|
|
modal: {
|
|
type: Boolean,
|
|
default: true,
|
|
},
|
|
width: {
|
|
type: String,
|
|
},
|
|
wrapperClosable: {
|
|
type: Boolean,
|
|
default: true,
|
|
},
|
|
},
|
|
mounted() {
|
|
window.addEventListener('keydown', this.onWindowKeydown);
|
|
|
|
if (this.$props.eventBus) {
|
|
this.$props.eventBus.$on('close', () => {
|
|
this.close();
|
|
});
|
|
}
|
|
|
|
const activeElement = document.activeElement as HTMLElement;
|
|
if (activeElement) {
|
|
activeElement.blur();
|
|
}
|
|
},
|
|
beforeDestroy() {
|
|
window.removeEventListener('keydown', this.onWindowKeydown);
|
|
},
|
|
methods: {
|
|
onWindowKeydown(event: KeyboardEvent) {
|
|
if (!this.isActive) {
|
|
return;
|
|
}
|
|
|
|
if (event && event.keyCode === 13) {
|
|
this.handleEnter();
|
|
}
|
|
},
|
|
handleEnter() {
|
|
if (this.isActive) {
|
|
this.$emit('enter');
|
|
}
|
|
},
|
|
async close() {
|
|
if (this.beforeClose) {
|
|
const shouldClose = await this.beforeClose();
|
|
if (shouldClose === false) { // must be strictly false to stop modal from closing
|
|
return;
|
|
}
|
|
}
|
|
|
|
this.$store.commit('ui/closeModal', this.$props.name);
|
|
},
|
|
},
|
|
computed: {
|
|
isActive(): boolean {
|
|
return this.$store.getters['ui/isModalActive'](this.$props.name);
|
|
},
|
|
visible(): boolean {
|
|
return this.$store.getters['ui/isModalOpen'](this.$props.name);
|
|
},
|
|
},
|
|
});
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
.el-drawer__header {
|
|
margin: 0;
|
|
padding: 30px 30px 0 30px;
|
|
}
|
|
|
|
.el-drawer__body {
|
|
overflow: hidden;
|
|
}
|
|
</style>
|