mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-05 18:23:48 +00:00
125 lines
2.8 KiB
Vue
125 lines
2.8 KiB
Vue
<template>
|
|
<div>
|
|
<div class="tab-wrapper">
|
|
<div
|
|
class="tab"
|
|
:class="{ active: tab.isActive }"
|
|
@click="selectTab(tab)"
|
|
v-for="(tab, i) in tabs"
|
|
:key="i"
|
|
>
|
|
<!--Icon-->
|
|
<mail-icon v-if="tab.icon === 'email'" class="tab-icon text-theme dark-text-theme" size="17" />
|
|
<link-icon v-if="tab.icon === 'link'" class="tab-icon text-theme dark-text-theme" size="17" />
|
|
<smile-icon v-if="tab.icon === 'emoji'" class="tab-icon text-theme dark-text-theme" size="17" />
|
|
<folder-icon v-if="tab.icon === 'folder'" class="tab-icon text-theme dark-text-theme" size="17" />
|
|
|
|
<!--Title-->
|
|
<b class="tab-title">
|
|
{{ tab.title }}
|
|
</b>
|
|
</div>
|
|
</div>
|
|
<slot></slot>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { LinkIcon, MailIcon, SmileIcon, FolderIcon } from 'vue-feather-icons'
|
|
|
|
export default {
|
|
name: 'TabWrapper',
|
|
components: {
|
|
LinkIcon,
|
|
MailIcon,
|
|
SmileIcon,
|
|
FolderIcon,
|
|
},
|
|
data() {
|
|
return {
|
|
tabs: [],
|
|
}
|
|
},
|
|
methods: {
|
|
selectTab(selectedTab) {
|
|
this.tabs.forEach((tab) => {
|
|
tab.isActive = tab.title == selectedTab.title
|
|
})
|
|
},
|
|
},
|
|
mounted() {
|
|
this.tabs = this.$children
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
@import '../../../sass/vuefilemanager/inapp-forms';
|
|
@import '../../../sass/vuefilemanager/forms';
|
|
|
|
.tab-wrapper {
|
|
display: flex;
|
|
justify-content: center;
|
|
margin-bottom: 20px;
|
|
cursor: pointer;
|
|
align-items: center;
|
|
background: white;
|
|
color: $text;
|
|
border-radius: 8px;
|
|
overflow: hidden;
|
|
border: 1px solid #e8e9eb;
|
|
|
|
.tab-title {
|
|
@include font-size(14);
|
|
}
|
|
|
|
.tab {
|
|
width: 100%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 8px;
|
|
|
|
&.active {
|
|
background: $light_background;
|
|
|
|
.tab-title {
|
|
color: $text;
|
|
}
|
|
}
|
|
}
|
|
|
|
.tab-icon {
|
|
margin-right: 10px;
|
|
|
|
path,
|
|
circle,
|
|
line,
|
|
polyline {
|
|
color: inherit !important;
|
|
}
|
|
}
|
|
}
|
|
|
|
.dark {
|
|
.tab-wrapper {
|
|
background: $dark_mode_foreground;
|
|
border-color: transparent;
|
|
|
|
.tab.active {
|
|
background: lighten($dark_mode_foreground, 7%);
|
|
|
|
.tab-title {
|
|
color: $dark_mode_text_primary;
|
|
}
|
|
}
|
|
}
|
|
|
|
.popup-wrapper {
|
|
.tab-wrapper {
|
|
background: lighten($dark_mode_foreground, 2%);
|
|
}
|
|
}
|
|
}
|
|
</style>
|