110 lines
2.8 KiB
Vue
110 lines
2.8 KiB
Vue
<template>
|
|
<div class="button-bar">
|
|
<div class="button-bar__inner button-bar__inner--top">
|
|
<button class="button-bar__button button" :class="{ 'button-bar__button--on': layoutSettings.showNavigationBar }" v-if="!light" @click="toggleNavigationBar()" v-title="'Toggle navigation bar'">
|
|
<icon-navigation-bar></icon-navigation-bar>
|
|
</button>
|
|
<button class="button-bar__button button" :class="{ 'button-bar__button--on': layoutSettings.showSidePreview }" tour-step-anchor="editor" @click="toggleSidePreview()" v-title="'Toggle side preview'">
|
|
<icon-side-preview></icon-side-preview>
|
|
</button>
|
|
<button class="button-bar__button button" @click="toggleEditor(false)" v-title="'Reader mode'">
|
|
<icon-eye></icon-eye>
|
|
</button>
|
|
</div>
|
|
<div class="button-bar__inner button-bar__inner--bottom">
|
|
<button class="button-bar__button button" :class="{ 'button-bar__button--on': layoutSettings.focusMode }" @click="toggleFocusMode()" v-title="'Toggle focus mode'">
|
|
<icon-target></icon-target>
|
|
</button>
|
|
<button class="button-bar__button button" :class="{ 'button-bar__button--on': layoutSettings.scrollSync }" @click="toggleScrollSync()" v-title="'Toggle scroll sync'">
|
|
<icon-scroll-sync></icon-scroll-sync>
|
|
</button>
|
|
<button class="button-bar__button button" :class="{ 'button-bar__button--on': layoutSettings.showStatusBar }" @click="toggleStatusBar()" v-title="'Toggle status bar'">
|
|
<icon-status-bar></icon-status-bar>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { mapState, mapGetters, mapActions } from 'vuex';
|
|
|
|
export default {
|
|
computed: {
|
|
...mapState([
|
|
'light',
|
|
]),
|
|
...mapGetters('data', [
|
|
'layoutSettings',
|
|
]),
|
|
},
|
|
methods: mapActions('data', [
|
|
'toggleNavigationBar',
|
|
'toggleEditor',
|
|
'toggleSidePreview',
|
|
'toggleStatusBar',
|
|
'toggleFocusMode',
|
|
'toggleScrollSync',
|
|
]),
|
|
};
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
@import 'common/variables.scss';
|
|
|
|
.button-bar {
|
|
position: absolute;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.button-bar__inner {
|
|
position: absolute;
|
|
}
|
|
|
|
.button-bar__inner--bottom {
|
|
bottom: 0;
|
|
}
|
|
|
|
.button-bar__button {
|
|
color: rgba(0, 0, 0, 0.2);
|
|
display: block;
|
|
width: 26px;
|
|
height: 26px;
|
|
padding: 2px;
|
|
margin: 3px 0;
|
|
|
|
.app--dark & {
|
|
color: rgba(255, 255, 255, 0.15);
|
|
}
|
|
|
|
&:active,
|
|
&:focus,
|
|
&:hover {
|
|
color: rgba(0, 0, 0, 0.2);
|
|
|
|
.app--dark & {
|
|
color: rgba(255, 255, 255, 0.15);
|
|
background-color: $navbar-hover-background;
|
|
}
|
|
}
|
|
}
|
|
|
|
.button-bar__button--on {
|
|
color: rgba(0, 0, 0, 0.4);
|
|
|
|
.app--dark & {
|
|
color: rgba(255, 255, 255, 0.4);
|
|
}
|
|
|
|
&:active,
|
|
&:focus,
|
|
&:hover {
|
|
color: rgba(0, 0, 0, 0.4);
|
|
|
|
.app--dark & {
|
|
color: rgba(255, 255, 255, 0.4);
|
|
}
|
|
}
|
|
}
|
|
</style>
|