2017-07-23 18:42:08 +00:00
|
|
|
<template>
|
|
|
|
<div class="button-bar">
|
|
|
|
<div class="button-bar__inner button-bar__inner--top">
|
|
|
|
<div class="button-bar__button" :class="{ 'button-bar__button--on': showNavigationBar }" @click="toggleNavigationBar()">
|
|
|
|
<icon-navigation-bar></icon-navigation-bar>
|
|
|
|
</div>
|
|
|
|
<div class="button-bar__button" :class="{ 'button-bar__button--on': showSidePreview }" @click="toggleSidePreview()">
|
|
|
|
<icon-side-preview></icon-side-preview>
|
|
|
|
</div>
|
2017-07-25 08:19:39 +00:00
|
|
|
<div class="button-bar__button" @click="toggleEditor(false)">
|
|
|
|
<icon-eye></icon-eye>
|
|
|
|
</div>
|
2017-07-23 18:42:08 +00:00
|
|
|
</div>
|
|
|
|
<div class="button-bar__inner button-bar__inner--bottom">
|
|
|
|
<div class="button-bar__button" :class="{ 'button-bar__button--on': showStatusBar }" @click="toggleStatusBar()">
|
|
|
|
<icon-status-bar></icon-status-bar>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import { mapState, mapActions } from 'vuex';
|
|
|
|
|
|
|
|
export default {
|
|
|
|
computed: mapState('layout', [
|
|
|
|
'showNavigationBar',
|
|
|
|
'showEditor',
|
|
|
|
'showSidePreview',
|
|
|
|
'showSideBar',
|
|
|
|
'showStatusBar',
|
|
|
|
]),
|
|
|
|
methods: mapActions('layout', [
|
|
|
|
'toggleNavigationBar',
|
|
|
|
'toggleEditor',
|
|
|
|
'toggleSidePreview',
|
|
|
|
'toggleStatusBar',
|
|
|
|
]),
|
|
|
|
};
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|
|
<style lang="scss">
|
|
|
|
.button-bar {
|
|
|
|
position: absolute;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.button-bar__inner {
|
|
|
|
position: absolute;
|
|
|
|
}
|
|
|
|
|
|
|
|
.button-bar__inner--bottom {
|
|
|
|
bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.button-bar__button {
|
|
|
|
cursor: pointer;
|
|
|
|
color: rgba(0, 0, 0, 0.2);
|
|
|
|
width: 26px;
|
|
|
|
height: 26px;
|
|
|
|
padding: 2px;
|
|
|
|
border-radius: 3px;
|
|
|
|
margin: 3px 0;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
color: rgba(0, 0, 0, 0.4);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.button-bar__button--on {
|
|
|
|
color: rgba(0, 0, 0, 0.4);
|
|
|
|
}
|
|
|
|
</style>
|