mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-15 17:14:05 -08:00
819c4adb3c
* fix(editor): Create executions page * fix(editor): lint fix * fix(editor): Reuse execution list in both modal and page * fix(editor): fix ts issues * fix(editor): Reorganizing exec list components for easier redesign (everything is in its new place now) * fix(editor): Exec list item restyling * fix(editor): Exec list add back stripes * fix(editor): Exec list formatting dates and times * fix(editor): Exec list revert accidental searc and replace * fix(editor): Exec list translations and execution IDs * fix(editor): Exec list playing with table cell sizing * fix(editor): Exec list playing with table cell sizing * fix(editor): Exec list drop Element UI Table * fix(editor): Exec list adding sticky header and View button on row hover * fix(editor): Exec list open execution in new tab, add ellipsis menu to all rows with Delete action * fix(editor): Global exec list update translations snd fix tabindex * fix(editor): Global exec list redesign selection * fix(editor): Global exec list fix scrolling container * fix(editor): Global exec list fix running status * fix(editor): Global exec list fix waiting status
213 lines
6 KiB
Vue
213 lines
6 KiB
Vue
<template>
|
|
<div>
|
|
<ModalRoot :name="CONTACT_PROMPT_MODAL_KEY">
|
|
<template #default="{ modalName }">
|
|
<ContactPromptModal :modalName="modalName" />
|
|
</template>
|
|
</ModalRoot>
|
|
|
|
<ModalRoot :name="CREDENTIAL_EDIT_MODAL_KEY">
|
|
<template #default="{ modalName, activeId, mode }">
|
|
<CredentialEdit :modalName="modalName" :mode="mode" :activeId="activeId" />
|
|
</template>
|
|
</ModalRoot>
|
|
<ModalRoot :name="ABOUT_MODAL_KEY">
|
|
<AboutModal />
|
|
</ModalRoot>
|
|
|
|
<ModalRoot :name="CREDENTIAL_SELECT_MODAL_KEY">
|
|
<CredentialsSelectModal />
|
|
</ModalRoot>
|
|
|
|
<ModalRoot :name="DUPLICATE_MODAL_KEY">
|
|
<template #default="{ modalName, active, data }">
|
|
<DuplicateWorkflowDialog :data="data" :isActive="active" :modalName="modalName" />
|
|
</template>
|
|
</ModalRoot>
|
|
|
|
<ModalRoot :name="PERSONALIZATION_MODAL_KEY">
|
|
<PersonalizationModal />
|
|
</ModalRoot>
|
|
|
|
<ModalRoot :name="TAGS_MANAGER_MODAL_KEY">
|
|
<TagsManager />
|
|
</ModalRoot>
|
|
|
|
<ModalRoot :name="VERSIONS_MODAL_KEY" :keepAlive="true">
|
|
<UpdatesPanel />
|
|
</ModalRoot>
|
|
|
|
<ModalRoot :name="VALUE_SURVEY_MODAL_KEY" :keepAlive="true">
|
|
<template #default="{ active }">
|
|
<ValueSurvey :isActive="active" />
|
|
</template>
|
|
</ModalRoot>
|
|
|
|
<ModalRoot :name="WORKFLOW_SETTINGS_MODAL_KEY">
|
|
<WorkflowSettings />
|
|
</ModalRoot>
|
|
|
|
<ModalRoot :name="CHANGE_PASSWORD_MODAL_KEY">
|
|
<ChangePasswordModal />
|
|
</ModalRoot>
|
|
|
|
<ModalRoot :name="INVITE_USER_MODAL_KEY">
|
|
<InviteUsersModal />
|
|
</ModalRoot>
|
|
|
|
<ModalRoot :name="DELETE_USER_MODAL_KEY">
|
|
<template #default="{ modalName, activeId }">
|
|
<DeleteUserModal :modalName="modalName" :activeId="activeId" />
|
|
</template>
|
|
</ModalRoot>
|
|
|
|
<ModalRoot :name="EXECUTIONS_MODAL_KEY">
|
|
<ExecutionsModal />
|
|
</ModalRoot>
|
|
|
|
<ModalRoot :name="WORKFLOW_ACTIVE_MODAL_KEY">
|
|
<ActivationModal />
|
|
</ModalRoot>
|
|
|
|
<ModalRoot :name="WORKFLOW_SHARE_MODAL_KEY">
|
|
<template #default="{ modalName, active, data }">
|
|
<WorkflowShareModal :data="data" :isActive="active" :modalName="modalName" />
|
|
</template>
|
|
</ModalRoot>
|
|
|
|
<ModalRoot :name="ONBOARDING_CALL_SIGNUP_MODAL_KEY">
|
|
<OnboardingCallSignupModal />
|
|
</ModalRoot>
|
|
|
|
<ModalRoot :name="COMMUNITY_PACKAGE_INSTALL_MODAL_KEY">
|
|
<CommunityPackageInstallModal />
|
|
</ModalRoot>
|
|
|
|
<ModalRoot :name="IMPORT_CURL_MODAL_KEY">
|
|
<ImportCurlModal />
|
|
</ModalRoot>
|
|
|
|
<ModalRoot :name="COMMUNITY_PACKAGE_CONFIRM_MODAL_KEY">
|
|
<template #default="{ modalName, activeId, mode }">
|
|
<CommunityPackageManageConfirmModal
|
|
:modalName="modalName"
|
|
:activePackageName="activeId"
|
|
:mode="mode"
|
|
/>
|
|
</template>
|
|
</ModalRoot>
|
|
|
|
<ModalRoot :name="LOG_STREAM_MODAL_KEY">
|
|
<template #default="{ modalName, data }">
|
|
<EventDestinationSettingsModal
|
|
:modalName="modalName"
|
|
:destination="data.destination"
|
|
:isNew="data.isNew"
|
|
:eventBus="data.eventBus"
|
|
/>
|
|
</template>
|
|
</ModalRoot>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import Vue from 'vue';
|
|
import {
|
|
ABOUT_MODAL_KEY,
|
|
CHANGE_PASSWORD_MODAL_KEY,
|
|
COMMUNITY_PACKAGE_CONFIRM_MODAL_KEY,
|
|
COMMUNITY_PACKAGE_INSTALL_MODAL_KEY,
|
|
CONTACT_PROMPT_MODAL_KEY,
|
|
CREDENTIAL_EDIT_MODAL_KEY,
|
|
CREDENTIAL_SELECT_MODAL_KEY,
|
|
DELETE_USER_MODAL_KEY,
|
|
DUPLICATE_MODAL_KEY,
|
|
EXECUTIONS_MODAL_KEY,
|
|
INVITE_USER_MODAL_KEY,
|
|
ONBOARDING_CALL_SIGNUP_MODAL_KEY,
|
|
PERSONALIZATION_MODAL_KEY,
|
|
TAGS_MANAGER_MODAL_KEY,
|
|
VALUE_SURVEY_MODAL_KEY,
|
|
VERSIONS_MODAL_KEY,
|
|
WORKFLOW_ACTIVE_MODAL_KEY,
|
|
WORKFLOW_SETTINGS_MODAL_KEY,
|
|
WORKFLOW_SHARE_MODAL_KEY,
|
|
IMPORT_CURL_MODAL_KEY,
|
|
LOG_STREAM_MODAL_KEY,
|
|
} from '@/constants';
|
|
|
|
import AboutModal from './AboutModal.vue';
|
|
import CommunityPackageManageConfirmModal from './CommunityPackageManageConfirmModal.vue';
|
|
import CommunityPackageInstallModal from './CommunityPackageInstallModal.vue';
|
|
import ChangePasswordModal from './ChangePasswordModal.vue';
|
|
import ContactPromptModal from './ContactPromptModal.vue';
|
|
import CredentialEdit from './CredentialEdit/CredentialEdit.vue';
|
|
import InviteUsersModal from './InviteUsersModal.vue';
|
|
import CredentialsSelectModal from './CredentialsSelectModal.vue';
|
|
import DuplicateWorkflowDialog from './DuplicateWorkflowDialog.vue';
|
|
import ModalRoot from './ModalRoot.vue';
|
|
import OnboardingCallSignupModal from './OnboardingCallSignupModal.vue';
|
|
import PersonalizationModal from './PersonalizationModal.vue';
|
|
import TagsManager from './TagsManager/TagsManager.vue';
|
|
import UpdatesPanel from './UpdatesPanel.vue';
|
|
import ValueSurvey from './ValueSurvey.vue';
|
|
import WorkflowSettings from './WorkflowSettings.vue';
|
|
import DeleteUserModal from './DeleteUserModal.vue';
|
|
import ExecutionsModal from './ExecutionsModal.vue';
|
|
import ActivationModal from './ActivationModal.vue';
|
|
import ImportCurlModal from './ImportCurlModal.vue';
|
|
import WorkflowShareModal from './WorkflowShareModal.ee.vue';
|
|
import EventDestinationSettingsModal from '@/components/SettingsLogStreaming/EventDestinationSettingsModal.ee.vue';
|
|
|
|
export default Vue.extend({
|
|
name: 'Modals',
|
|
components: {
|
|
AboutModal,
|
|
ActivationModal,
|
|
CommunityPackageInstallModal,
|
|
CommunityPackageManageConfirmModal,
|
|
ContactPromptModal,
|
|
ChangePasswordModal,
|
|
CredentialEdit,
|
|
CredentialsSelectModal,
|
|
DeleteUserModal,
|
|
DuplicateWorkflowDialog,
|
|
InviteUsersModal,
|
|
ExecutionsModal,
|
|
ModalRoot,
|
|
OnboardingCallSignupModal,
|
|
PersonalizationModal,
|
|
TagsManager,
|
|
UpdatesPanel,
|
|
ValueSurvey,
|
|
WorkflowSettings,
|
|
WorkflowShareModal,
|
|
ImportCurlModal,
|
|
EventDestinationSettingsModal,
|
|
},
|
|
data: () => ({
|
|
COMMUNITY_PACKAGE_CONFIRM_MODAL_KEY,
|
|
COMMUNITY_PACKAGE_INSTALL_MODAL_KEY,
|
|
CONTACT_PROMPT_MODAL_KEY,
|
|
CREDENTIAL_EDIT_MODAL_KEY,
|
|
CREDENTIAL_SELECT_MODAL_KEY,
|
|
ABOUT_MODAL_KEY,
|
|
CHANGE_PASSWORD_MODAL_KEY,
|
|
DELETE_USER_MODAL_KEY,
|
|
DUPLICATE_MODAL_KEY,
|
|
ONBOARDING_CALL_SIGNUP_MODAL_KEY,
|
|
PERSONALIZATION_MODAL_KEY,
|
|
INVITE_USER_MODAL_KEY,
|
|
TAGS_MANAGER_MODAL_KEY,
|
|
VERSIONS_MODAL_KEY,
|
|
WORKFLOW_SETTINGS_MODAL_KEY,
|
|
WORKFLOW_SHARE_MODAL_KEY,
|
|
VALUE_SURVEY_MODAL_KEY,
|
|
EXECUTIONS_MODAL_KEY,
|
|
WORKFLOW_ACTIVE_MODAL_KEY,
|
|
IMPORT_CURL_MODAL_KEY,
|
|
LOG_STREAM_MODAL_KEY,
|
|
}),
|
|
});
|
|
</script>
|