mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
* ⚡ Implemented new grid row - banners * ✨ Fixing node creator and executions sidebar position after layout update * 💄 Added configurable round corners to the Callout component * ⚡ Fixing mouse position detection and main tab bar position * ⚡ Implemented basic banner component structure * ⚡ Implemented banner state and dismiss logic * ⚡ Fixing grid layout. Updating banners height state dynamically * ⚡ Fix zoom to fit position, mouse position in demo mode and callout vertical alignment * ⚡ Implementing proper trial banners logic * 💄 Only showing execution usage data once the sidebar is fully expanded * ✨ Implemented permanent/temporary dismiss logic for v1 flag * ⚡ Minor refactoring of banner logic * ⚡ Updating permanent dismiss logic to work with all banners * 👕 Fixing linting errors * ✔️ Updating Callout component test snapshots * 💄 Tweaking zoom to fit position * ✔️ Updating testing endpoints to use new store data * ✅ Added banners unit tests * ✔️ Fixing failing banner tests * ✅ Added more banner tests * ⚡ Updating banners dimensions on resize, removing leftover code * ✔️ Removing store import from API file * 👕 Fixing lint errors * ⚡ Updating migration files * ⚡ Using query parameters in migrations * 👌 Addressing design review feedback * ⚡ Updating upgrade plan button click * ⚡ Updating the migrations syntax * 👌 Updating permanent banner dismiss endpoint and back-end logic * 👌 Refactoring trial banner component and ui store * 👌 Addressing more points from code review * 👌 Moving DOM logic from the store * ✔️ Updated callout component snapshots * 👌 Updating mysql migration file * ✔️ Updating e2e test canvas coordinates after setting it's position to absolute * 👌 Addressing back-end review feedback * 👌 Improving typing around banners * 👕 Fixing lint errors
148 lines
4 KiB
Vue
148 lines
4 KiB
Vue
<template>
|
|
<Modal
|
|
:name="WORKFLOW_ACTIVE_MODAL_KEY"
|
|
:title="$locale.baseText('activationModal.workflowActivated')"
|
|
width="460px"
|
|
>
|
|
<template #content>
|
|
<div>
|
|
<n8n-text>{{ triggerContent }}</n8n-text>
|
|
</div>
|
|
<div :class="$style.spaced">
|
|
<n8n-text>
|
|
<n8n-text :bold="true">
|
|
{{ $locale.baseText('activationModal.theseExecutionsWillNotShowUp') }}
|
|
</n8n-text>
|
|
{{ $locale.baseText('activationModal.butYouCanSeeThem') }}
|
|
<a @click="showExecutionsList">
|
|
{{ $locale.baseText('activationModal.executionList') }}
|
|
</a>
|
|
{{ $locale.baseText('activationModal.ifYouChooseTo') }}
|
|
<a @click="showSettings">{{ $locale.baseText('activationModal.saveExecutions') }}</a>
|
|
</n8n-text>
|
|
</div>
|
|
</template>
|
|
|
|
<template #footer="{ close }">
|
|
<div :class="$style.footer">
|
|
<el-checkbox :value="checked" @change="handleCheckboxChange">{{
|
|
$locale.baseText('generic.dontShowAgain')
|
|
}}</el-checkbox>
|
|
<n8n-button @click="close" :label="$locale.baseText('activationModal.gotIt')" />
|
|
</div>
|
|
</template>
|
|
</Modal>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { defineComponent } from 'vue';
|
|
import { mapStores } from 'pinia';
|
|
import { createEventBus } from 'n8n-design-system';
|
|
|
|
import Modal from '@/components/Modal.vue';
|
|
import {
|
|
WORKFLOW_ACTIVE_MODAL_KEY,
|
|
WORKFLOW_SETTINGS_MODAL_KEY,
|
|
LOCAL_STORAGE_ACTIVATION_FLAG,
|
|
VIEWS,
|
|
} from '../constants';
|
|
import { getActivatableTriggerNodes, getTriggerNodeServiceName } from '@/utils';
|
|
import { useUIStore } from '@/stores/ui.store';
|
|
import { useWorkflowsStore } from '@/stores/workflows.store';
|
|
import { useNodeTypesStore } from '@/stores/nodeTypes.store';
|
|
|
|
export default defineComponent({
|
|
name: 'ActivationModal',
|
|
components: {
|
|
Modal,
|
|
},
|
|
props: ['modalName'],
|
|
data() {
|
|
return {
|
|
WORKFLOW_ACTIVE_MODAL_KEY,
|
|
checked: false,
|
|
modalBus: createEventBus(),
|
|
};
|
|
},
|
|
methods: {
|
|
async showExecutionsList() {
|
|
const activeExecution = this.workflowsStore.activeWorkflowExecution;
|
|
const currentWorkflow = this.workflowsStore.workflowId;
|
|
|
|
if (activeExecution) {
|
|
this.$router
|
|
.push({
|
|
name: VIEWS.EXECUTION_PREVIEW,
|
|
params: { name: currentWorkflow, executionId: activeExecution.id },
|
|
})
|
|
.catch(() => {});
|
|
} else {
|
|
this.$router
|
|
.push({ name: VIEWS.EXECUTION_HOME, params: { name: currentWorkflow } })
|
|
.catch(() => {});
|
|
}
|
|
this.uiStore.closeModal(WORKFLOW_ACTIVE_MODAL_KEY);
|
|
},
|
|
async showSettings() {
|
|
this.uiStore.openModal(WORKFLOW_SETTINGS_MODAL_KEY);
|
|
},
|
|
handleCheckboxChange(checkboxValue: boolean) {
|
|
this.checked = checkboxValue;
|
|
window.localStorage.setItem(LOCAL_STORAGE_ACTIVATION_FLAG, checkboxValue.toString());
|
|
},
|
|
},
|
|
computed: {
|
|
...mapStores(useNodeTypesStore, useUIStore, useWorkflowsStore),
|
|
triggerContent(): string {
|
|
const foundTriggers = getActivatableTriggerNodes(this.workflowsStore.workflowTriggerNodes);
|
|
if (!foundTriggers.length) {
|
|
return '';
|
|
}
|
|
|
|
if (foundTriggers.length > 1) {
|
|
return this.$locale.baseText('activationModal.yourTriggersWillNowFire');
|
|
}
|
|
|
|
const trigger = foundTriggers[0];
|
|
|
|
const triggerNodeType = this.nodeTypesStore.getNodeType(trigger.type, trigger.typeVersion);
|
|
if (triggerNodeType) {
|
|
if (triggerNodeType.activationMessage) {
|
|
return triggerNodeType.activationMessage;
|
|
}
|
|
|
|
const serviceName = getTriggerNodeServiceName(triggerNodeType);
|
|
if (trigger.webhookId) {
|
|
return this.$locale.baseText('activationModal.yourWorkflowWillNowListenForEvents', {
|
|
interpolate: {
|
|
serviceName,
|
|
},
|
|
});
|
|
} else if (triggerNodeType.polling) {
|
|
return this.$locale.baseText('activationModal.yourWorkflowWillNowRegularlyCheck', {
|
|
interpolate: {
|
|
serviceName,
|
|
},
|
|
});
|
|
}
|
|
}
|
|
return this.$locale.baseText('activationModal.yourTriggerWillNowFire');
|
|
},
|
|
},
|
|
});
|
|
</script>
|
|
|
|
<style lang="scss" module>
|
|
.spaced {
|
|
margin-top: var(--spacing-2xs);
|
|
}
|
|
|
|
.footer {
|
|
text-align: right;
|
|
|
|
> * {
|
|
margin-left: var(--spacing-s);
|
|
}
|
|
}
|
|
</style>
|