mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
* refactor(editor): Turn showMessage mixin to composable (#6081) * refactor(editor): move $getExecutionError from showMessages mixin to pushConnection (it is used there only) * refactor(editor): resolve showMessage mixin methods * fix(editor): use composable instead of mixin * fix(editor): resolve conflicts * fix(editor): replace clearAllStickyNotifications * fix(editor): replace confirmMessage * fix(editor): replace confirmMessage * fix(editor): replace confirmMessage * fix(editor): remove last confirmMessage usage * fix(editor): remove $prompt usage * fix(editor): remove $show methods * fix(editor): lint fix * fix(editor): lint fix * fix(editor): fixes after review * fix(editor): Fix external hook call in App * fix(editor): mixins & composables * fix: add pushConnection setup composables to components as well * fix(editor): mixins & composables * fix(editor): mixins & composables * fix: add void on non-await async calls * fix: fix close without connecting confirmation * fix: remove .only --------- Co-authored-by: Alex Grozav <alex@grozav.com>
130 lines
3.9 KiB
TypeScript
130 lines
3.9 KiB
TypeScript
import { externalHooks } from '@/mixins/externalHooks';
|
|
import { workflowHelpers } from '@/mixins/workflowHelpers';
|
|
import { useToast } from '@/composables';
|
|
|
|
import { defineComponent } from 'vue';
|
|
import {
|
|
LOCAL_STORAGE_ACTIVATION_FLAG,
|
|
PLACEHOLDER_EMPTY_WORKFLOW_ID,
|
|
WORKFLOW_ACTIVE_MODAL_KEY,
|
|
} from '@/constants';
|
|
import { mapStores } from 'pinia';
|
|
import { useUIStore } from '@/stores/ui.store';
|
|
import { useSettingsStore } from '@/stores/settings.store';
|
|
import { useWorkflowsStore } from '@/stores/workflows.store';
|
|
|
|
export const workflowActivate = defineComponent({
|
|
mixins: [externalHooks, workflowHelpers],
|
|
setup() {
|
|
return {
|
|
...useToast(),
|
|
};
|
|
},
|
|
data() {
|
|
return {
|
|
updatingWorkflowActivation: false,
|
|
};
|
|
},
|
|
computed: {
|
|
...mapStores(useSettingsStore, useUIStore, useWorkflowsStore),
|
|
},
|
|
methods: {
|
|
async activateCurrentWorkflow(telemetrySource?: string) {
|
|
const workflowId = this.workflowsStore.workflowId;
|
|
return this.updateWorkflowActivation(workflowId, true, telemetrySource);
|
|
},
|
|
async updateWorkflowActivation(
|
|
workflowId: string | undefined,
|
|
newActiveState: boolean,
|
|
telemetrySource?: string,
|
|
) {
|
|
this.updatingWorkflowActivation = true;
|
|
const nodesIssuesExist = this.workflowsStore.nodesIssuesExist as boolean;
|
|
|
|
let currWorkflowId: string | undefined = workflowId;
|
|
if (!currWorkflowId || currWorkflowId === PLACEHOLDER_EMPTY_WORKFLOW_ID) {
|
|
const saved = await this.saveCurrentWorkflow();
|
|
if (!saved) {
|
|
this.updatingWorkflowActivation = false;
|
|
return;
|
|
}
|
|
currWorkflowId = this.workflowsStore.workflowId as string;
|
|
}
|
|
const isCurrentWorkflow = currWorkflowId === this.workflowsStore.workflowId;
|
|
|
|
const activeWorkflows = this.workflowsStore.activeWorkflows;
|
|
const isWorkflowActive = activeWorkflows.includes(currWorkflowId);
|
|
|
|
const telemetryPayload = {
|
|
workflow_id: currWorkflowId,
|
|
is_active: newActiveState,
|
|
previous_status: isWorkflowActive,
|
|
ndv_input: telemetrySource === 'ndv',
|
|
};
|
|
this.$telemetry.track('User set workflow active status', telemetryPayload);
|
|
void this.$externalHooks().run('workflowActivate.updateWorkflowActivation', telemetryPayload);
|
|
|
|
try {
|
|
if (isWorkflowActive && newActiveState) {
|
|
this.showMessage({
|
|
title: this.$locale.baseText('workflowActivator.workflowIsActive'),
|
|
type: 'success',
|
|
});
|
|
this.updatingWorkflowActivation = false;
|
|
|
|
return;
|
|
}
|
|
|
|
if (isCurrentWorkflow && nodesIssuesExist && newActiveState === true) {
|
|
this.showMessage({
|
|
title: this.$locale.baseText(
|
|
'workflowActivator.showMessage.activeChangedNodesIssuesExistTrue.title',
|
|
),
|
|
message: this.$locale.baseText(
|
|
'workflowActivator.showMessage.activeChangedNodesIssuesExistTrue.message',
|
|
),
|
|
type: 'error',
|
|
});
|
|
|
|
this.updatingWorkflowActivation = false;
|
|
return;
|
|
}
|
|
|
|
await this.updateWorkflow({ workflowId: currWorkflowId, active: newActiveState });
|
|
} catch (error) {
|
|
const newStateName = newActiveState === true ? 'activated' : 'deactivated';
|
|
this.showError(
|
|
error,
|
|
this.$locale.baseText('workflowActivator.showError.title', {
|
|
interpolate: { newStateName },
|
|
}) + ':',
|
|
);
|
|
this.updatingWorkflowActivation = false;
|
|
return;
|
|
}
|
|
|
|
const activationEventName = isCurrentWorkflow
|
|
? 'workflow.activeChangeCurrent'
|
|
: 'workflow.activeChange';
|
|
void this.$externalHooks().run(activationEventName, {
|
|
workflowId: currWorkflowId,
|
|
active: newActiveState,
|
|
});
|
|
|
|
this.$emit('workflowActiveChanged', { id: currWorkflowId, active: newActiveState });
|
|
this.updatingWorkflowActivation = false;
|
|
|
|
if (isCurrentWorkflow) {
|
|
if (
|
|
newActiveState &&
|
|
window.localStorage.getItem(LOCAL_STORAGE_ACTIVATION_FLAG) !== 'true'
|
|
) {
|
|
this.uiStore.openModal(WORKFLOW_ACTIVE_MODAL_KEY);
|
|
} else {
|
|
await this.settingsStore.fetchPromptsData();
|
|
}
|
|
}
|
|
},
|
|
},
|
|
});
|