162 lines
3.0 KiB
Vue
162 lines
3.0 KiB
Vue
<style type="text/css" scoped>
|
|
.slide-container {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 55%;
|
|
bottom: 0;
|
|
z-index: 1020;
|
|
overflow: hidden;
|
|
height: 100%;
|
|
|
|
color: var(--text_color);
|
|
background-color: var(--background_color);
|
|
}
|
|
.slide-content {
|
|
box-sizing: border-box;
|
|
/*padding: 1em 1.5em;*/
|
|
height: calc(100% - 43px);
|
|
border-right: 1px solid var(--menu-border);
|
|
/*background-color: var(--background_color);*/
|
|
overflow-x: scroll;
|
|
}
|
|
.slide-shadow {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
color: red;
|
|
/*background-color: rgba(0,0,0,0.5);*/
|
|
/*background: linear-gradient(90deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 55%);*/
|
|
z-index: 1019;
|
|
overflow: hidden;
|
|
/*cursor: pointer;*/
|
|
}
|
|
|
|
.slide-shadow.full-shadow {
|
|
right: 0;
|
|
background-color: rgba(0,0,0,0.3);
|
|
}
|
|
|
|
.note-menu {
|
|
height: 43px;
|
|
}
|
|
|
|
|
|
@media only screen and (max-width: 740px) {
|
|
.slide-shadow {
|
|
background-color: rgba(0,0,0,0.5);
|
|
}
|
|
.slide-content {
|
|
height: calc(100% - 55px);
|
|
}
|
|
.slide-container {
|
|
left: 0;
|
|
right: 0;
|
|
top: 0;
|
|
bottom: 0;
|
|
}
|
|
.note-menu {
|
|
height: 55px;
|
|
padding: 0 30px;
|
|
}
|
|
|
|
}
|
|
|
|
|
|
.fade-enter-active {
|
|
animation: fade-in .3s;
|
|
}
|
|
.fade-leave-active {
|
|
animation: fade-in .1s reverse;
|
|
}
|
|
@keyframes fade-in {
|
|
0% {
|
|
opacity: 0;
|
|
}
|
|
100% {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
</style>
|
|
|
|
<template>
|
|
<transition name="fade">
|
|
<div>
|
|
|
|
<div class="slide-container" :style="{ 'background-color':bgColor, 'color':textColor}">
|
|
|
|
<!-- content of the editor -->
|
|
<div class="slide-content">
|
|
<slot></slot>
|
|
</div>
|
|
|
|
<!-- close menu on bottom -->
|
|
<div class="note-menu">
|
|
<nm-button more-class="right" icon="close" text="close" :show-text="true" v-on:click.native="close" />
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="slide-shadow" :class="{'full-shadow':fullShadow}" v-on:click="close"></div>
|
|
|
|
</div>
|
|
</transition>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'SideSlideMenu',
|
|
props: [ 'name', 'styleObject', 'fullShadow', 'skipHistory' ],
|
|
components: {
|
|
'nm-button':require('@/components/NoteMenuButtonComponent.vue').default
|
|
},
|
|
data () {
|
|
return {
|
|
items: [],
|
|
bgColor: null,
|
|
textColor: null,
|
|
}
|
|
},
|
|
beforeMount(){
|
|
|
|
//Other panels will tell this one to close
|
|
this.$bus.$on('destroy_all_other_side_panels', (name) => {
|
|
if(this.name != name){
|
|
this.close()
|
|
}
|
|
})
|
|
},
|
|
beforeDestroy(){
|
|
},
|
|
mounted(){
|
|
|
|
//If note style object is set, use that on the slide menu
|
|
if(this.styleObject && this.styleObject.noteText){
|
|
this.textColor = this.styleObject.noteText
|
|
}
|
|
|
|
if(this.styleObject && this.styleObject.noteBackground){
|
|
this.bgColor = this.styleObject.noteBackground
|
|
}
|
|
|
|
|
|
//Close all other panels that are not this one
|
|
this.$nextTick( () => {
|
|
// this.$bus.$emit('destroy_all_other_side_panels', this.name)
|
|
})
|
|
},
|
|
methods: {
|
|
close() {
|
|
if(this.skipHistory != true){
|
|
this.$router.go(-1)
|
|
}
|
|
|
|
this.$emit('close'); //Close menu via event
|
|
},
|
|
}
|
|
}
|
|
</script>
|