2018-04-28 03:25:56 -05:00
|
|
|
<template>
|
|
|
|
<div class="mk-visibility-chooser">
|
|
|
|
<div class="backdrop" ref="backdrop" @click="close"></div>
|
|
|
|
<div class="popover" :class="{ compact }" ref="popover">
|
|
|
|
<div @click="choose('public')" :class="{ active: v == 'public' }">
|
2018-11-05 10:40:11 -06:00
|
|
|
<div><fa icon="globe"/></div>
|
2018-04-28 03:25:56 -05:00
|
|
|
<div>
|
2018-05-19 16:36:26 -05:00
|
|
|
<span>%i18n:@public%</span>
|
2018-04-28 03:25:56 -05:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div @click="choose('home')" :class="{ active: v == 'home' }">
|
2018-11-05 10:40:11 -06:00
|
|
|
<div><fa icon="home"/></div>
|
2018-04-28 03:25:56 -05:00
|
|
|
<div>
|
2018-05-19 16:36:26 -05:00
|
|
|
<span>%i18n:@home%</span>
|
|
|
|
<span>%i18n:@home-desc%</span>
|
2018-04-28 03:25:56 -05:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div @click="choose('followers')" :class="{ active: v == 'followers' }">
|
2018-11-05 10:40:11 -06:00
|
|
|
<div><fa icon="unlock"/></div>
|
2018-04-28 03:25:56 -05:00
|
|
|
<div>
|
2018-05-19 16:36:26 -05:00
|
|
|
<span>%i18n:@followers%</span>
|
|
|
|
<span>%i18n:@followers-desc%</span>
|
2018-04-28 03:25:56 -05:00
|
|
|
</div>
|
|
|
|
</div>
|
2018-04-28 14:30:51 -05:00
|
|
|
<div @click="choose('specified')" :class="{ active: v == 'specified' }">
|
2018-11-05 10:40:11 -06:00
|
|
|
<div><fa icon="envelope"/></div>
|
2018-04-28 03:25:56 -05:00
|
|
|
<div>
|
2018-05-19 16:36:26 -05:00
|
|
|
<span>%i18n:@specified%</span>
|
|
|
|
<span>%i18n:@specified-desc%</span>
|
2018-04-28 03:25:56 -05:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div @click="choose('private')" :class="{ active: v == 'private' }">
|
2018-11-05 10:40:11 -06:00
|
|
|
<div><fa icon="lock"/></div>
|
2018-04-28 03:25:56 -05:00
|
|
|
<div>
|
2018-05-19 16:36:26 -05:00
|
|
|
<span>%i18n:@private%</span>
|
2018-04-28 03:25:56 -05:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
|
|
|
import * as anime from 'animejs';
|
|
|
|
|
|
|
|
export default Vue.extend({
|
2018-08-17 05:35:05 -05:00
|
|
|
props: ['source', 'compact'],
|
2018-08-17 02:35:04 -05:00
|
|
|
data() {
|
|
|
|
return {
|
2018-09-07 07:13:15 -05:00
|
|
|
v: this.$store.state.settings.rememberNoteVisibility ? (this.$store.state.device.visibility || this.$store.state.settings.defaultNoteVisibility) : this.$store.state.settings.defaultNoteVisibility
|
2018-08-17 02:35:04 -05:00
|
|
|
}
|
|
|
|
},
|
2018-04-28 03:25:56 -05:00
|
|
|
mounted() {
|
|
|
|
this.$nextTick(() => {
|
|
|
|
const popover = this.$refs.popover as any;
|
|
|
|
|
|
|
|
const rect = this.source.getBoundingClientRect();
|
|
|
|
const width = popover.offsetWidth;
|
|
|
|
const height = popover.offsetHeight;
|
|
|
|
|
2018-04-28 18:51:17 -05:00
|
|
|
let left;
|
|
|
|
let top;
|
|
|
|
|
2018-04-28 03:25:56 -05:00
|
|
|
if (this.compact) {
|
|
|
|
const x = rect.left + window.pageXOffset + (this.source.offsetWidth / 2);
|
|
|
|
const y = rect.top + window.pageYOffset + (this.source.offsetHeight / 2);
|
2018-04-28 18:51:17 -05:00
|
|
|
left = (x - (width / 2));
|
|
|
|
top = (y - (height / 2));
|
2018-04-28 03:25:56 -05:00
|
|
|
} else {
|
|
|
|
const x = rect.left + window.pageXOffset + (this.source.offsetWidth / 2);
|
|
|
|
const y = rect.top + window.pageYOffset + this.source.offsetHeight;
|
2018-04-28 18:51:17 -05:00
|
|
|
left = (x - (width / 2));
|
|
|
|
top = y;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (left + width > window.innerWidth) {
|
|
|
|
left = window.innerWidth - width;
|
2018-04-28 03:25:56 -05:00
|
|
|
}
|
|
|
|
|
2018-04-28 18:51:17 -05:00
|
|
|
popover.style.left = left + 'px';
|
|
|
|
popover.style.top = top + 'px';
|
|
|
|
|
2018-04-28 03:25:56 -05:00
|
|
|
anime({
|
|
|
|
targets: this.$refs.backdrop,
|
|
|
|
opacity: 1,
|
|
|
|
duration: 100,
|
|
|
|
easing: 'linear'
|
|
|
|
});
|
|
|
|
|
|
|
|
anime({
|
|
|
|
targets: this.$refs.popover,
|
|
|
|
opacity: 1,
|
|
|
|
scale: [0.5, 1],
|
|
|
|
duration: 500
|
|
|
|
});
|
|
|
|
});
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
choose(visibility) {
|
2018-09-07 07:13:15 -05:00
|
|
|
if (this.$store.state.settings.rememberNoteVisibility) {
|
|
|
|
this.$store.commit('device/setVisibility', visibility);
|
|
|
|
}
|
2018-04-28 03:25:56 -05:00
|
|
|
this.$emit('chosen', visibility);
|
2018-09-15 07:53:04 -05:00
|
|
|
this.destroyDom();
|
2018-04-28 03:25:56 -05:00
|
|
|
},
|
|
|
|
close() {
|
|
|
|
(this.$refs.backdrop as any).style.pointerEvents = 'none';
|
|
|
|
anime({
|
|
|
|
targets: this.$refs.backdrop,
|
|
|
|
opacity: 0,
|
|
|
|
duration: 200,
|
|
|
|
easing: 'linear'
|
|
|
|
});
|
|
|
|
|
|
|
|
(this.$refs.popover as any).style.pointerEvents = 'none';
|
|
|
|
anime({
|
|
|
|
targets: this.$refs.popover,
|
|
|
|
opacity: 0,
|
|
|
|
scale: 0.5,
|
|
|
|
duration: 200,
|
|
|
|
easing: 'easeInBack',
|
2018-09-15 07:53:04 -05:00
|
|
|
complete: () => this.destroyDom()
|
2018-04-28 03:25:56 -05:00
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="stylus" scoped>
|
|
|
|
$border-color = rgba(27, 31, 35, 0.15)
|
|
|
|
|
2018-09-27 02:58:00 -05:00
|
|
|
.mk-visibility-chooser
|
2018-04-28 03:25:56 -05:00
|
|
|
position initial
|
|
|
|
|
|
|
|
> .backdrop
|
|
|
|
position fixed
|
|
|
|
top 0
|
|
|
|
left 0
|
|
|
|
z-index 10000
|
|
|
|
width 100%
|
|
|
|
height 100%
|
2018-09-27 02:58:00 -05:00
|
|
|
background var(--modalBackdrop)
|
2018-04-28 03:25:56 -05:00
|
|
|
opacity 0
|
|
|
|
|
|
|
|
> .popover
|
2018-09-26 11:32:04 -05:00
|
|
|
$bgcolor = var(--popupBg)
|
2018-04-28 03:25:56 -05:00
|
|
|
position absolute
|
|
|
|
z-index 10001
|
|
|
|
width 240px
|
|
|
|
padding 8px 0
|
|
|
|
background $bgcolor
|
|
|
|
border 1px solid $border-color
|
|
|
|
border-radius 4px
|
|
|
|
box-shadow 0 3px 12px rgba(27, 31, 35, 0.15)
|
|
|
|
transform scale(0.5)
|
|
|
|
opacity 0
|
|
|
|
|
|
|
|
$balloon-size = 10px
|
|
|
|
|
|
|
|
&:not(.compact)
|
|
|
|
margin-top $balloon-size
|
|
|
|
transform-origin center -($balloon-size)
|
|
|
|
|
|
|
|
&:before
|
|
|
|
content ""
|
|
|
|
display block
|
|
|
|
position absolute
|
|
|
|
top -($balloon-size * 2)
|
|
|
|
left s('calc(50% - %s)', $balloon-size)
|
|
|
|
border-top solid $balloon-size transparent
|
|
|
|
border-left solid $balloon-size transparent
|
|
|
|
border-right solid $balloon-size transparent
|
|
|
|
border-bottom solid $balloon-size $border-color
|
|
|
|
|
|
|
|
&:after
|
|
|
|
content ""
|
|
|
|
display block
|
|
|
|
position absolute
|
|
|
|
top -($balloon-size * 2) + 1.5px
|
|
|
|
left s('calc(50% - %s)', $balloon-size)
|
|
|
|
border-top solid $balloon-size transparent
|
|
|
|
border-left solid $balloon-size transparent
|
|
|
|
border-right solid $balloon-size transparent
|
|
|
|
border-bottom solid $balloon-size $bgcolor
|
|
|
|
|
|
|
|
> div
|
|
|
|
display flex
|
|
|
|
padding 8px 14px
|
|
|
|
font-size 12px
|
2018-09-27 02:58:00 -05:00
|
|
|
color var(--popupFg)
|
2018-04-28 03:25:56 -05:00
|
|
|
cursor pointer
|
|
|
|
|
|
|
|
&:hover
|
2018-09-27 02:58:00 -05:00
|
|
|
background var(--faceClearButtonHover)
|
2018-04-28 03:25:56 -05:00
|
|
|
|
|
|
|
&:active
|
2018-09-27 02:58:00 -05:00
|
|
|
background var(--faceClearButtonActive)
|
2018-04-28 03:25:56 -05:00
|
|
|
|
|
|
|
&.active
|
2018-09-26 06:19:35 -05:00
|
|
|
color var(--primaryForeground)
|
|
|
|
background var(--primary)
|
2018-04-28 03:25:56 -05:00
|
|
|
|
|
|
|
> *
|
|
|
|
user-select none
|
|
|
|
pointer-events none
|
|
|
|
|
|
|
|
> *:first-child
|
|
|
|
display flex
|
|
|
|
justify-content center
|
|
|
|
align-items center
|
|
|
|
margin-right 10px
|
2018-06-10 11:14:29 -05:00
|
|
|
width 16px
|
2018-04-28 03:25:56 -05:00
|
|
|
|
|
|
|
> *:last-child
|
|
|
|
flex 1 1 auto
|
|
|
|
|
|
|
|
> span:first-child
|
|
|
|
display block
|
|
|
|
font-weight bold
|
|
|
|
|
|
|
|
> span:last-child:not(:first-child)
|
|
|
|
opacity 0.6
|
|
|
|
</style>
|