2020-01-29 19:37:25 +00:00
|
|
|
<template>
|
2022-01-15 23:49:27 +00:00
|
|
|
<MkModal ref="modal" :z-priority="'high'" :src="src" @click="modal.close()" @closed="emit('closed')">
|
2020-10-17 11:12:00 +00:00
|
|
|
<div class="gqyayizv _popup">
|
2023-01-03 05:17:39 +00:00
|
|
|
<button key="public" class="_button item" :class="{ active: v === 'public' }" data-index="1" @click="choose('public')">
|
|
|
|
<div class="icon"><i class="ti ti-world"></i></div>
|
|
|
|
<div class="body">
|
2022-07-20 13:24:26 +00:00
|
|
|
<span>{{ i18n.ts._visibility.public }}</span>
|
|
|
|
<span>{{ i18n.ts._visibility.publicDescription }}</span>
|
2020-01-29 19:37:25 +00:00
|
|
|
</div>
|
|
|
|
</button>
|
2023-01-03 05:17:39 +00:00
|
|
|
<button key="home" class="_button item" :class="{ active: v === 'home' }" data-index="2" @click="choose('home')">
|
|
|
|
<div class="icon"><i class="ti ti-home"></i></div>
|
|
|
|
<div class="body">
|
2022-07-20 13:24:26 +00:00
|
|
|
<span>{{ i18n.ts._visibility.home }}</span>
|
|
|
|
<span>{{ i18n.ts._visibility.homeDescription }}</span>
|
2020-01-29 19:37:25 +00:00
|
|
|
</div>
|
|
|
|
</button>
|
2023-01-03 05:17:39 +00:00
|
|
|
<button key="followers" class="_button item" :class="{ active: v === 'followers' }" data-index="3" @click="choose('followers')">
|
2023-01-09 04:32:48 +00:00
|
|
|
<div class="icon"><i class="ti ti-lock"></i></div>
|
2023-01-03 05:17:39 +00:00
|
|
|
<div class="body">
|
2022-07-20 13:24:26 +00:00
|
|
|
<span>{{ i18n.ts._visibility.followers }}</span>
|
|
|
|
<span>{{ i18n.ts._visibility.followersDescription }}</span>
|
2020-01-29 19:37:25 +00:00
|
|
|
</div>
|
|
|
|
</button>
|
2023-01-03 05:17:39 +00:00
|
|
|
<button key="specified" :disabled="localOnly" class="_button item" :class="{ active: v === 'specified' }" data-index="4" @click="choose('specified')">
|
|
|
|
<div class="icon"><i class="ti ti-mail"></i></div>
|
|
|
|
<div class="body">
|
2022-07-20 13:24:26 +00:00
|
|
|
<span>{{ i18n.ts._visibility.specified }}</span>
|
|
|
|
<span>{{ i18n.ts._visibility.specifiedDescription }}</span>
|
2020-01-29 19:37:25 +00:00
|
|
|
</div>
|
|
|
|
</button>
|
2020-06-04 13:06:38 +00:00
|
|
|
<div class="divider"></div>
|
2023-01-03 05:17:39 +00:00
|
|
|
<button key="localOnly" class="_button item localOnly" :class="{ active: localOnly }" data-index="5" @click="localOnly = !localOnly">
|
|
|
|
<div class="icon"><i class="ti ti-world-off"></i></div>
|
|
|
|
<div class="body">
|
2022-07-20 13:24:26 +00:00
|
|
|
<span>{{ i18n.ts._visibility.localOnly }}</span>
|
|
|
|
<span>{{ i18n.ts._visibility.localOnlyDescription }}</span>
|
2020-06-04 13:06:38 +00:00
|
|
|
</div>
|
2023-01-03 05:17:39 +00:00
|
|
|
<div class="toggle"><i :class="localOnly ? 'ti ti-toggle-right' : 'ti ti-toggle-left'"></i></div>
|
2020-06-04 13:06:38 +00:00
|
|
|
</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>
|
|
|
|
import { nextTick, watch } from 'vue';
|
|
|
|
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];
|
|
|
|
currentLocalOnly: boolean;
|
|
|
|
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: 'changeLocalOnly', v: boolean): void;
|
|
|
|
(ev: 'closed'): void;
|
2022-01-15 23:49:27 +00: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 19:37:25 +00:00
|
|
|
</script>
|
|
|
|
|
2022-12-27 09:29:39 +00:00
|
|
|
<style lang="scss" scoped>
|
2020-01-29 19:37:25 +00:00
|
|
|
.gqyayizv {
|
|
|
|
width: 240px;
|
|
|
|
padding: 8px 0;
|
|
|
|
|
2020-06-04 13:06:38 +00:00
|
|
|
> .divider {
|
|
|
|
margin: 8px 0;
|
2021-04-10 03:40:50 +00:00
|
|
|
border-top: solid 0.5px var(--divider);
|
2020-06-04 13:06:38 +00:00
|
|
|
}
|
|
|
|
|
2023-01-03 05:17:39 +00:00
|
|
|
> .item {
|
2020-01-29 19:37:25 +00:00
|
|
|
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 {
|
2022-07-10 06:35:43 +00:00
|
|
|
color: var(--fgOnAccent);
|
2020-01-29 19:37:25 +00:00
|
|
|
background: var(--accent);
|
|
|
|
}
|
|
|
|
|
2020-06-04 13:06:38 +00:00
|
|
|
&.localOnly.active {
|
|
|
|
color: var(--accent);
|
|
|
|
background: inherit;
|
|
|
|
}
|
|
|
|
|
2023-01-03 05:17:39 +00:00
|
|
|
> .icon {
|
2020-01-29 19:37:25 +00:00
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
margin-right: 10px;
|
|
|
|
width: 16px;
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
|
|
|
margin-top: auto;
|
|
|
|
margin-bottom: auto;
|
|
|
|
}
|
|
|
|
|
2023-01-03 05:17:39 +00:00
|
|
|
> .body {
|
2020-01-29 19:37:25 +00:00
|
|
|
flex: 1 1 auto;
|
2020-06-04 13:06:38 +00:00
|
|
|
white-space: nowrap;
|
2021-03-02 13:57:16 +00:00
|
|
|
overflow: hidden;
|
2020-06-04 13:06:38 +00:00
|
|
|
text-overflow: ellipsis;
|
2020-01-29 19:37:25 +00:00
|
|
|
|
|
|
|
> span:first-child {
|
|
|
|
display: block;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
> span:last-child:not(:first-child) {
|
|
|
|
opacity: 0.6;
|
|
|
|
}
|
|
|
|
}
|
2020-06-04 13:06:38 +00:00
|
|
|
|
2023-01-03 05:17:39 +00:00
|
|
|
> .toggle {
|
2020-06-04 13:06:38 +00:00
|
|
|
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 19:37:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|