mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
210 lines
5.8 KiB
Vue
210 lines
5.8 KiB
Vue
<script lang="ts" setup>
|
|
import { computed } from 'vue';
|
|
import { ABOUT_MODAL_KEY, VIEWS } from '@/constants';
|
|
import { useUserHelpers } from '@/composables/useUserHelpers';
|
|
import type { IFakeDoor } from '@/Interface';
|
|
import type { IMenuItem } from 'n8n-design-system';
|
|
import type { BaseTextKey } from '@/plugins/i18n';
|
|
import { useUIStore } from '@/stores/ui.store';
|
|
import { useSettingsStore } from '@/stores/settings.store';
|
|
import { useRootStore } from '@/stores/root.store';
|
|
import { hasPermission } from '@/utils/rbac/permissions';
|
|
import { useRoute, useRouter } from 'vue-router';
|
|
import { useI18n } from '@/composables/useI18n';
|
|
|
|
const emit = defineEmits<{
|
|
return: [];
|
|
}>();
|
|
|
|
const router = useRouter();
|
|
const route = useRoute();
|
|
const i18n = useI18n();
|
|
|
|
const { canUserAccessRouteByName } = useUserHelpers(router, route);
|
|
|
|
const rootStore = useRootStore();
|
|
const settingsStore = useSettingsStore();
|
|
const uiStore = useUIStore();
|
|
|
|
const settingsFakeDoorFeatures = computed<IFakeDoor[]>(() =>
|
|
Object.keys(uiStore.fakeDoorsByLocation)
|
|
.filter((location: string) => location.includes('settings'))
|
|
.map((location) => uiStore.fakeDoorsByLocation[location]),
|
|
);
|
|
|
|
const handleSelect = (key: string) => {
|
|
switch (key) {
|
|
case 'users': // Fakedoor feature added via hooks when user management is disabled on cloud
|
|
case 'logging':
|
|
router.push({ name: VIEWS.FAKE_DOOR, params: { featureId: key } }).catch(() => {});
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
};
|
|
|
|
const sidebarMenuItems = computed<IMenuItem[]>(() => {
|
|
const menuItems: IMenuItem[] = [
|
|
{
|
|
id: 'settings-usage-and-plan',
|
|
icon: 'chart-bar',
|
|
label: i18n.baseText('settings.usageAndPlan.title'),
|
|
position: 'top',
|
|
available: canUserAccessRouteByName(VIEWS.USAGE),
|
|
route: { to: { name: VIEWS.USAGE } },
|
|
},
|
|
{
|
|
id: 'settings-personal',
|
|
icon: 'user-circle',
|
|
label: i18n.baseText('settings.personal'),
|
|
position: 'top',
|
|
available: canUserAccessRouteByName(VIEWS.PERSONAL_SETTINGS),
|
|
route: { to: { name: VIEWS.PERSONAL_SETTINGS } },
|
|
},
|
|
{
|
|
id: 'settings-users',
|
|
icon: 'user-friends',
|
|
label: i18n.baseText('settings.users'),
|
|
position: 'top',
|
|
available: canUserAccessRouteByName(VIEWS.USERS_SETTINGS),
|
|
route: { to: { name: VIEWS.USERS_SETTINGS } },
|
|
},
|
|
{
|
|
id: 'settings-api',
|
|
icon: 'plug',
|
|
label: i18n.baseText('settings.n8napi'),
|
|
position: 'top',
|
|
available: settingsStore.isPublicApiEnabled && canUserAccessRouteByName(VIEWS.API_SETTINGS),
|
|
route: { to: { name: VIEWS.API_SETTINGS } },
|
|
},
|
|
{
|
|
id: 'settings-external-secrets',
|
|
icon: 'vault',
|
|
label: i18n.baseText('settings.externalSecrets.title'),
|
|
position: 'top',
|
|
available: canUserAccessRouteByName(VIEWS.EXTERNAL_SECRETS_SETTINGS),
|
|
route: { to: { name: VIEWS.EXTERNAL_SECRETS_SETTINGS } },
|
|
},
|
|
|
|
{
|
|
id: 'settings-source-control',
|
|
icon: 'code-branch',
|
|
label: i18n.baseText('settings.sourceControl.title'),
|
|
position: 'top',
|
|
available: canUserAccessRouteByName(VIEWS.SOURCE_CONTROL),
|
|
route: { to: { name: VIEWS.SOURCE_CONTROL } },
|
|
},
|
|
{
|
|
id: 'settings-sso',
|
|
icon: 'user-lock',
|
|
label: i18n.baseText('settings.sso'),
|
|
position: 'top',
|
|
available: canUserAccessRouteByName(VIEWS.SSO_SETTINGS),
|
|
route: { to: { name: VIEWS.SSO_SETTINGS } },
|
|
},
|
|
{
|
|
id: 'settings-ldap',
|
|
icon: 'network-wired',
|
|
label: i18n.baseText('settings.ldap'),
|
|
position: 'top',
|
|
available: canUserAccessRouteByName(VIEWS.LDAP_SETTINGS),
|
|
route: { to: { name: VIEWS.LDAP_SETTINGS } },
|
|
},
|
|
{
|
|
id: 'settings-workersview',
|
|
icon: 'project-diagram',
|
|
label: i18n.baseText('mainSidebar.workersView'),
|
|
position: 'top',
|
|
available:
|
|
settingsStore.isQueueModeEnabled &&
|
|
hasPermission(['rbac'], { rbac: { scope: 'workersView:manage' } }),
|
|
route: { to: { name: VIEWS.WORKER_VIEW } },
|
|
},
|
|
];
|
|
|
|
for (const item of settingsFakeDoorFeatures.value) {
|
|
if (item.uiLocations.includes('settings')) {
|
|
menuItems.push({
|
|
id: item.id,
|
|
icon: item.icon ?? 'question',
|
|
label: i18n.baseText(item.featureName as BaseTextKey),
|
|
position: 'top',
|
|
available: true,
|
|
activateOnRoutePaths: [`/settings/coming-soon/${item.id}`],
|
|
});
|
|
}
|
|
}
|
|
|
|
menuItems.push({
|
|
id: 'settings-log-streaming',
|
|
icon: 'sign-in-alt',
|
|
label: i18n.baseText('settings.log-streaming'),
|
|
position: 'top',
|
|
available: canUserAccessRouteByName(VIEWS.LOG_STREAMING_SETTINGS),
|
|
route: { to: { name: VIEWS.LOG_STREAMING_SETTINGS } },
|
|
});
|
|
|
|
menuItems.push({
|
|
id: 'settings-community-nodes',
|
|
icon: 'cube',
|
|
label: i18n.baseText('settings.communityNodes'),
|
|
position: 'top',
|
|
available: canUserAccessRouteByName(VIEWS.COMMUNITY_NODES),
|
|
route: { to: { name: VIEWS.COMMUNITY_NODES } },
|
|
});
|
|
|
|
return menuItems;
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<div :class="$style.container">
|
|
<n8n-menu :items="sidebarMenuItems" @select="handleSelect">
|
|
<template #header>
|
|
<div :class="$style.returnButton" data-test-id="settings-back" @click="emit('return')">
|
|
<i class="mr-xs">
|
|
<font-awesome-icon icon="arrow-left" />
|
|
</i>
|
|
<n8n-heading size="large" :bold="true">{{ i18n.baseText('settings') }}</n8n-heading>
|
|
</div>
|
|
</template>
|
|
<template #menuSuffix>
|
|
<div :class="$style.versionContainer">
|
|
<n8n-link size="small" @click="uiStore.openModal(ABOUT_MODAL_KEY)">
|
|
{{ i18n.baseText('settings.version') }} {{ rootStore.versionCli }}
|
|
</n8n-link>
|
|
</div>
|
|
</template>
|
|
</n8n-menu>
|
|
</div>
|
|
</template>
|
|
|
|
<style lang="scss" module>
|
|
.container {
|
|
min-width: $sidebar-expanded-width;
|
|
height: 100%;
|
|
background-color: var(--color-background-xlight);
|
|
border-right: var(--border-base);
|
|
position: relative;
|
|
overflow: auto;
|
|
}
|
|
|
|
.returnButton {
|
|
padding: var(--spacing-s) var(--spacing-l);
|
|
cursor: pointer;
|
|
&:hover {
|
|
color: var(--color-primary);
|
|
}
|
|
}
|
|
|
|
.versionContainer {
|
|
padding: var(--spacing-xs) var(--spacing-l);
|
|
}
|
|
|
|
@media screen and (max-height: 420px) {
|
|
.versionContainer {
|
|
display: none;
|
|
}
|
|
}
|
|
</style>
|