2020-01-29 19:37:25 +00:00
|
|
|
<template>
|
2023-05-19 04:58:09 +00:00
|
|
|
<MkModal ref="modal" v-slot="{ type }" :zPriority="'high'" :src="src" @click="modal.close()" @closed="emit('closed')">
|
2023-04-05 05:30:03 +00:00
|
|
|
<div class="_popup" :class="{ [$style.root]: true, [$style.asDrawer]: type === 'drawer' }">
|
|
|
|
<div :class="[$style.label, $style.item]">
|
|
|
|
{{ i18n.ts.visibility }}
|
|
|
|
</div>
|
2023-01-15 02:22:58 +00:00
|
|
|
<button key="public" class="_button" :class="[$style.item, { [$style.active]: v === 'public' }]" data-index="1" @click="choose('public')">
|
|
|
|
<div :class="$style.icon"><i class="ti ti-world"></i></div>
|
|
|
|
<div :class="$style.body">
|
|
|
|
<span :class="$style.itemTitle">{{ i18n.ts._visibility.public }}</span>
|
|
|
|
<span :class="$style.itemDescription">{{ i18n.ts._visibility.publicDescription }}</span>
|
2020-01-29 19:37:25 +00:00
|
|
|
</div>
|
|
|
|
</button>
|
2023-01-15 02:22:58 +00:00
|
|
|
<button key="home" class="_button" :class="[$style.item, { [$style.active]: v === 'home' }]" data-index="2" @click="choose('home')">
|
|
|
|
<div :class="$style.icon"><i class="ti ti-home"></i></div>
|
|
|
|
<div :class="$style.body">
|
|
|
|
<span :class="$style.itemTitle">{{ i18n.ts._visibility.home }}</span>
|
|
|
|
<span :class="$style.itemDescription">{{ i18n.ts._visibility.homeDescription }}</span>
|
2020-01-29 19:37:25 +00:00
|
|
|
</div>
|
|
|
|
</button>
|
2023-01-15 02:22:58 +00:00
|
|
|
<button key="followers" class="_button" :class="[$style.item, { [$style.active]: v === 'followers' }]" data-index="3" @click="choose('followers')">
|
|
|
|
<div :class="$style.icon"><i class="ti ti-lock"></i></div>
|
|
|
|
<div :class="$style.body">
|
|
|
|
<span :class="$style.itemTitle">{{ i18n.ts._visibility.followers }}</span>
|
|
|
|
<span :class="$style.itemDescription">{{ i18n.ts._visibility.followersDescription }}</span>
|
2020-01-29 19:37:25 +00:00
|
|
|
</div>
|
|
|
|
</button>
|
2023-01-15 02:22:58 +00:00
|
|
|
<button key="specified" :disabled="localOnly" class="_button" :class="[$style.item, { [$style.active]: v === 'specified' }]" data-index="4" @click="choose('specified')">
|
|
|
|
<div :class="$style.icon"><i class="ti ti-mail"></i></div>
|
|
|
|
<div :class="$style.body">
|
|
|
|
<span :class="$style.itemTitle">{{ i18n.ts._visibility.specified }}</span>
|
|
|
|
<span :class="$style.itemDescription">{{ i18n.ts._visibility.specifiedDescription }}</span>
|
2020-01-29 19:37:25 +00:00
|
|
|
</div>
|
|
|
|
</button>
|
2020-03-20 15:21:33 +00:00
|
|
|
</div>
|
2020-10-17 11:12:00 +00:00
|
|
|
</MkModal>
|
2020-01-29 19:37:25 +00:00
|
|
|
</template>
|
|
|
|
|
2022-01-15 23:49:27 +00:00
|
|
|
<script lang="ts" setup>
|
2023-04-05 05:30:03 +00:00
|
|
|
import { nextTick } from 'vue';
|
2022-01-15 23:49:27 +00:00
|
|
|
import * as misskey from 'misskey-js';
|
2022-09-06 09:21:49 +00:00
|
|
|
import MkModal from '@/components/MkModal.vue';
|
2022-07-20 13:24:26 +00:00
|
|
|
import { i18n } from '@/i18n';
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2023-01-03 04:37:32 +00:00
|
|
|
const modal = $shallowRef<InstanceType<typeof MkModal>>();
|
2022-01-15 23:49:27 +00:00
|
|
|
|
|
|
|
const props = withDefaults(defineProps<{
|
|
|
|
currentVisibility: typeof misskey.noteVisibilities[number];
|
2023-04-05 05:30:03 +00:00
|
|
|
localOnly: boolean;
|
2022-01-15 23:49:27 +00:00
|
|
|
src?: HTMLElement;
|
|
|
|
}>(), {
|
2020-01-29 19:37:25 +00:00
|
|
|
});
|
2022-01-15 23:49:27 +00:00
|
|
|
|
|
|
|
const emit = defineEmits<{
|
2022-05-26 13:53:09 +00:00
|
|
|
(ev: 'changeVisibility', v: typeof misskey.noteVisibilities[number]): void;
|
|
|
|
(ev: 'closed'): void;
|
2022-01-15 23:49:27 +00:00
|
|
|
}>();
|
|
|
|
|
|
|
|
let v = $ref(props.currentVisibility);
|
|
|
|
|
|
|
|
function choose(visibility: typeof misskey.noteVisibilities[number]): void {
|
|
|
|
v = visibility;
|
|
|
|
emit('changeVisibility', visibility);
|
|
|
|
nextTick(() => {
|
2023-04-05 05:30:03 +00:00
|
|
|
if (modal) modal.close();
|
2022-01-15 23:49:27 +00:00
|
|
|
});
|
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
</script>
|
|
|
|
|
2023-01-15 02:22:58 +00:00
|
|
|
<style lang="scss" module>
|
|
|
|
.root {
|
2023-04-05 05:30:03 +00:00
|
|
|
min-width: 240px;
|
2020-01-29 19:37:25 +00:00
|
|
|
padding: 8px 0;
|
2023-04-05 05:30:03 +00:00
|
|
|
|
|
|
|
&.asDrawer {
|
|
|
|
padding: 12px 0 max(env(safe-area-inset-bottom, 0px), 12px) 0;
|
|
|
|
width: 100%;
|
|
|
|
border-radius: 24px;
|
|
|
|
border-bottom-right-radius: 0;
|
|
|
|
border-bottom-left-radius: 0;
|
|
|
|
|
|
|
|
.label {
|
|
|
|
pointer-events: none;
|
|
|
|
font-size: 12px;
|
|
|
|
padding-bottom: 4px;
|
|
|
|
opacity: 0.7;
|
|
|
|
}
|
|
|
|
|
|
|
|
.item {
|
|
|
|
font-size: 14px;
|
|
|
|
padding: 10px 24px;
|
|
|
|
}
|
|
|
|
}
|
2023-01-15 02:22:58 +00:00
|
|
|
}
|
|
|
|
|
2023-04-05 05:30:03 +00:00
|
|
|
.label {
|
|
|
|
pointer-events: none;
|
|
|
|
font-size: 10px;
|
|
|
|
padding-bottom: 4px;
|
|
|
|
opacity: 0.7;
|
2023-01-15 02:22:58 +00:00
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2023-01-15 02:22:58 +00: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 13:06:38 +00:00
|
|
|
}
|
|
|
|
|
2023-01-15 02:22:58 +00:00
|
|
|
&:active {
|
|
|
|
background: rgba(0, 0, 0, 0.1);
|
2020-01-29 19:37:25 +00:00
|
|
|
}
|
2023-01-15 02:22:58 +00:00
|
|
|
|
|
|
|
&.active {
|
|
|
|
color: var(--accent);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.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;
|
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
</style>
|