Working sidebar on mobile
parent
14ff4f2b74
commit
fb4af0afe0
|
@ -2,7 +2,7 @@
|
||||||
<div :class="{ multiple, loading }">
|
<div :class="{ multiple, loading }">
|
||||||
<header>
|
<header>
|
||||||
<div>
|
<div>
|
||||||
<button aria-label="Toggle sidebar" title="Toggle sidebar" class="action">
|
<button @click="openSidebar" aria-label="Toggle sidebar" title="Toggle sidebar" class="action">
|
||||||
<i class="material-icons">menu</i>
|
<i class="material-icons">menu</i>
|
||||||
</button>
|
</button>
|
||||||
<img src="../assets/logo.svg" alt="File Manager">
|
<img src="../assets/logo.svg" alt="File Manager">
|
||||||
|
@ -227,6 +227,9 @@ export default {
|
||||||
this.loading = false
|
this.loading = false
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
openSidebar () {
|
||||||
|
this.$store.commit('showHover', 'sidebar')
|
||||||
|
},
|
||||||
openSearch () {
|
openSearch () {
|
||||||
this.$store.commit('showHover', 'search')
|
this.$store.commit('showHover', 'search')
|
||||||
},
|
},
|
||||||
|
|
|
@ -18,7 +18,7 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div v-for="plugin in plugins">
|
<div v-for="plugin in plugins">
|
||||||
<button v-for="action in plugin.sidebar" @click="action.click" :aria-label="action.name" :title="action.name" class="action">
|
<button v-for="action in plugin.sidebar" @click="action.click" :aria-label="action.name" :title="action.name" :key="action.name" class="action">
|
||||||
<i class="material-icons">{{ action.icon }}</i>
|
<i class="material-icons">{{ action.icon }}</i>
|
||||||
<span>{{ action.name }}</span>
|
<span>{{ action.name }}</span>
|
||||||
</button>
|
</button>
|
||||||
|
@ -48,11 +48,15 @@ export default {
|
||||||
name: 'sidebar',
|
name: 'sidebar',
|
||||||
data: () => {
|
data: () => {
|
||||||
return {
|
return {
|
||||||
plugins: [],
|
plugins: []
|
||||||
active: false
|
}
|
||||||
|
},
|
||||||
|
computed: {
|
||||||
|
...mapState(['user']),
|
||||||
|
active () {
|
||||||
|
return this.$store.state.show === 'sidebar'
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
computed: mapState(['user']),
|
|
||||||
mounted () {
|
mounted () {
|
||||||
if (window.plugins !== undefined || window.plugins !== null) {
|
if (window.plugins !== undefined || window.plugins !== null) {
|
||||||
this.plugins = window.plugins
|
this.plugins = window.plugins
|
||||||
|
|
|
@ -14,14 +14,17 @@
|
||||||
@media (max-width: 736px) {
|
@media (max-width: 736px) {
|
||||||
nav {
|
nav {
|
||||||
top: 0;
|
top: 0;
|
||||||
z-index: 9999;
|
z-index: 99999;
|
||||||
background: #fff;
|
background: #fff;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
width: 13em;
|
width: 13em;
|
||||||
box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
|
box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
|
||||||
transition: .2s ease-in-out left;
|
transition: .1s ease left;
|
||||||
left: -14em;
|
left: -14em;
|
||||||
}
|
}
|
||||||
|
nav.active {
|
||||||
|
left: 0;
|
||||||
|
}
|
||||||
header .search-button,
|
header .search-button,
|
||||||
header>div:first-child>.action {
|
header>div:first-child>.action {
|
||||||
display: inherit;
|
display: inherit;
|
||||||
|
|
Loading…
Reference in New Issue