2020-01-29 20:37:25 +01:00
|
|
|
<template>
|
2020-10-17 13:12:00 +02:00
|
|
|
<MkModal ref="modal" :src="src" @click="$refs.modal.close()" @closed="$emit('closed')">
|
|
|
|
<div class="gqyayizv _popup">
|
2020-02-05 13:29:19 +01:00
|
|
|
<button class="_button" @click="choose('public')" :class="{ active: v == 'public' }" data-index="1" key="public">
|
2020-10-17 13:12:00 +02:00
|
|
|
<div><Fa :icon="faGlobe"/></div>
|
2020-01-29 20:37:25 +01:00
|
|
|
<div>
|
2020-07-24 18:56:52 +02:00
|
|
|
<span>{{ $t('_visibility.public') }}</span>
|
|
|
|
<span>{{ $t('_visibility.publicDescription') }}</span>
|
2020-01-29 20:37:25 +01:00
|
|
|
</div>
|
|
|
|
</button>
|
2020-02-05 13:29:19 +01:00
|
|
|
<button class="_button" @click="choose('home')" :class="{ active: v == 'home' }" data-index="2" key="home">
|
2020-10-17 13:12:00 +02:00
|
|
|
<div><Fa :icon="faHome"/></div>
|
2020-01-29 20:37:25 +01:00
|
|
|
<div>
|
2020-07-24 18:56:52 +02:00
|
|
|
<span>{{ $t('_visibility.home') }}</span>
|
|
|
|
<span>{{ $t('_visibility.homeDescription') }}</span>
|
2020-01-29 20:37:25 +01:00
|
|
|
</div>
|
|
|
|
</button>
|
2020-02-05 13:29:19 +01:00
|
|
|
<button class="_button" @click="choose('followers')" :class="{ active: v == 'followers' }" data-index="3" key="followers">
|
2020-10-17 13:12:00 +02:00
|
|
|
<div><Fa :icon="faUnlock"/></div>
|
2020-01-29 20:37:25 +01:00
|
|
|
<div>
|
2020-07-24 18:56:52 +02:00
|
|
|
<span>{{ $t('_visibility.followers') }}</span>
|
|
|
|
<span>{{ $t('_visibility.followersDescription') }}</span>
|
2020-01-29 20:37:25 +01:00
|
|
|
</div>
|
|
|
|
</button>
|
2020-06-04 15:06:38 +02:00
|
|
|
<button :disabled="localOnly" class="_button" @click="choose('specified')" :class="{ active: v == 'specified' }" data-index="4" key="specified">
|
2020-10-17 13:12:00 +02:00
|
|
|
<div><Fa :icon="faEnvelope"/></div>
|
2020-01-29 20:37:25 +01:00
|
|
|
<div>
|
2020-07-24 18:56:52 +02:00
|
|
|
<span>{{ $t('_visibility.specified') }}</span>
|
|
|
|
<span>{{ $t('_visibility.specifiedDescription') }}</span>
|
2020-01-29 20:37:25 +01:00
|
|
|
</div>
|
|
|
|
</button>
|
2020-06-04 15:06:38 +02:00
|
|
|
<div class="divider"></div>
|
|
|
|
<button class="_button localOnly" @click="localOnly = !localOnly" :class="{ active: localOnly }" data-index="5" key="localOnly">
|
2020-10-17 13:12:00 +02:00
|
|
|
<div><Fa :icon="faBiohazard"/></div>
|
2020-06-04 15:06:38 +02:00
|
|
|
<div>
|
2020-07-24 18:56:52 +02:00
|
|
|
<span>{{ $t('_visibility.localOnly') }}</span>
|
|
|
|
<span>{{ $t('_visibility.localOnlyDescription') }}</span>
|
2020-06-04 15:06:38 +02:00
|
|
|
</div>
|
2020-10-17 13:12:00 +02:00
|
|
|
<div><Fa :icon="localOnly ? faToggleOn : faToggleOff" :key="localOnly"/></div>
|
2020-06-04 15:06:38 +02:00
|
|
|
</button>
|
2020-03-20 16:21:33 +01:00
|
|
|
</div>
|
2020-10-17 13:12:00 +02:00
|
|
|
</MkModal>
|
2020-01-29 20:37:25 +01:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
2020-10-17 13:12:00 +02:00
|
|
|
import { defineComponent } from 'vue';
|
2020-06-04 15:06:38 +02:00
|
|
|
import { faGlobe, faUnlock, faHome, faBiohazard, faToggleOn, faToggleOff } from '@fortawesome/free-solid-svg-icons';
|
2020-01-29 20:37:25 +01:00
|
|
|
import { faEnvelope } from '@fortawesome/free-regular-svg-icons';
|
2020-10-17 13:12:00 +02:00
|
|
|
import MkModal from '@/components/ui/modal.vue';
|
2020-01-29 20:37:25 +01:00
|
|
|
|
2020-10-17 13:12:00 +02:00
|
|
|
export default defineComponent({
|
2020-01-29 20:37:25 +01:00
|
|
|
components: {
|
2020-10-17 13:12:00 +02:00
|
|
|
MkModal,
|
2020-01-29 20:37:25 +01:00
|
|
|
},
|
|
|
|
props: {
|
|
|
|
currentVisibility: {
|
|
|
|
type: String,
|
2020-10-19 07:46:55 +02:00
|
|
|
required: true
|
2020-06-04 15:06:38 +02:00
|
|
|
},
|
|
|
|
currentLocalOnly: {
|
|
|
|
type: Boolean,
|
2020-10-19 07:46:55 +02:00
|
|
|
required: true
|
2020-10-17 13:12:00 +02:00
|
|
|
},
|
|
|
|
src: {
|
|
|
|
required: false
|
|
|
|
},
|
2020-01-29 20:37:25 +01:00
|
|
|
},
|
2020-10-17 13:12:00 +02:00
|
|
|
emits: ['change-visibility', 'change-local-only', 'closed'],
|
2020-01-29 20:37:25 +01:00
|
|
|
data() {
|
|
|
|
return {
|
2020-10-19 07:46:55 +02:00
|
|
|
v: this.currentVisibility,
|
2020-06-04 15:06:38 +02:00
|
|
|
localOnly: this.currentLocalOnly,
|
|
|
|
faGlobe, faUnlock, faEnvelope, faHome, faBiohazard, faToggleOn, faToggleOff
|
2020-01-29 20:37:25 +01:00
|
|
|
}
|
|
|
|
},
|
2020-10-17 13:12:00 +02:00
|
|
|
watch: {
|
|
|
|
localOnly() {
|
|
|
|
this.$emit('change-local-only', this.localOnly);
|
|
|
|
}
|
|
|
|
},
|
2020-01-29 20:37:25 +01:00
|
|
|
methods: {
|
|
|
|
choose(visibility) {
|
2020-10-17 13:12:00 +02:00
|
|
|
this.v = visibility;
|
|
|
|
this.$emit('change-visibility', visibility);
|
|
|
|
this.$nextTick(() => {
|
|
|
|
this.$refs.modal.close();
|
|
|
|
});
|
2020-01-29 20:37:25 +01:00
|
|
|
},
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.gqyayizv {
|
|
|
|
width: 240px;
|
|
|
|
padding: 8px 0;
|
|
|
|
|
2020-06-04 15:06:38 +02:00
|
|
|
> .divider {
|
|
|
|
margin: 8px 0;
|
|
|
|
border-top: solid 1px var(--divider);
|
|
|
|
}
|
|
|
|
|
2020-01-29 20:37:25 +01:00
|
|
|
> button {
|
|
|
|
display: flex;
|
|
|
|
padding: 8px 14px;
|
|
|
|
font-size: 12px;
|
|
|
|
text-align: left;
|
|
|
|
width: 100%;
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background: rgba(0, 0, 0, 0.05);
|
|
|
|
}
|
|
|
|
|
|
|
|
&:active {
|
|
|
|
background: rgba(0, 0, 0, 0.1);
|
|
|
|
}
|
|
|
|
|
|
|
|
&.active {
|
|
|
|
color: #fff;
|
|
|
|
background: var(--accent);
|
|
|
|
}
|
|
|
|
|
2020-06-04 15:06:38 +02:00
|
|
|
&.localOnly.active {
|
|
|
|
color: var(--accent);
|
|
|
|
background: inherit;
|
|
|
|
}
|
|
|
|
|
|
|
|
> *:nth-child(1) {
|
2020-01-29 20:37:25 +01:00
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
margin-right: 10px;
|
|
|
|
width: 16px;
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
|
|
|
margin-top: auto;
|
|
|
|
margin-bottom: auto;
|
|
|
|
}
|
|
|
|
|
2020-06-04 15:06:38 +02:00
|
|
|
> *:nth-child(2) {
|
2020-01-29 20:37:25 +01:00
|
|
|
flex: 1 1 auto;
|
2020-06-04 15:06:38 +02:00
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
2020-01-29 20:37:25 +01:00
|
|
|
|
|
|
|
> span:first-child {
|
|
|
|
display: block;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
> span:last-child:not(:first-child) {
|
|
|
|
opacity: 0.6;
|
|
|
|
}
|
|
|
|
}
|
2020-06-04 15:06:38 +02:00
|
|
|
|
|
|
|
> *:nth-child(3) {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
margin-left: 10px;
|
|
|
|
width: 16px;
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
|
|
|
margin-top: auto;
|
|
|
|
margin-bottom: auto;
|
|
|
|
}
|
2020-01-29 20:37:25 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|