mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
223 lines
5.3 KiB
Vue
223 lines
5.3 KiB
Vue
<template>
|
|
<div :class="['n8n-tabs', $style.container]">
|
|
<div v-if="scrollPosition > 0" :class="$style.back" @click="scrollLeft">
|
|
<N8nIcon icon="chevron-left" size="small" />
|
|
</div>
|
|
<div v-if="canScrollRight" :class="$style.next" @click="scrollRight">
|
|
<N8nIcon icon="chevron-right" size="small" />
|
|
</div>
|
|
<div ref="tabs" :class="$style.tabs">
|
|
<div
|
|
v-for="option in options"
|
|
:id="option.value"
|
|
:key="option.value"
|
|
:class="{ [$style.alignRight]: option.align === 'right' }"
|
|
>
|
|
<n8n-tooltip :disabled="!option.tooltip" placement="bottom">
|
|
<template #content>
|
|
<div @click="handleTooltipClick(option.value, $event)" v-html="option.tooltip" />
|
|
</template>
|
|
<a
|
|
v-if="option.href"
|
|
target="_blank"
|
|
:href="option.href"
|
|
:class="[$style.link, $style.tab]"
|
|
@click="() => handleTabClick(option.value)"
|
|
>
|
|
<div>
|
|
{{ option.label }}
|
|
<span :class="$style.external">
|
|
<N8nIcon icon="external-link-alt" size="xsmall" />
|
|
</span>
|
|
</div>
|
|
</a>
|
|
<RouterLink
|
|
v-else-if="option.to"
|
|
:to="option.to"
|
|
:class="[$style.tab, { [$style.activeTab]: modelValue === option.value }]"
|
|
>
|
|
<N8nIcon v-if="option.icon" :icon="option.icon" size="medium" />
|
|
<span v-if="option.label">{{ option.label }}</span>
|
|
</RouterLink>
|
|
<div
|
|
v-else
|
|
:class="{ [$style.tab]: true, [$style.activeTab]: modelValue === option.value }"
|
|
:data-test-id="`tab-${option.value}`"
|
|
@click="() => handleTabClick(option.value)"
|
|
>
|
|
<N8nIcon v-if="option.icon" :icon="option.icon" size="small" />
|
|
<span v-if="option.label">{{ option.label }}</span>
|
|
</div>
|
|
</n8n-tooltip>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { onMounted, onUnmounted, ref } from 'vue';
|
|
import N8nIcon from '../N8nIcon';
|
|
import type { RouteLocationRaw } from 'vue-router';
|
|
|
|
interface TabOptions {
|
|
value: string;
|
|
label?: string;
|
|
icon?: string;
|
|
href?: string;
|
|
tooltip?: string;
|
|
align?: 'left' | 'right';
|
|
to?: RouteLocationRaw;
|
|
}
|
|
|
|
interface TabsProps {
|
|
modelValue?: string;
|
|
options?: TabOptions[];
|
|
}
|
|
|
|
withDefaults(defineProps<TabsProps>(), {
|
|
options: () => [],
|
|
});
|
|
|
|
const scrollPosition = ref(0);
|
|
const canScrollRight = ref(false);
|
|
const tabs = ref<Element | undefined>(undefined);
|
|
let resizeObserver: ResizeObserver | null = null;
|
|
|
|
onMounted(() => {
|
|
const container = tabs.value as Element;
|
|
if (container) {
|
|
container.addEventListener('scroll', (event: Event) => {
|
|
const width = container.clientWidth;
|
|
const scrollWidth = container.scrollWidth;
|
|
scrollPosition.value = (event.target as Element).scrollLeft;
|
|
canScrollRight.value = scrollWidth - width > scrollPosition.value;
|
|
});
|
|
|
|
resizeObserver = new ResizeObserver(() => {
|
|
const width = container.clientWidth;
|
|
const scrollWidth = container.scrollWidth;
|
|
canScrollRight.value = scrollWidth - width > scrollPosition.value;
|
|
});
|
|
resizeObserver.observe(container);
|
|
|
|
const width = container.clientWidth;
|
|
const scrollWidth = container.scrollWidth;
|
|
canScrollRight.value = scrollWidth - width > scrollPosition.value;
|
|
}
|
|
});
|
|
|
|
onUnmounted(() => {
|
|
resizeObserver?.disconnect();
|
|
});
|
|
|
|
const $emit = defineEmits<{
|
|
(event: 'tooltipClick', tab: string, e: MouseEvent): void;
|
|
(event: 'update:modelValue', tab: string);
|
|
}>();
|
|
|
|
const handleTooltipClick = (tab: string, event: MouseEvent) => $emit('tooltipClick', tab, event);
|
|
const handleTabClick = (tab: string) => $emit('update:modelValue', tab);
|
|
|
|
const scroll = (left: number) => {
|
|
const container = tabs.value;
|
|
if (container) {
|
|
container.scrollBy({ left, top: 0, behavior: 'smooth' });
|
|
}
|
|
};
|
|
const scrollLeft = () => scroll(-50);
|
|
const scrollRight = () => scroll(50);
|
|
</script>
|
|
|
|
<style lang="scss" module>
|
|
.container {
|
|
position: relative;
|
|
height: 24px;
|
|
min-height: 24px;
|
|
width: 100%;
|
|
}
|
|
|
|
.tabs {
|
|
color: var(--color-text-base);
|
|
font-weight: var(--font-weight-bold);
|
|
display: flex;
|
|
align-items: center;
|
|
width: 100%;
|
|
position: absolute;
|
|
overflow-x: scroll;
|
|
|
|
/* Hide scrollbar for Chrome, Safari and Opera */
|
|
&::-webkit-scrollbar {
|
|
display: none;
|
|
}
|
|
|
|
/* Hide scrollbar for IE, Edge and Firefox */
|
|
-ms-overflow-style: none; /* IE and Edge */
|
|
scrollbar-width: none; /* Firefox */
|
|
}
|
|
|
|
.tab {
|
|
--active-tab-border-width: 2px;
|
|
display: block;
|
|
padding: 0 var(--spacing-s);
|
|
padding-bottom: calc(var(--spacing-2xs) + var(--active-tab-border-width));
|
|
font-size: var(--font-size-s);
|
|
cursor: pointer;
|
|
white-space: nowrap;
|
|
color: var(--color-text-base);
|
|
&:hover {
|
|
color: var(--color-primary);
|
|
}
|
|
|
|
span + span {
|
|
margin-left: var(--spacing-4xs);
|
|
}
|
|
}
|
|
|
|
.activeTab {
|
|
color: var(--color-primary);
|
|
padding-bottom: var(--spacing-2xs);
|
|
border-bottom: var(--color-primary) var(--active-tab-border-width) solid;
|
|
}
|
|
|
|
.alignRight:not(.alignRight + .alignRight) {
|
|
margin-left: auto;
|
|
}
|
|
|
|
.link {
|
|
cursor: pointer;
|
|
color: var(--color-text-base);
|
|
|
|
&:hover {
|
|
color: var(--color-primary);
|
|
}
|
|
}
|
|
|
|
.external {
|
|
display: inline-block;
|
|
margin-left: var(--spacing-5xs);
|
|
}
|
|
|
|
.button {
|
|
position: absolute;
|
|
background-color: var(--color-background-base);
|
|
z-index: 1;
|
|
height: 24px;
|
|
width: 10px;
|
|
display: flex;
|
|
align-items: center;
|
|
font-weight: var(--font-weight-bold);
|
|
}
|
|
|
|
.back {
|
|
composes: tab;
|
|
composes: button;
|
|
left: 0;
|
|
}
|
|
|
|
.next {
|
|
composes: tab;
|
|
composes: button;
|
|
right: 0;
|
|
}
|
|
</style>
|