Compare commits

...

6 commits

Author SHA1 Message Date
thislight
8d8d2a8fb1
RegularToot: only show preview if reveal
All checks were successful
/ depoly (push) Successful in 1m20s
2024-11-20 21:17:22 +08:00
thislight
8cd95b9e90
MediaAttachmentGrid: support click to reveal 2024-11-20 21:09:14 +08:00
thislight
1047a3b10d
MediaAttachmentGrid: add a box to each item 2024-11-20 20:45:24 +08:00
thislight
b1f6033cc8
TootContent: localized 2024-11-20 16:33:30 +08:00
thislight
6313827b1e
rename toot-components to toots 2024-11-20 16:26:05 +08:00
thislight
737d63f88a
RegularToot: support content warning 2024-11-20 16:24:57 +08:00
12 changed files with 255 additions and 142 deletions

View file

@ -6,23 +6,34 @@
gap: 4px; gap: 4px;
contain: layout style; contain: layout style;
> :where(img, video) { >.cell {
max-height: 35vh; max-height: 35vh;
min-height: 40px; min-height: 40px;
min-width: 40px; min-width: 40px;
object-fit: contain;
max-width: 100%; max-width: 100%;
contain: strict;
content-visibility: auto;
background-color: var(--media-color-accent, var(--tutu-color-surface-d)); background-color: var(--media-color-accent, var(--tutu-color-surface-d));
border-radius: 2px; border-radius: 2px;
border: 1px solid var(--tutu-color-surface-d); border: 1px solid var(--tutu-color-surface-d);
transition: outline-width 60ms var(--tutu-anim-curve-std), border-color 60ms var(--tutu-anim-curve-std); transition: outline-width 60ms var(--tutu-anim-curve-std), border-color 60ms var(--tutu-anim-curve-std);
contain: strict;
content-visibility: auto;
&:hover, &:hover,
&:focus-visible { &:focus-visible {
outline: 8px solid var(--media-color-accent, var(--tutu-color-surface-d)); outline: 8px solid var(--media-color-accent, var(--tutu-color-surface-d));
border-color: var(--media-color-accent, var(--tutu-color-surface-d)); border-color: var(--media-color-accent, var(--tutu-color-surface-d));
} }
& > :where(img, video, .sensitive-placeholder) {
object-fit: contain;
width: 100%;
height: 100%;
}
& > .sensitive-placeholder {
display: flex;
align-items: center;
justify-content: center;
}
} }
} }

View file

@ -1,7 +1,6 @@
import type { mastodon } from "masto"; import type { mastodon } from "masto";
import { import {
type Component, type Component,
For,
Index, Index,
Match, Match,
Switch, Switch,
@ -9,6 +8,7 @@ import {
createRenderEffect, createRenderEffect,
createSignal, createSignal,
onCleanup, onCleanup,
untrack,
} from "solid-js"; } from "solid-js";
import MediaViewer from "./MediaViewer"; import MediaViewer from "./MediaViewer";
import { render } from "solid-js/web"; import { render } from "solid-js/web";
@ -21,6 +21,8 @@ import { $settings } from "../settings/stores";
import { averageColorHex } from "../platform/blurhash"; import { averageColorHex } from "../platform/blurhash";
import "./MediaAttachmentGrid.css"; import "./MediaAttachmentGrid.css";
import cardStyle from "../material/cards.module.css"; import cardStyle from "../material/cards.module.css";
import { Preview } from "@suid/icons-material";
import { IconButton } from "@suid/material";
type ElementSize = { width: number; height: number }; type ElementSize = { width: number; height: number };
@ -44,23 +46,30 @@ function constraintedSize(
}; };
} }
function isolateCallback(event: Event) {
if (event.target !== event.currentTarget) {
event.stopPropagation();
}
}
const MediaAttachmentGrid: Component<{ const MediaAttachmentGrid: Component<{
attachments: mastodon.v1.MediaAttachment[]; attachments: mastodon.v1.MediaAttachment[];
sensitive?: boolean;
}> = (props) => { }> = (props) => {
const [rootRef, setRootRef] = createSignal<HTMLElement>(); const [rootRef, setRootRef] = createSignal<HTMLElement>();
const [viewerIndex, setViewerIndex] = createSignal<number>(); const [viewerIndex, setViewerIndex] = createSignal<number>();
const viewerOpened = () => typeof viewerIndex() !== "undefined"; const viewerOpened = () => typeof viewerIndex() !== "undefined";
const settings = useStore($settings); const settings = useStore($settings);
const windowSize = useWindowSize(); const windowSize = useWindowSize();
const [reveal, setReveal] = createSignal([] as number[]);
createRenderEffect((lastDispose?: () => void) => { createRenderEffect(() => {
lastDispose?.();
const vidx = viewerIndex(); const vidx = viewerIndex();
if (typeof vidx === "undefined") return; if (typeof vidx === "undefined") return;
const container = document.createElement("div"); const container = document.createElement("div");
container.setAttribute("role", "presentation"); container.setAttribute("role", "presentation");
document.body.appendChild(container); document.body.appendChild(container);
return render(() => { const dispose = render(() => {
onCleanup(() => { onCleanup(() => {
document.body.removeChild(container); document.body.removeChild(container);
}); });
@ -75,6 +84,8 @@ const MediaAttachmentGrid: Component<{
/> />
); );
}, container); }, container);
onCleanup(dispose);
}); });
const openViewerFor = (index: number) => { const openViewerFor = (index: number) => {
@ -127,73 +138,88 @@ const MediaAttachmentGrid: Component<{
accentColor ? { "--media-color-accent": accentColor } : {}, accentColor ? { "--media-color-accent": accentColor } : {},
); );
}; };
const isReveal = (idx: number) => {
return reveal().includes(idx);
};
const addReveal = (idx: number) => {
if (!untrack(() => isReveal(idx))) {
setReveal((x) => [...x, idx]);
}
};
return ( return (
<section <section
ref={setRootRef} ref={setRootRef}
class={`MediaAttachmentGrid ${cardStyle.cardNoPad}`} class={`MediaAttachmentGrid ${cardStyle.cardNoPad}`}
style={{ "column-count": columnCount() }} classList={{
onClick={(e) => { sensitive: props.sensitive,
if (e.target !== e.currentTarget) {
e.stopImmediatePropagation();
}
}} }}
style={{ "column-count": columnCount() }}
onClick={isolateCallback}
> >
<Index each={props.attachments}> <Index each={props.attachments}>
{(item, index) => { {(item, index) => {
const itemType = () => item().type; const itemType = () => item().type;
return ( return (
<Switch> <div
<Match when={itemType() === "image"}> class="cell"
<img role="presentation"
data-sort={index} style={itemStyle(item())}
data-media-type={item().type} data-sort={index}
src={item().previewUrl} data-media-type={item().type}
width={item().meta?.small?.width} >
height={item().meta?.small?.height} <Switch>
alt={item().description || undefined} <Match when={props.sensitive && !isReveal(index)}>
onClick={[openViewerFor, index]} <div class="sensitive-placeholder">
loading="lazy" <IconButton
style={itemStyle(item())} color="inherit"
></img> size="large"
</Match> onClick={[addReveal, index]}
<Match when={itemType() === "video"}> aria-label="Reveal this media"
<video >
data-sort={index} <Preview />
data-media-type={item().type} </IconButton>
src={item().url || undefined} </div>
autoplay={settings().autoPlayVideos} </Match>
playsinline={settings().autoPlayVideos ? true : undefined} <Match when={itemType() === "image"}>
controls <img
poster={item().previewUrl} src={item().previewUrl}
width={item().meta?.small?.width} width={item().meta?.small?.width}
height={item().meta?.small?.height} height={item().meta?.small?.height}
style={itemStyle(item())} alt={item().description || undefined}
/> onClick={[openViewerFor, index]}
</Match> loading="lazy"
<Match when={itemType() === "gifv"}> ></img>
<video </Match>
data-sort={index} <Match when={itemType() === "video"}>
data-media-type={item().type} <video
src={item().url || undefined} src={item().url || undefined}
autoplay={settings().autoPlayGIFs} autoplay={!props.sensitive && settings().autoPlayVideos}
controls playsinline={settings().autoPlayVideos ? true : undefined}
playsinline /* or safari on iOS will play in full-screen */ controls
loop poster={item().previewUrl}
poster={item().previewUrl} width={item().meta?.small?.width}
width={item().meta?.small?.width} height={item().meta?.small?.height}
height={item().meta?.small?.height} />
style={itemStyle(item())} </Match>
/> <Match when={itemType() === "gifv"}>
</Match> <video
<Match when={itemType() === "audio"}> src={item().url || undefined}
<audio autoplay={!props.sensitive && settings().autoPlayGIFs}
data-sort={index} controls
data-media-type={item().type} playsinline /* or safari on iOS will play in full-screen */
src={item().url || undefined} loop
controls poster={item().previewUrl}
></audio> width={item().meta?.small?.width}
</Match> height={item().meta?.small?.height}
</Switch> />
</Match>
<Match when={itemType() === "audio"}>
<audio src={item().url || undefined} controls></audio>
</Match>
</Switch>
</div>
); );
}} }}
</Index> </Index>

View file

@ -5,6 +5,8 @@ import {
type JSX, type JSX,
Show, Show,
createRenderEffect, createRenderEffect,
createSignal,
type Setter,
} from "solid-js"; } from "solid-js";
import tootStyle from "./toot.module.css"; import tootStyle from "./toot.module.css";
import { formatRelative } from "date-fns"; import { formatRelative } from "date-fns";
@ -31,9 +33,9 @@ import MediaAttachmentGrid from "./MediaAttachmentGrid.js";
import { useDateFnLocale } from "../platform/i18n"; import { useDateFnLocale } from "../platform/i18n";
import { canShare, share } from "../platform/share"; import { canShare, share } from "../platform/share";
import { makeAcctText, useDefaultSession } from "../masto/clients"; import { makeAcctText, useDefaultSession } from "../masto/clients";
import TootContent from "./toot-components/TootContent"; import TootContent from "./toots/TootContent";
import BoostIcon from "./toot-components/BoostIcon"; import BoostIcon from "./toots/BoostIcon";
import PreviewCard from "./toot-components/PreviewCard"; import PreviewCard from "./toots/PreviewCard";
type TootActionGroupProps<T extends mastodon.v1.Status> = { type TootActionGroupProps<T extends mastodon.v1.Status> = {
onRetoot?: (value: T) => void; onRetoot?: (value: T) => void;
@ -45,7 +47,7 @@ type TootActionGroupProps<T extends mastodon.v1.Status> = {
) => void; ) => void;
}; };
type TootCardProps = { type RegularTootProps = {
status: mastodon.v1.Status; status: mastodon.v1.Status;
actionable?: boolean; actionable?: boolean;
evaluated?: boolean; evaluated?: boolean;
@ -200,6 +202,11 @@ export function findElementActionable(
return current; return current;
} }
function onToggleReveal(setValue: Setter<boolean>, event: Event) {
event.stopPropagation();
setValue((x) => !x);
}
/** /**
* Component for a toot. * Component for a toot.
* *
@ -228,7 +235,7 @@ export function findElementActionable(
* You can extract the intent from the attributes of the "actionable" element. * You can extract the intent from the attributes of the "actionable" element.
* The action type is the dataset's `action`. * The action type is the dataset's `action`.
*/ */
const RegularToot: Component<TootCardProps> = (props) => { const RegularToot: Component<RegularTootProps> = (props) => {
let rootRef: HTMLElement; let rootRef: HTMLElement;
const [managed, managedActionGroup, rest] = splitProps( const [managed, managedActionGroup, rest] = splitProps(
props, props,
@ -239,6 +246,7 @@ const RegularToot: Component<TootCardProps> = (props) => {
const status = () => managed.status; const status = () => managed.status;
const toot = () => status().reblog ?? status(); const toot = () => status().reblog ?? status();
const session = useDefaultSession(); const session = useDefaultSession();
const [reveal, setReveal] = createSignal(false);
css` css`
.reply-sep { .reply-sep {
@ -285,7 +293,7 @@ const RegularToot: Component<TootCardProps> = (props) => {
return ( return (
<> <>
<section <article
classList={{ classList={{
[tootStyle.toot]: true, [tootStyle.toot]: true,
[tootStyle.expanded]: managed.evaluated, [tootStyle.expanded]: managed.evaluated,
@ -326,12 +334,23 @@ const RegularToot: Component<TootCardProps> = (props) => {
emojis={toot().emojis} emojis={toot().emojis}
mentions={toot().mentions} mentions={toot().mentions}
class={cardStyle.cardNoPad} class={cardStyle.cardNoPad}
sensitive={toot().sensitive}
spoilerText={toot().spoilerText}
reveal={reveal()}
onToggleReveal={[onToggleReveal, setReveal]}
/> />
<Show when={toot().card}> <Show
when={
toot().card && (!toot().sensitive || (toot().sensitive && reveal()))
}
>
<PreviewCard src={toot().card!} /> <PreviewCard src={toot().card!} />
</Show> </Show>
<Show when={toot().mediaAttachments.length > 0}> <Show when={toot().mediaAttachments.length > 0}>
<MediaAttachmentGrid attachments={toot().mediaAttachments} /> <MediaAttachmentGrid
attachments={toot().mediaAttachments}
sensitive={toot().sensitive}
/>
</Show> </Show>
<Show when={managed.actionable}> <Show when={managed.actionable}>
<Divider <Divider
@ -340,7 +359,7 @@ const RegularToot: Component<TootCardProps> = (props) => {
/> />
<TootActionGroup value={toot()} {...managedActionGroup} /> <TootActionGroup value={toot()} {...managedActionGroup} />
</Show> </Show>
</section> </article>
</> </>
); );
}; };

View file

@ -1,68 +0,0 @@
import type { mastodon } from "masto";
import {
splitProps,
type Component,
type JSX,
createRenderEffect,
createMemo,
} from "solid-js";
import { resolveCustomEmoji } from "../../masto/toot.js";
import { makeAcctText, useDefaultSession } from "../../masto/clients";
import "./TootContent.css";
function preventDefault(event: Event) {
event.preventDefault();
}
export type TootContentProps = {
source?: string;
emojis?: mastodon.v1.CustomEmoji[];
mentions: mastodon.v1.StatusMention[];
} & JSX.HTMLAttributes<HTMLDivElement>;
const TootContent: Component<TootContentProps> = (oprops) => {
const session = useDefaultSession();
const [props, rest] = splitProps(oprops, [
"source",
"emojis",
"mentions",
"class",
]);
const clientFinder = createMemo(() =>
session() ? makeAcctText(session()!) : undefined,
);
return (
<div
ref={(ref) => {
createRenderEffect(() => {
ref.innerHTML = props.source
? props.emojis
? resolveCustomEmoji(props.source, props.emojis)
: props.source
: "";
});
createRenderEffect(() => {
const finder = clientFinder();
for (const mention of props.mentions) {
const elements = ref.querySelectorAll<HTMLAnchorElement>(
`a[href='${mention.url}']`,
);
for (const e of elements) {
e.onclick = preventDefault;
e.dataset.action = "acct";
e.dataset.client = finder;
e.dataset.acctId = mention.id.toString();
}
}
});
}}
class={`TootContent ${props.class || ""}`}
{...rest}
></div>
);
};
export default TootContent;

View file

@ -4,6 +4,10 @@
margin-right: var(--card-pad, 0); margin-right: var(--card-pad, 0);
line-height: 1.5; line-height: 1.5;
> .content {
display: contents;
}
& * { & * {
user-select: text; user-select: text;
} }

View file

@ -0,0 +1,115 @@
import type { mastodon } from "masto";
import {
splitProps,
type Component,
type JSX,
createRenderEffect,
createMemo,
Show,
} from "solid-js";
import { resolveCustomEmoji } from "../../masto/toot.js";
import { makeAcctText, useDefaultSession } from "../../masto/clients.js";
import "./TootContent.css";
import { Button } from "@suid/material";
import { createTranslator } from "../../platform/i18n.jsx";
function preventDefault(event: Event) {
event.preventDefault();
}
export type TootContentProps = JSX.HTMLAttributes<HTMLDivElement> & {
source?: string;
emojis?: mastodon.v1.CustomEmoji[];
mentions: mastodon.v1.StatusMention[];
sensitive?: boolean;
spoilerText?: string;
reveal?: boolean;
onToggleReveal?: JSX.EventHandlerUnion<HTMLElement, Event>;
};
const TootContent: Component<TootContentProps> = (oprops) => {
const [t] = createTranslator(
(code) =>
import(`./i18n/${code}.json`) as Promise<{
default: {
cw: string;
};
}>,
);
const session = useDefaultSession();
const [props, rest] = splitProps(oprops, [
"source",
"emojis",
"mentions",
"class",
"sensitive",
"spoilerText",
"reveal",
"onToggleReveal",
]);
const clientFinder = createMemo(() =>
session() ? makeAcctText(session()!) : undefined,
);
const shouldRevealContent = () => {
return !props.sensitive || (props.sensitive && props.reveal);
};
return (
<div
ref={(ref) => {
createRenderEffect(() => {
const finder = clientFinder();
for (const mention of props.mentions) {
const elements = ref.querySelectorAll<HTMLAnchorElement>(
`a[href='${mention.url}']`,
);
for (const e of elements) {
e.onclick = preventDefault;
e.dataset.action = "acct";
e.dataset.client = finder;
e.dataset.acctId = mention.id.toString();
}
}
});
}}
class={`TootContent ${props.class || ""}`}
{...rest}
>
<Show when={props.sensitive}>
<div>
<span
ref={(ref) => {
createRenderEffect(() => {
ref.innerHTML = props.spoilerText
? props.emojis
? resolveCustomEmoji(props.spoilerText, props.emojis)
: props.spoilerText
: "";
});
}}
></span>
<Button onClick={props.onToggleReveal}>{t("cw")}</Button>
</div>
</Show>
<Show when={shouldRevealContent()}>
<div
class="content"
ref={(ref) =>
createRenderEffect(() => {
ref.innerHTML = props.source
? props.emojis
? resolveCustomEmoji(props.source, props.emojis)
: props.source
: "";
})
}
></div>
</Show>
</div>
);
};
export default TootContent;

View file

@ -0,0 +1,3 @@
{
"cw": "\"Content Warning\""
}

View file

@ -0,0 +1,3 @@
{
"cw": "“内容警告”"
}