123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255 |
- <template>
- <header class="main-header">
- <b-navbar class="main-navbar">
- <div class="main-navbar-brand">
- <b-dropdown variant="link" no-caret>
- <template #button-content>
- <svg class="burger-icon" viewBox="0 0 16 16">
- <path v-for="n in [2, 8, 14]" :key="n" :d="`M 2,${n} h12`" />
- </svg>
- <span class="sr-only">Menu</span>
- </template>
- <b-dropdown-item
- v-for="link in mainRoutes" :key="link.to"
- :to="link.to" class="d-tb-none" :class="'dropdown-item-' + link.variant"
- >
- {{ $t('sections.' + link.to) }}
- </b-dropdown-item>
- <b-dropdown-item v-for="name in subRoutes" :key="name" :to="{ name }">
- {{ $t('sections.' + name) }}
- </b-dropdown-item>
- </b-dropdown>
- <b-navbar-brand :to="{ name: 'home' }">
- {{ $t('title') }}
- </b-navbar-brand>
- </div>
- <nav class="nav-list d-none d-tb-block">
- <ul>
- <li v-for="link in mainRoutes" :key="link.to">
- <b-button :to="{ name: link.to }" :active="$route.name === link.to" :variant="link.variant">
- {{ $t('sections.' + link.to) }}
- </b-button>
- </li>
- </ul>
- </nav>
- <b-button
- v-if="$route.name === 'library'"
- class=""
- :class="optionsVisible ? null : 'collapsed'"
- :aria-expanded="optionsVisible ? 'true' : 'false'"
- aria-controls="collapse-options"
- @click="optionsVisible = !optionsVisible"
- variant="outline-dark"
- >
- Options <span class="collapse-icon" :class="optionsVisible ? null : 'collapsed'">></span>
- </b-button>
- </b-navbar>
- <b-collapse id="collapse-options" v-model="optionsVisible">
- <router-view name="options" />
- </b-collapse>
- </header>
- </template>
- <script>
- export default {
- name: 'MainHeader',
- data () {
- return {
- mainRoutes: [
- { to: 'library', variant: 'dark' },
- { to: 'kit', variant: 'kit' },
- { to: 'gallery', variant: 'creation' }
- ],
- subRoutes: ['home', 'introduction', 'contact']
- }
- },
- computed: {
- optionsVisible: {
- get () { return this.$store.state.optionsVisible },
- set (value) {
- this.$store.commit('UPDATE_OPTIONS_VISIBILITY', value)
- }
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .main-header {
- width: 100%;
- border-bottom: $line;
- }
- .main-navbar {
- padding: $header-spacer-sm;
- font-size: $font-size-sm;
- justify-content: space-between;
- @include media-breakpoint-up($layout-bp) {
- height: $header-height;
- padding: 0 $header-spacer;
- }
- ::v-deep {
- .dropdown-toggle {
- padding: 0;
- border: 0;
- line-height: 1;
- padding: 0 .5rem;
- margin-left: -.5rem;
- @include media-breakpoint-up($size-bp) {
- padding: 0 .75rem;
- margin-left: -.75rem;
- }
- }
- .dropdown-menu {
- border: 0;
- .dropdown-item {
- padding: .25rem $header-spacer-sm;
- @include media-breakpoint-up($layout-bp) {
- padding: .25rem $header-spacer;
- }
- }
- @include media-breakpoint-down($size-bp-down) {
- width: 100vw;
- }
- @each $variant in 'dark', 'kit', 'creation' {
- .dropdown-item-#{$variant} {
- background-color: theme-color($variant);
- a:not(:hover):not(:focus) {
- color: if($variant == 'dark', $white, $black);
- }
- }
- }
- }
- }
- .burger-icon {
- width: 10px;
- height: 10px;
- display: block;
- path {
- stroke: $black;
- stroke-width: 2px;
- stroke-linecap: round;
- }
- @include media-breakpoint-up(md) {
- width: 16px;
- height: 16px;
- path {
- stroke-width: 2.5px;
- }
- }
- }
- &-brand {
- display: flex;
- .navbar-brand {
- font-size: inherit;
- font-weight: $font-weight-bold;
- text-decoration: none;
- line-height: 1;
- padding: 0;
- @include media-breakpoint-up(md) {
- font-size: 1.3125rem;
- }
- }
- }
- .nav-list {
- ul {
- display: flex;
- padding: 0;
- margin: 0;
- list-style: none;
- }
- @include media-breakpoint-down(xs) {
- width: 100%;
- ul {
- flex-direction: column;
- width: 100%;
- }
- li {
- height: 22px;
- &:not(:last-child) {
- margin-bottom: 3px;
- }
- }
- a {
- height: 22px;
- width: 100%;
- text-align: left;
- }
- }
- @include media-breakpoint-up(sm) {
- ul {
- height: 26px;
- }
- li:not(:last-child) {
- margin-right: 7px;
- }
- }
- a:not(.active) {
- opacity: .25;
- }
- }
- .btn {
- font-size: inherit;
- @include media-breakpoint-up(md) {
- font-size: 1rem;
- }
- }
- }
- .collapse-icon {
- display: inline-block;
- transform: translate(0, 2px) rotate(270deg);
- line-height: 0;
- font-size: 1.2rem;
- font-weight: 200;
- &.collapsed {
- transform: translate(3px, 2px) rotate(90deg) ;
- }
- }
- // #collapse-options {
- // @include media-breakpoint-down(sm) {
- // position: absolute;
- // z-index: 11;
- // width: 100%;
- // border-bottom: $line;
- // }
- // }
- </style>
|