2020-01-29 20:37:25 +01:00
|
|
|
<template>
|
2023-02-22 01:04:00 +01:00
|
|
|
<MkModal ref="modal" :z-priority="'high'" :src="src" @click="modal.close()" @closed="emit('closed')">
|
|
|
|
<div class="_popup" :class="$style.root">
|
|
|
|
<button key="public" class="_button" :class="[$style.item, { [$style.active]: v === 'public' }]" data-index="1" @click="choose('public')">
|
2023-03-11 22:01:04 +01:00
|
|
|
<div :class="$style.icon"><i class="ph-planet ph-bold ph-lg"></i></div>
|
2023-02-22 01:04:00 +01:00
|
|
|
<div :class="$style.body">
|
|
|
|
<span :class="$style.itemTitle">{{ i18n.ts._visibility.public }}</span>
|
|
|
|
<span :class="$style.itemDescription">{{ i18n.ts._visibility.publicDescription }}</span>
|
|
|
|
</div>
|
|
|
|
</button>
|
|
|
|
<button key="home" class="_button" :class="[$style.item, { [$style.active]: v === 'home' }]" data-index="2" @click="choose('home')">
|
2023-03-11 22:01:04 +01:00
|
|
|
<div :class="$style.icon"><i class="ph-house ph-bold ph-lg"></i></div>
|
2023-02-22 01:04:00 +01:00
|
|
|
<div :class="$style.body">
|
|
|
|
<span :class="$style.itemTitle">{{ i18n.ts._visibility.home }}</span>
|
|
|
|
<span :class="$style.itemDescription">{{ i18n.ts._visibility.homeDescription }}</span>
|
|
|
|
</div>
|
|
|
|
</button>
|
|
|
|
<button key="followers" class="_button" :class="[$style.item, { [$style.active]: v === 'followers' }]" data-index="3" @click="choose('followers')">
|
2023-03-11 22:01:04 +01:00
|
|
|
<div :class="$style.icon"><i class="ph-lock-simple-open ph-bold ph-lg"></i></div>
|
2023-02-22 01:04:00 +01:00
|
|
|
<div :class="$style.body">
|
|
|
|
<span :class="$style.itemTitle">{{ i18n.ts._visibility.followers }}</span>
|
|
|
|
<span :class="$style.itemDescription">{{ i18n.ts._visibility.followersDescription }}</span>
|
|
|
|
</div>
|
|
|
|
</button>
|
|
|
|
<button key="specified" :disabled="localOnly" class="_button" :class="[$style.item, { [$style.active]: v === 'specified' }]" data-index="4" @click="choose('specified')">
|
2023-03-11 22:01:04 +01:00
|
|
|
<div :class="$style.icon"><i class="ph-envelope-simple-open ph-bold ph-lg"></i></div>
|
2023-02-22 01:04:00 +01:00
|
|
|
<div :class="$style.body">
|
|
|
|
<span :class="$style.itemTitle">{{ i18n.ts._visibility.specified }}</span>
|
|
|
|
<span :class="$style.itemDescription">{{ i18n.ts._visibility.specifiedDescription }}</span>
|
|
|
|
</div>
|
|
|
|
</button>
|
|
|
|
<div :class="$style.divider"></div>
|
|
|
|
<button key="localOnly" class="_button" :class="[$style.item, $style.localOnly, { [$style.active]: localOnly }]" data-index="5" @click="localOnly = !localOnly">
|
2023-03-11 22:01:04 +01:00
|
|
|
<div :class="$style.icon"><i class="ph-hand-fist ph-bold ph-lg"></i></div>
|
2023-02-22 01:04:00 +01:00
|
|
|
<div :class="$style.body">
|
|
|
|
<span :class="$style.itemTitle">{{ i18n.ts._visibility.localOnly }}</span>
|
|
|
|
<span :class="$style.itemDescription">{{ i18n.ts._visibility.localOnlyDescription }}</span>
|
|
|
|
</div>
|
2023-03-11 22:59:36 +01:00
|
|
|
<div :class="$style.toggle"><i :class="localOnly ? 'ph-toggle-right ph-bold ph-lg' : 'ph-toggle-left ph-bold ph-lg'"></i></div>
|
2023-02-22 01:04:00 +01:00
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</MkModal>
|
2020-01-29 20:37:25 +01:00
|
|
|
</template>
|
|
|
|
|
2022-01-16 00:49:27 +01:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { nextTick, watch } from 'vue';
|
2022-12-12 04:24:12 +01:00
|
|
|
import * as misskey from 'calckey-js';
|
2022-09-06 11:21:49 +02:00
|
|
|
import MkModal from '@/components/MkModal.vue';
|
2022-07-20 15:24:26 +02:00
|
|
|
import { i18n } from '@/i18n';
|
2020-01-29 20:37:25 +01:00
|
|
|
|
2023-02-22 01:04:00 +01:00
|
|
|
const modal = $shallowRef<InstanceType<typeof MkModal>>();
|
2022-01-16 00:49:27 +01:00
|
|
|
|
|
|
|
const props = withDefaults(defineProps<{
|
|
|
|
currentVisibility: typeof misskey.noteVisibilities[number];
|
|
|
|
currentLocalOnly: boolean;
|
|
|
|
src?: HTMLElement;
|
|
|
|
}>(), {
|
2020-01-29 20:37:25 +01:00
|
|
|
});
|
2022-01-16 00:49:27 +01:00
|
|
|
|
|
|
|
const emit = defineEmits<{
|
2022-05-26 15:53:09 +02:00
|
|
|
(ev: 'changeVisibility', v: typeof misskey.noteVisibilities[number]): void;
|
|
|
|
(ev: 'changeLocalOnly', v: boolean): void;
|
|
|
|
(ev: 'closed'): void;
|
2022-01-16 00:49:27 +01:00
|
|
|
}>();
|
|
|
|
|
|
|
|
let v = $ref(props.currentVisibility);
|
|
|
|
let localOnly = $ref(props.currentLocalOnly);
|
|
|
|
|
|
|
|
watch($$(localOnly), () => {
|
|
|
|
emit('changeLocalOnly', localOnly);
|
|
|
|
});
|
|
|
|
|
|
|
|
function choose(visibility: typeof misskey.noteVisibilities[number]): void {
|
|
|
|
v = visibility;
|
|
|
|
emit('changeVisibility', visibility);
|
|
|
|
nextTick(() => {
|
|
|
|
modal.close();
|
|
|
|
});
|
|
|
|
}
|
2020-01-29 20:37:25 +01:00
|
|
|
</script>
|
|
|
|
|
2023-02-22 01:04:00 +01:00
|
|
|
<style lang="scss" module>
|
|
|
|
.root {
|
2020-01-29 20:37:25 +01:00
|
|
|
width: 240px;
|
|
|
|
padding: 8px 0;
|
2023-02-22 01:04:00 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.divider {
|
|
|
|
margin: 8px 0;
|
|
|
|
border-top: solid 0.5px var(--divider);
|
|
|
|
}
|
2020-01-29 20:37:25 +01:00
|
|
|
|
2023-02-22 01:04:00 +01:00
|
|
|
.item {
|
|
|
|
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);
|
2020-06-04 15:06:38 +02:00
|
|
|
}
|
|
|
|
|
2023-02-22 01:04:00 +01:00
|
|
|
&:active {
|
|
|
|
background: rgba(0, 0, 0, 0.1);
|
2020-01-29 20:37:25 +01:00
|
|
|
}
|
2023-02-22 01:04:00 +01:00
|
|
|
|
|
|
|
&.active {
|
|
|
|
color: var(--fgOnAccent);
|
|
|
|
background: var(--accent);
|
|
|
|
}
|
|
|
|
|
|
|
|
&.localOnly.active {
|
|
|
|
color: var(--accent);
|
|
|
|
background: inherit;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.icon {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
margin-right: 10px;
|
|
|
|
width: 16px;
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
|
|
|
margin-top: auto;
|
|
|
|
margin-bottom: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.body {
|
|
|
|
flex: 1 1 auto;
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
|
|
|
|
|
|
|
.itemTitle {
|
|
|
|
display: block;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
.itemDescription {
|
|
|
|
opacity: 0.6;
|
|
|
|
}
|
|
|
|
|
|
|
|
.toggle {
|
|
|
|
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>
|