mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
193 lines
3.8 KiB
Vue
193 lines
3.8 KiB
Vue
|
<template>
|
||
|
<div :class="$style.container">
|
||
|
<div :class="$style.back" v-if="scrollPosition > 0" @click="scrollLeft">
|
||
|
<n8n-icon icon="chevron-left" size="small" />
|
||
|
</div>
|
||
|
<div :class="$style.next" v-if="canScrollRight" @click="scrollRight">
|
||
|
<n8n-icon icon="chevron-right" size="small" />
|
||
|
</div>
|
||
|
<div ref="tabs" :class="$style.tabs">
|
||
|
<div v-for="option in options" :key="option.value" :class="{ [$style.alignRight]: option.align === 'right' }">
|
||
|
<a
|
||
|
v-if="option.href"
|
||
|
target="_blank"
|
||
|
:href="option.href"
|
||
|
:class="[$style.link, $style.tab]"
|
||
|
@click="handleTabClick"
|
||
|
>
|
||
|
<div>
|
||
|
{{ option.label }}
|
||
|
<span :class="$style.external"><n8n-icon icon="external-link-alt" size="small" /></span>
|
||
|
</div>
|
||
|
</a>
|
||
|
|
||
|
<div
|
||
|
v-else
|
||
|
:class="{ [$style.tab]: true, [$style.activeTab]: value === option.value }"
|
||
|
@click="() => handleTabClick(option.value)"
|
||
|
>
|
||
|
<n8n-icon v-if="option.icon" :icon="option.icon" size="medium" />
|
||
|
<span v-if="option.label">{{ option.label }}</span>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script lang="ts">
|
||
|
import Vue from 'vue';
|
||
|
import N8nIcon from '../N8nIcon';
|
||
|
|
||
|
export default Vue.extend({
|
||
|
name: 'N8nTabs',
|
||
|
components: {
|
||
|
N8nIcon,
|
||
|
},
|
||
|
mounted() {
|
||
|
const container = this.$refs.tabs;
|
||
|
if (container) {
|
||
|
container.addEventListener('scroll', (e) => {
|
||
|
const width = container.clientWidth;
|
||
|
const scrollWidth = container.scrollWidth;
|
||
|
this.scrollPosition = e.srcElement.scrollLeft;
|
||
|
this.canScrollRight = scrollWidth - width > this.scrollPosition;
|
||
|
});
|
||
|
|
||
|
this.resizeObserver = new ResizeObserver(() => {
|
||
|
const width = container.clientWidth;
|
||
|
const scrollWidth = container.scrollWidth;
|
||
|
this.canScrollRight = scrollWidth - width > this.scrollPosition;
|
||
|
});
|
||
|
this.resizeObserver.observe(container);
|
||
|
|
||
|
const width = container.clientWidth;
|
||
|
const scrollWidth = container.scrollWidth;
|
||
|
this.canScrollRight = scrollWidth - width > this.scrollPosition;
|
||
|
}
|
||
|
},
|
||
|
destroyed() {
|
||
|
this.resizeObserver.disconnect();
|
||
|
},
|
||
|
data() {
|
||
|
return {
|
||
|
scrollPosition: 0,
|
||
|
canScrollRight: false,
|
||
|
resizeObserver: null,
|
||
|
};
|
||
|
},
|
||
|
props: {
|
||
|
value: {
|
||
|
},
|
||
|
options: {
|
||
|
},
|
||
|
},
|
||
|
methods: {
|
||
|
handleTabClick(tab: string) {
|
||
|
this.$emit('input', tab);
|
||
|
},
|
||
|
scrollLeft() {
|
||
|
this.scroll(-50);
|
||
|
},
|
||
|
scrollRight() {
|
||
|
this.scroll(50);
|
||
|
},
|
||
|
scroll(left: number) {
|
||
|
const container = this.$refs.tabs;
|
||
|
if (container) {
|
||
|
container.scrollBy({ left, top: 0, behavior: 'smooth' });
|
||
|
}
|
||
|
},
|
||
|
},
|
||
|
});
|
||
|
</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;
|
||
|
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 {
|
||
|
display: block;
|
||
|
padding: 0 var(--spacing-s) var(--spacing-2xs) var(--spacing-s);
|
||
|
padding-bottom: var(--spacing-2xs);
|
||
|
font-size: var(--font-size-s);
|
||
|
cursor: pointer;
|
||
|
white-space: nowrap;
|
||
|
&:hover {
|
||
|
color: var(--color-primary);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.activeTab {
|
||
|
color: var(--color-primary);
|
||
|
border-bottom: var(--color-primary) 2px solid;
|
||
|
}
|
||
|
|
||
|
.alignRight {
|
||
|
margin-left: auto;
|
||
|
}
|
||
|
|
||
|
.link {
|
||
|
cursor: pointer;
|
||
|
color: var(--color-text-base);
|
||
|
|
||
|
&:hover {
|
||
|
color: var(--color-primary);
|
||
|
|
||
|
.external {
|
||
|
display: inline-block;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.external {
|
||
|
display: none;
|
||
|
}
|
||
|
|
||
|
.button {
|
||
|
position: absolute;
|
||
|
background-color: var(--color-background-light);
|
||
|
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>
|