Merge pull request 'Add support for CW boosting' (#10047) from supakaity/hajkey:hk/cw-boost into develop

Reviewed-on: https://codeberg.org/calckey/calckey/pulls/10047
This commit is contained in:
Kainoa Kanter 2023-05-07 03:05:15 +00:00
commit 5e86bafb24
14 changed files with 369 additions and 162 deletions

View File

@ -886,6 +886,7 @@ global: "Global"
recommended: "Recommended" recommended: "Recommended"
squareAvatars: "Display squared avatars" squareAvatars: "Display squared avatars"
seperateRenoteQuote: "Separate boost and quote buttons" seperateRenoteQuote: "Separate boost and quote buttons"
highlightCw: "Highlight content warned posts"
sent: "Sent" sent: "Sent"
received: "Received" received: "Received"
searchResult: "Search results" searchResult: "Search results"

View File

@ -16,7 +16,7 @@ export default async function renderNote(
dive = true, dive = true,
isTalk = false, isTalk = false,
): Promise<Record<string, unknown>> { ): Promise<Record<string, unknown>> {
note.visibility = note.visibility === "hidden" ? "home" : note.visibility; note.visibility = note.visibility === "hidden" ? "home" : note.visibility;
const getPromisedFiles = async (ids: string[]) => { const getPromisedFiles = async (ids: string[]) => {
if (!ids || ids.length === 0) return []; if (!ids || ids.length === 0) return [];
const items = await DriveFiles.findBy({ id: In(ids) }); const items = await DriveFiles.findBy({ id: In(ids) });

View File

@ -606,8 +606,7 @@ export default async (
}); });
async function renderNoteOrRenoteActivity(data: Option, note: Note) { async function renderNoteOrRenoteActivity(data: Option, note: Note) {
if (data.localOnly || if (data.localOnly || note.visibility !== "hidden") return null;
note.visibility !== "hidden") return null;
const content = const content =
data.renote && data.renote &&

View File

@ -144,10 +144,7 @@ export default async (
}); });
//#region deliver //#region deliver
if ( if (Users.isLocalUser(user) && !note.localOnly) {
Users.isLocalUser(user) &&
!note.localOnly
) {
const content = renderActivity(await renderLike(record, note)); const content = renderActivity(await renderLike(record, note));
const dm = new DeliverManager(user, content); const dm = new DeliverManager(user, content);
if (note.userHost !== null) { if (note.userHost !== null) {

View File

@ -13,6 +13,12 @@
> >
<template v-for="(item, i) in items2"> <template v-for="(item, i) in items2">
<div v-if="item === null" class="divider"></div> <div v-if="item === null" class="divider"></div>
<template
v-else-if="
item.hidden ||
(item.visible !== undefined && !item.visible)
"
/>
<span v-else-if="item.type === 'label'" class="label item"> <span v-else-if="item.type === 'label'" class="label item">
<span :style="item.textStyle || ''">{{ <span :style="item.textStyle || ''">{{
item.text item.text
@ -21,6 +27,7 @@
<span <span
v-else-if="item.type === 'pending'" v-else-if="item.type === 'pending'"
class="pending item" class="pending item"
:class="classMap(item.classes)"
> >
<span><MkEllipsis /></span> <span><MkEllipsis /></span>
</span> </span>
@ -28,6 +35,7 @@
v-else-if="item.type === 'link'" v-else-if="item.type === 'link'"
:to="item.to" :to="item.to"
class="_button item" class="_button item"
:class="classMap(item.classes)"
@click.passive="close(true)" @click.passive="close(true)"
@mouseenter.passive="onItemMouseEnter(item)" @mouseenter.passive="onItemMouseEnter(item)"
@mouseleave.passive="onItemMouseLeave(item)" @mouseleave.passive="onItemMouseLeave(item)"
@ -56,6 +64,7 @@
:target="item.target" :target="item.target"
:download="item.download" :download="item.download"
class="_button item" class="_button item"
:class="classMap(item.classes)"
@click="close(true)" @click="close(true)"
@mouseenter.passive="onItemMouseEnter(item)" @mouseenter.passive="onItemMouseEnter(item)"
@mouseleave.passive="onItemMouseLeave(item)" @mouseleave.passive="onItemMouseLeave(item)"
@ -73,9 +82,12 @@
></span> ></span>
</a> </a>
<button <button
v-else-if="item.type === 'user' && !items.hidden" v-else-if="item.type === 'user'"
class="_button item" class="_button item"
:class="{ active: item.active }" :class="{
active: item.active,
...classMap(item.classes),
}"
:disabled="item.active" :disabled="item.active"
@click="clicked(item.action, $event)" @click="clicked(item.action, $event)"
@mouseenter.passive="onItemMouseEnter(item)" @mouseenter.passive="onItemMouseEnter(item)"
@ -93,6 +105,7 @@
<span <span
v-else-if="item.type === 'switch'" v-else-if="item.type === 'switch'"
class="item" class="item"
:class="classMap(item.classes)"
@mouseenter.passive="onItemMouseEnter(item)" @mouseenter.passive="onItemMouseEnter(item)"
@mouseleave.passive="onItemMouseLeave(item)" @mouseleave.passive="onItemMouseLeave(item)"
> >
@ -104,10 +117,29 @@
>{{ item.text }}</FormSwitch >{{ item.text }}</FormSwitch
> >
</span> </span>
<span
v-else-if="item.type === 'input'"
:tabindex="i"
class="item"
:class="classMap(item.classes)"
@mouseenter.passive="onItemMouseEnter(item)"
@mouseleave.passive="onItemMouseLeave(item)"
>
<FormInput
v-model="item.ref"
:disabled="item.disabled"
class="form-input"
:required="item.required"
:placeholder="item.placeholder"
/>
</span>
<button <button
v-else-if="item.type === 'parent'" v-else-if="item.type === 'parent'"
class="_button item parent" class="_button item parent"
:class="{ childShowing: childShowingItem === item }" :class="{
childShowing: childShowingItem === item,
...classMap(item.classes),
}"
@mouseenter="showChildren(item, $event)" @mouseenter="showChildren(item, $event)"
@click="showChildren(item, $event)" @click="showChildren(item, $event)"
> >
@ -126,9 +158,13 @@
></span> ></span>
</button> </button>
<button <button
v-else-if="!item.hidden" v-else
class="_button item" class="_button item"
:class="{ danger: item.danger, active: item.active }" :class="{
danger: item.danger,
active: item.active,
...classMap(item.classes),
}"
:disabled="item.active" :disabled="item.active"
@click="clicked(item.action, $event)" @click="clicked(item.action, $event)"
@mouseenter.passive="onItemMouseEnter(item)" @mouseenter.passive="onItemMouseEnter(item)"
@ -186,7 +222,14 @@ import {
} from "vue"; } from "vue";
import { focusPrev, focusNext } from "@/scripts/focus"; import { focusPrev, focusNext } from "@/scripts/focus";
import FormSwitch from "@/components/form/switch.vue"; import FormSwitch from "@/components/form/switch.vue";
import { MenuItem, InnerMenuItem, MenuPending, MenuAction } from "@/types/menu"; import FormInput from "@/components/form/input.vue";
import {
MenuItem,
InnerMenuItem,
MenuPending,
MenuAction,
MenuClasses,
} from "@/types/menu";
import * as os from "@/os"; import * as os from "@/os";
import { i18n } from "@/i18n"; import { i18n } from "@/i18n";
import { FocusTrap } from "focus-trap-vue"; import { FocusTrap } from "focus-trap-vue";
@ -244,6 +287,18 @@ watch(
let childMenu = $ref<MenuItem[] | null>(); let childMenu = $ref<MenuItem[] | null>();
let childTarget = $ref<HTMLElement | null>(); let childTarget = $ref<HTMLElement | null>();
function classMap(classes?: MenuClasses) {
if (!classes) return {};
return (Array.isArray(classes) ? classes : classes.value).reduce(
(acc, cls) => {
acc[cls] = true;
return acc;
},
{}
);
}
function closeChild() { function closeChild() {
childMenu = null; childMenu = null;
childShowingItem = null; childShowingItem = null;

View File

@ -79,7 +79,7 @@
<div class="body"> <div class="body">
<MkSubNoteContent <MkSubNoteContent
class="text" class="text"
:note="appearNote" :note="note"
:detailed="true" :detailed="true"
:detailedView="detailedView" :detailedView="detailedView"
:parentId="appearNote.parentId" :parentId="appearNote.parentId"
@ -139,6 +139,7 @@
class="button" class="button"
:note="appearNote" :note="appearNote"
:count="appearNote.renoteCount" :count="appearNote.renoteCount"
:renoteCw="note.cw"
/> />
<XStarButtonNoEmoji <XStarButtonNoEmoji
v-if="!enableEmojiReactions" v-if="!enableEmojiReactions"

View File

@ -69,6 +69,7 @@
class="button" class="button"
:note="appearNote" :note="appearNote"
:count="appearNote.renoteCount" :count="appearNote.renoteCount"
:renoteCw="note.cw"
/> />
<XStarButtonNoEmoji <XStarButtonNoEmoji
v-if="!enableEmojiReactions" v-if="!enableEmojiReactions"

View File

@ -17,17 +17,19 @@
:max-height="maxHeight" :max-height="maxHeight"
:as-drawer="type === 'drawer'" :as-drawer="type === 'drawer'"
class="sfhdhdhq" class="sfhdhdhq"
:class="{ drawer: type === 'drawer' }" :class="{
drawer: type === 'drawer',
...classMap(classes),
}"
@close="modal.close()" @close="modal.close()"
/> />
</MkModal> </MkModal>
</template> </template>
<script lang="ts" setup> <script lang="ts" setup>
import {} from "vue";
import MkModal from "./MkModal.vue"; import MkModal from "./MkModal.vue";
import MkMenu from "./MkMenu.vue"; import MkMenu from "./MkMenu.vue";
import { MenuItem } from "@/types/menu"; import { MenuClasses, MenuItem } from "@/types/menu";
defineProps<{ defineProps<{
items: MenuItem[]; items: MenuItem[];
@ -35,6 +37,7 @@ defineProps<{
width?: number; width?: number;
viaKeyboard?: boolean; viaKeyboard?: boolean;
src?: any; src?: any;
classes?: MenuClasses;
}>(); }>();
const emit = defineEmits<{ const emit = defineEmits<{
@ -42,6 +45,18 @@ const emit = defineEmits<{
}>(); }>();
let modal = $ref<InstanceType<typeof MkModal>>(); let modal = $ref<InstanceType<typeof MkModal>>();
function classMap(classes?: MenuClasses) {
if (!classes) return {};
return (Array.isArray(classes) ? classes : classes.value).reduce(
(acc, cls) => {
acc[cls] = true;
return acc;
},
{}
);
}
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>

View File

@ -4,6 +4,7 @@
ref="buttonRef" ref="buttonRef"
v-tooltip.noDelay.bottom="i18n.ts.renote" v-tooltip.noDelay.bottom="i18n.ts.renote"
class="eddddedb _button canRenote" class="eddddedb _button canRenote"
:class="{ addCw }"
@click="renote(false, $event)" @click="renote(false, $event)"
> >
<i class="ph-repeat ph-bold ph-lg"></i> <i class="ph-repeat ph-bold ph-lg"></i>
@ -25,20 +26,27 @@ import { $i } from "@/account";
import { useTooltip } from "@/scripts/use-tooltip"; import { useTooltip } from "@/scripts/use-tooltip";
import { i18n } from "@/i18n"; import { i18n } from "@/i18n";
import { defaultStore } from "@/store"; import { defaultStore } from "@/store";
import { MenuItem } from "@/types/menu";
import { add } from "date-fns";
const props = defineProps<{ const props = defineProps<{
note: misskey.entities.Note; note: misskey.entities.Note;
count: number; count: number;
renoteCw?: string | null;
}>(); }>();
const buttonRef = ref<HTMLElement>(); const buttonRef = ref<HTMLElement>();
const addCw = ref<boolean>(!!props.renoteCw);
const cwInput = ref<string>(props.renoteCw ?? "");
const canRenote = computed( const canRenote = computed(
() => () =>
["public", "home","hidden"].includes(props.note.visibility) || ["public", "home", "hidden"].includes(props.note.visibility) ||
props.note.userId === $i.id props.note.userId === $i.id
); );
const getCw = () => (addCw.value ? cwInput.value : props.note.cw ?? undefined);
useTooltip(buttonRef, async (showing) => { useTooltip(buttonRef, async (showing) => {
const renotes = await os.api("notes/renotes", { const renotes = await os.api("notes/renotes", {
noteId: props.note.id, noteId: props.note.id,
@ -73,9 +81,12 @@ const renote = async (viaKeyboard = false, ev?: MouseEvent) => {
const users = renotes.map((x) => x.user.id); const users = renotes.map((x) => x.user.id);
const hasRenotedBefore = users.includes($i.id); const hasRenotedBefore = users.includes($i.id);
let buttonActions = []; let buttonActions: Array<MenuItem> = [];
if (props.note.visibility === "public" || props.note.visibility === "hidden") { if (
props.note.visibility === "public" ||
props.note.visibility === "hidden"
) {
buttonActions.push({ buttonActions.push({
text: i18n.ts.renote, text: i18n.ts.renote,
textStyle: "font-weight: bold", textStyle: "font-weight: bold",
@ -85,6 +96,7 @@ const renote = async (viaKeyboard = false, ev?: MouseEvent) => {
os.api("notes/create", { os.api("notes/create", {
renoteId: props.note.id, renoteId: props.note.id,
visibility: "public", visibility: "public",
cw: getCw(),
}); });
const el = const el =
ev && ev &&
@ -102,7 +114,7 @@ const renote = async (viaKeyboard = false, ev?: MouseEvent) => {
}); });
} }
if (["public", "home","hidden"].includes(props.note.visibility)) { if (["public", "home", "hidden"].includes(props.note.visibility)) {
buttonActions.push({ buttonActions.push({
text: `${i18n.ts.renote} (${i18n.ts._visibility.home})`, text: `${i18n.ts.renote} (${i18n.ts._visibility.home})`,
icon: "ph-house ph-bold ph-lg", icon: "ph-house ph-bold ph-lg",
@ -111,6 +123,7 @@ const renote = async (viaKeyboard = false, ev?: MouseEvent) => {
os.api("notes/create", { os.api("notes/create", {
renoteId: props.note.id, renoteId: props.note.id,
visibility: "home", visibility: "home",
cw: getCw(),
}); });
const el = const el =
ev && ev &&
@ -138,6 +151,7 @@ const renote = async (viaKeyboard = false, ev?: MouseEvent) => {
renoteId: props.note.id, renoteId: props.note.id,
visibility: "specified", visibility: "specified",
visibleUserIds: props.note.visibleUserIds, visibleUserIds: props.note.visibleUserIds,
cw: getCw(),
}); });
const el = const el =
ev && ev &&
@ -162,6 +176,7 @@ const renote = async (viaKeyboard = false, ev?: MouseEvent) => {
os.api("notes/create", { os.api("notes/create", {
renoteId: props.note.id, renoteId: props.note.id,
visibility: "followers", visibility: "followers",
cw: getCw(),
}); });
const el = const el =
ev && ev &&
@ -179,7 +194,30 @@ const renote = async (viaKeyboard = false, ev?: MouseEvent) => {
}); });
} }
if (!defaultStore.state.seperateRenoteQuote) { const showQuote = !defaultStore.state.seperateRenoteQuote;
if (!props.note.cw || props.note.cw === "") {
buttonActions.push({
type: "switch",
ref: addCw,
text: "Add content warning",
hidden: addCw,
});
buttonActions.push({
type: "input",
ref: cwInput,
placeholder: "Content warning",
required: true,
visible: addCw,
});
if (showQuote || hasRenotedBefore) {
buttonActions.push(null);
}
}
if (showQuote) {
buttonActions.push({ buttonActions.push({
text: i18n.ts.quote, text: i18n.ts.quote,
icon: "ph-quotes ph-bold ph-lg", icon: "ph-quotes ph-bold ph-lg",
@ -204,7 +242,10 @@ const renote = async (viaKeyboard = false, ev?: MouseEvent) => {
}, },
}); });
} }
os.popupMenu(buttonActions, buttonRef.value, { viaKeyboard });
os.popupMenu(buttonActions, buttonRef.value, {
viaKeyboard,
});
}; };
</script> </script>

View File

@ -1,125 +1,136 @@
<template> <template>
<p v-if="note.cw != null" class="cw"> <div
<MkA :class="{
v-if="!detailed && note.replyId" hasCw: !!cw,
:to="`/notes/${note.replyId}`" cwHighlight,
class="reply-icon" }"
@click.stop >
> <p v-if="cw != null" class="cw">
<i class="ph-arrow-bend-left-up ph-bold ph-lg"></i> <MkA
</MkA> v-if="!detailed && appearNote.replyId"
<MkA :to="`/notes/${appearNote.replyId}`"
v-if=" class="reply-icon"
conversation && @click.stop
note.renoteId &&
note.renoteId != parentId &&
!note.replyId
"
:to="`/notes/${note.renoteId}`"
class="reply-icon"
@click.stop
>
<i class="ph-quotes ph-bold ph-lg"></i>
</MkA>
<Mfm
v-if="note.cw != ''"
class="text"
:text="note.cw"
:author="note.user"
:i="$i"
:custom-emojis="note.emojis"
/>
</p>
<div class="wrmlmaau">
<div
class="content"
:class="{ collapsed, isLong, showContent: note.cw && !showContent }"
>
<XCwButton
ref="cwButton"
v-if="note.cw && !showContent"
v-model="showContent"
:note="note"
v-on:keydown="focusFooter"
/>
<div
class="body"
v-bind="{
'aria-label': !showContent ? '' : null,
tabindex: !showContent ? '-1' : null,
}"
> >
<span v-if="note.deletedAt" style="opacity: 0.5" <i class="ph-arrow-bend-left-up ph-bold ph-lg"></i>
>({{ i18n.ts.deleted }})</span </MkA>
> <MkA
<template v-if="!note.cw"> v-if="
<MkA conversation &&
v-if="!detailed && note.replyId" appearNote.renoteId &&
:to="`/notes/${note.replyId}`" appearNote.renoteId != parentId &&
class="reply-icon" !appearNote.replyId
@click.stop "
> :to="`/notes/${appearNote.renoteId}`"
<i class="ph-arrow-bend-left-up ph-bold ph-lg"></i> class="reply-icon"
</MkA> @click.stop
<MkA >
v-if=" <i class="ph-quotes ph-bold ph-lg"></i>
conversation && </MkA>
note.renoteId && <Mfm
note.renoteId != parentId && v-if="cw != ''"
!note.replyId class="text"
" :text="cw"
:to="`/notes/${note.renoteId}`" :author="appearNote.user"
class="reply-icon" :i="$i"
@click.stop :custom-emojis="appearNote.emojis"
> />
<i class="ph-quotes ph-bold ph-lg"></i> </p>
</MkA> <div class="wrmlmaau">
</template> <div
<Mfm class="content"
v-if="note.text" :class="{ collapsed, isLong, showContent: cw && !showContent }"
:text="note.text" >
:author="note.user" <XCwButton
:i="$i" ref="cwButton"
:custom-emojis="note.emojis" v-if="cw && !showContent"
v-model="showContent"
:note="appearNote"
v-on:keydown="focusFooter"
/> />
<MkA
v-if="!detailed && note.renoteId"
class="rp"
:to="`/notes/${note.renoteId}`"
>{{ i18n.ts.quoteAttached }}: ...</MkA
>
<div v-if="note.files.length > 0" class="files">
<XMediaList :media-list="note.files" />
</div>
<XPoll v-if="note.poll" :note="note" class="poll" />
<template v-if="detailed">
<MkUrlPreview
v-for="url in urls"
:key="url"
:url="url"
:compact="true"
:detail="false"
class="url-preview"
/>
<div
v-if="note.renote"
class="renote"
@click.stop="emit('push', note.renote)"
>
<XNoteSimple :note="note.renote" />
</div>
</template>
<div <div
v-if="note.cw && !showContent" class="body"
tabindex="0" v-bind="{
v-on:focus="cwButton?.focus()" 'aria-label': !showContent ? '' : null,
></div> tabindex: !showContent ? '-1' : null,
}"
>
<span v-if="appearNote.deletedAt" style="opacity: 0.5"
>({{ i18n.ts.deleted }})</span
>
<template v-if="!cw">
<MkA
v-if="!detailed && appearNote.replyId"
:to="`/notes/${appearNote.replyId}`"
class="reply-icon"
@click.stop
>
<i class="ph-arrow-bend-left-up ph-bold ph-lg"></i>
</MkA>
<MkA
v-if="
conversation &&
appearNote.renoteId &&
appearNote.renoteId != parentId &&
!appearNote.replyId
"
:to="`/notes/${appearNote.renoteId}`"
class="reply-icon"
@click.stop
>
<i class="ph-quotes ph-bold ph-lg"></i>
</MkA>
</template>
<Mfm
v-if="appearNote.text"
:text="appearNote.text"
:author="appearNote.user"
:i="$i"
:custom-emojis="appearNote.emojis"
/>
<MkA
v-if="!detailed && appearNote.renoteId"
class="rp"
:to="`/notes/${appearNote.renoteId}`"
>{{ i18n.ts.quoteAttached }}: ...</MkA
>
<div v-if="appearNote.files.length > 0" class="files">
<XMediaList :media-list="appearNote.files" />
</div>
<XPoll
v-if="appearNote.poll"
:note="appearNote"
class="poll"
/>
<template v-if="detailed">
<MkUrlPreview
v-for="url in urls"
:key="url"
:url="url"
:compact="true"
:detail="false"
class="url-preview"
/>
<div
v-if="appearNote.renote"
class="renote"
@click.stop="emit('push', appearNote.renote)"
>
<XNoteSimple :note="appearNote.renote" />
</div>
</template>
<div
v-if="cw && !showContent"
tabindex="0"
v-on:focus="cwButton?.focus()"
></div>
</div>
<XShowMoreButton
v-if="isLong"
v-model="collapsed"
></XShowMoreButton>
<XCwButton v-if="cw" v-model="showContent" :note="appearNote" />
</div> </div>
<XShowMoreButton
v-if="isLong"
v-model="collapsed"
></XShowMoreButton>
<XCwButton v-if="note.cw" v-model="showContent" :note="note" />
</div> </div>
</div> </div>
</template> </template>
@ -136,6 +147,7 @@ import XShowMoreButton from "@/components/MkShowMoreButton.vue";
import XCwButton from "@/components/MkCwButton.vue"; import XCwButton from "@/components/MkCwButton.vue";
import { extractUrlFromMfm } from "@/scripts/extract-url-from-mfm"; import { extractUrlFromMfm } from "@/scripts/extract-url-from-mfm";
import { i18n } from "@/i18n"; import { i18n } from "@/i18n";
import { defaultStore } from "@/store";
const props = defineProps<{ const props = defineProps<{
note: misskey.entities.Note; note: misskey.entities.Note;
@ -150,16 +162,30 @@ const emit = defineEmits<{
(ev: "focusfooter"): void; (ev: "focusfooter"): void;
}>(); }>();
const note = props.note;
const isRenote =
note.renote != null &&
note.text == null &&
note.fileIds.length === 0 &&
note.poll == null;
let appearNote = $computed(() =>
isRenote ? (note.renote as misskey.entities.Note) : note
);
let cw = $computed(() => appearNote.cw || note.cw);
const cwHighlight = defaultStore.state.highlightCw;
const cwButton = ref<HTMLElement>(); const cwButton = ref<HTMLElement>();
const isLong = const isLong =
!props.detailedView && !props.detailedView &&
props.note.cw == null && !cw &&
props.note.text != null && appearNote.text != null &&
(props.note.text.split("\n").length > 9 || props.note.text.length > 500); (appearNote.text.split("\n").length > 9 || appearNote.text.length > 500);
const collapsed = $ref(props.note.cw == null && isLong); const collapsed = $ref(!cw && isLong);
const urls = props.note.text const urls = appearNote.text
? extractUrlFromMfm(mfm.parse(props.note.text)).slice(0, 5) ? extractUrlFromMfm(mfm.parse(appearNote.text)).slice(0, 5)
: null; : null;
let showContent = $ref(false); let showContent = $ref(false);
@ -193,6 +219,23 @@ function focusFooter(ev) {
overflow-wrap: break-word; overflow-wrap: break-word;
> .text { > .text {
margin-right: 8px; margin-right: 8px;
padding-inline-start: 0.25em;
}
}
.cwHighlight.hasCw {
outline: 1px dotted var(--cwFg);
border-radius: 5px;
> .wrmlmaau {
padding-inline-start: 0.25em;
}
> .cw {
background-color: var(--cwFg);
color: var(--cwBg);
border-top-left-radius: 5px;
border-top-right-radius: 5px;
> .reply-icon {
color: var(--cwBg);
}
} }
} }
.wrmlmaau { .wrmlmaau {
@ -224,11 +267,9 @@ function focusFooter(ev) {
> .url-preview { > .url-preview {
margin-top: 8px; margin-top: 8px;
} }
> .poll { > .poll {
font-size: 80%; font-size: 80%;
} }
> .renote { > .renote {
padding-top: 8px; padding-top: 8px;
> * { > * {
@ -243,7 +284,6 @@ function focusFooter(ev) {
} }
} }
} }
&.collapsed, &.collapsed,
&.showContent { &.showContent {
position: relative; position: relative;

View File

@ -1,6 +1,13 @@
// TODO: なんでもかんでもos.tsに突っ込むのやめたいのでよしなに分割する // TODO: なんでもかんでもos.tsに突っ込むのやめたいのでよしなに分割する
import { Component, markRaw, Ref, ref, defineAsyncComponent } from "vue"; import {
Component,
markRaw,
Ref,
ref,
defineAsyncComponent,
ComputedRef,
} from "vue";
import { EventEmitter } from "eventemitter3"; import { EventEmitter } from "eventemitter3";
import insertTextAtCursor from "insert-text-at-cursor"; import insertTextAtCursor from "insert-text-at-cursor";
import * as Misskey from "calckey-js"; import * as Misskey from "calckey-js";
@ -764,6 +771,7 @@ export function popupMenu(
align?: string; align?: string;
width?: number; width?: number;
viaKeyboard?: boolean; viaKeyboard?: boolean;
classes?: string[] | Ref<Array<string>> | ComputedRef<Array<string>>;
}, },
) { ) {
return new Promise((resolve, reject) => { return new Promise((resolve, reject) => {
@ -776,6 +784,7 @@ export function popupMenu(
width: options?.width, width: options?.width,
align: options?.align, align: options?.align,
viaKeyboard: options?.viaKeyboard, viaKeyboard: options?.viaKeyboard,
classes: options?.classes,
}, },
{ {
closed: () => { closed: () => {

View File

@ -123,6 +123,9 @@
<FormSwitch v-model="seperateRenoteQuote" class="_formBlock">{{ <FormSwitch v-model="seperateRenoteQuote" class="_formBlock">{{
i18n.ts.seperateRenoteQuote i18n.ts.seperateRenoteQuote
}}</FormSwitch> }}</FormSwitch>
<FormSwitch v-model="highlightCw" class="_formBlock">{{
i18n.ts.highlightCw
}}</FormSwitch>
<FormSwitch v-model="useSystemFont" class="_formBlock">{{ <FormSwitch v-model="useSystemFont" class="_formBlock">{{
i18n.ts.useSystemFont i18n.ts.useSystemFont
}}</FormSwitch> }}</FormSwitch>
@ -302,6 +305,7 @@ const useReactionPickerForContextMenu = computed(
const seperateRenoteQuote = computed( const seperateRenoteQuote = computed(
defaultStore.makeGetterSetter("seperateRenoteQuote") defaultStore.makeGetterSetter("seperateRenoteQuote")
); );
const highlightCw = computed(defaultStore.makeGetterSetter("highlightCw"));
const squareAvatars = computed(defaultStore.makeGetterSetter("squareAvatars")); const squareAvatars = computed(defaultStore.makeGetterSetter("squareAvatars"));
const showUpdates = computed(defaultStore.makeGetterSetter("showUpdates")); const showUpdates = computed(defaultStore.makeGetterSetter("showUpdates"));
const swipeOnDesktop = computed( const swipeOnDesktop = computed(

View File

@ -146,6 +146,10 @@ export const defaultStore = markRaw(
where: "device", where: "device",
default: true, default: true,
}, },
highlightCw: {
where: "device",
default: false,
},
nsfw: { nsfw: {
where: "device", where: "device",
default: "respect" as "respect" | "force" | "ignore", default: "respect" as "respect" | "force" | "ignore",

View File

@ -1,16 +1,26 @@
import * as Misskey from "calckey-js"; import * as Misskey from "calckey-js";
import { Ref } from "vue"; import { ComputedRef, Ref } from "vue";
export type MenuClasses =
| Array<string>
| Ref<Array<string>>
| ComputedRef<Array<string>>;
export type MenuBase = {
classes?: MenuClasses;
hidden?: boolean | Ref<boolean>;
visible?: boolean | Ref<boolean>;
};
export type MenuAction = (ev: MouseEvent) => void; export type MenuAction = (ev: MouseEvent) => void;
export type MenuDivider = null; export type MenuDivider = null;
export type MenuNull = undefined; export type MenuNull = undefined;
export type MenuLabel = { export type MenuLabel = MenuBase & {
type: "label"; type: "label";
text: string; text: string;
textStyle?: string; textStyle?: string;
}; };
export type MenuLink = { export type MenuLink = MenuBase & {
type: "link"; type: "link";
to: string; to: string;
text: string; text: string;
@ -19,7 +29,7 @@ export type MenuLink = {
indicate?: boolean; indicate?: boolean;
avatar?: Misskey.entities.User; avatar?: Misskey.entities.User;
}; };
export type MenuA = { export type MenuA = MenuBase & {
type: "a"; type: "a";
href: string; href: string;
target?: string; target?: string;
@ -29,22 +39,21 @@ export type MenuA = {
icon?: string; icon?: string;
indicate?: boolean; indicate?: boolean;
}; };
export type MenuUser = { export type MenuUser = MenuBase & {
type: "user"; type: "user";
user: Misskey.entities.User; user: Misskey.entities.User;
active?: boolean; active?: boolean;
indicate?: boolean; indicate?: boolean;
hidden?: boolean;
action: MenuAction; action: MenuAction;
}; };
export type MenuSwitch = { export type MenuSwitch = MenuBase & {
type: "switch"; type: "switch";
ref: Ref<boolean>; ref: Ref<boolean>;
text: string; text: string;
textStyle?: string; textStyle?: string;
disabled?: boolean; disabled?: boolean;
}; };
export type MenuButton = { export type MenuButton = MenuBase & {
type?: "button"; type?: "button";
text: string; text: string;
textStyle?: string; textStyle?: string;
@ -52,11 +61,28 @@ export type MenuButton = {
indicate?: boolean; indicate?: boolean;
danger?: boolean; danger?: boolean;
active?: boolean; active?: boolean;
hidden?: boolean;
avatar?: Misskey.entities.User; avatar?: Misskey.entities.User;
action: MenuAction; action: MenuAction;
}; };
export type MenuParent = { export type MenuButtonMultipleIcons = MenuBase & {
type?: "button";
text: string;
textStyle?: string;
icons: string[];
indicate?: boolean;
danger?: boolean;
active?: boolean;
avatar?: Misskey.entities.User;
action: MenuAction;
};
export type MenuInput = MenuBase & {
type: "input";
ref: Ref<string>;
placeholder: string;
disabled?: boolean;
required?: boolean | Ref<boolean>;
};
export type MenuParent = MenuBase & {
type: "parent"; type: "parent";
text: string; text: string;
textStyle?: string; textStyle?: string;
@ -64,7 +90,9 @@ export type MenuParent = {
children: OuterMenuItem[]; children: OuterMenuItem[];
}; };
export type MenuPending = { type: "pending" }; export type MenuPending = MenuBase & {
type: "pending";
};
type OuterMenuItem = type OuterMenuItem =
| MenuDivider | MenuDivider
@ -75,9 +103,19 @@ type OuterMenuItem =
| MenuUser | MenuUser
| MenuSwitch | MenuSwitch
| MenuButton | MenuButton
| MenuButtonMultipleIcons
| MenuInput
| MenuParent; | MenuParent;
type OuterPromiseMenuItem = Promise< type OuterPromiseMenuItem = Promise<
MenuLabel | MenuLink | MenuA | MenuUser | MenuSwitch | MenuButton | MenuParent | MenuLabel
| MenuLink
| MenuA
| MenuUser
| MenuSwitch
| MenuButton
| MenuButtonMultipleIcons
| MenuInput
| MenuParent
>; >;
export type MenuItem = OuterMenuItem | OuterPromiseMenuItem; export type MenuItem = OuterMenuItem | OuterPromiseMenuItem;
export type InnerMenuItem = export type InnerMenuItem =
@ -89,4 +127,6 @@ export type InnerMenuItem =
| MenuUser | MenuUser
| MenuSwitch | MenuSwitch
| MenuButton | MenuButton
| MenuButtonMultipleIcons
| MenuInput
| MenuParent; | MenuParent;