Files
hoppscotch/packages/hoppscotch-app/components/smart/Tabs.vue
2021-12-31 20:05:39 +05:30

206 lines
4.2 KiB
Vue

<template>
<div
class="flex flex-1 h-full flex-nowrap"
:class="{ 'flex-col h-auto': !vertical }"
>
<div
class="relative tabs hide-scrollbar"
:class="[{ 'border-r border-dividerLight': vertical }, styles]"
>
<div class="flex flex-1">
<div
class="flex justify-between flex-1"
:class="{ 'flex-col': vertical }"
>
<div class="flex" :class="{ 'flex-col space-y-2 p-2': vertical }">
<button
v-for="(tab, index) in tabs"
:key="`tab-${index}`"
class="tab"
:class="[{ active: tab.active }, { vertical: vertical }]"
:aria-label="tab.label"
@keyup.enter="selectTab(tab)"
@click="selectTab(tab)"
>
<SmartIcon v-if="tab.icon" class="svg-icons" :name="tab.icon" />
<tippy
v-if="vertical && tab.label"
placement="left"
theme="tooltip"
:content="tab.label"
/>
<span v-else-if="tab.label">{{ tab.label }}</span>
<span v-if="tab.info && tab.info !== 'null'" class="tab-info">
{{ tab.info }}
</span>
<span
v-if="tab.indicator"
class="w-1 h-1 ml-2 rounded-full bg-accentLight"
></span>
</button>
</div>
<div class="flex items-center justify-center">
<slot name="actions"></slot>
</div>
</div>
</div>
</div>
<div
class="w-full h-full contents"
:class="{
'!flex flex-col flex-1 overflow-y-auto hide-scrollbar': vertical,
}"
>
<slot></slot>
</div>
</div>
</template>
<script>
import { defineComponent } from "@nuxtjs/composition-api"
export default defineComponent({
props: {
styles: {
type: String,
default: "",
},
vertical: {
type: Boolean,
default: false,
},
},
data() {
return {
tabs: [],
}
},
updated() {
const candidates = this.$children.filter(
(child) => child.$options.name === "SmartTab"
)
if (candidates.length !== this.tabs.length) {
this.tabs = candidates
}
},
mounted() {
this.tabs = this.$children.filter(
(child) => child.$options.name === "SmartTab"
)
},
methods: {
selectTab({ id }) {
this.tabs.forEach((tab) => {
tab.active = tab.id === id
})
this.$emit("tab-changed", id)
},
},
})
</script>
<style scoped lang="scss">
.tabs {
@apply flex;
@apply whitespace-nowrap;
@apply overflow-auto;
@apply flex-shrink-0;
// &::after {
// @apply absolute;
// @apply inset-x-0;
// @apply bottom-0;
// @apply bg-dividerLight;
// @apply z-1;
// @apply h-0.5;
// content: "";
// }
.tab {
@apply relative;
@apply flex;
@apply flex-shrink-0;
@apply items-center;
@apply justify-center;
@apply py-2 px-4;
@apply text-secondary;
@apply font-semibold;
@apply cursor-pointer;
@apply hover:text-secondaryDark;
@apply focus:outline-none;
@apply focus-visible:text-secondaryDark;
.tab-info {
@apply inline-flex;
@apply items-center;
@apply justify-center;
@apply w-5;
@apply h-4;
@apply ml-2;
@apply text-8px;
@apply border border-divider;
@apply rounded;
@apply text-secondaryLight;
}
&::after {
@apply absolute;
@apply left-4;
@apply right-4;
@apply bottom-0;
@apply bg-transparent;
@apply z-2;
@apply h-0.5;
content: "";
}
&:focus::after {
@apply bg-divider;
}
&.active {
@apply text-secondaryDark;
.tab-info {
@apply text-secondary;
@apply border-dividerDark;
}
&::after {
@apply bg-accent;
}
}
&.vertical {
@apply p-2;
@apply rounded;
&:focus::after {
@apply hidden;
}
&.active {
@apply text-accent;
.tab-info {
@apply text-secondary;
@apply border-dividerDark;
}
&::after {
@apply hidden;
}
}
}
}
}
</style>