TootBottomSheet: set document title

This commit is contained in:
thislight 2024-10-14 20:05:08 +08:00
parent 8bf133c1cf
commit eb461d3708
No known key found for this signature in database
GPG key ID: A50F9451AC56A63E
2 changed files with 18 additions and 6 deletions

View file

@ -24,6 +24,7 @@ import { css } from "solid-styled";
import { vibrate } from "../platform/hardware";
import { createTimeSource, TimeSourceProvider } from "../platform/timesrc";
import TootComposer from "./TootComposer";
import { useDocumentTitle } from "../utils";
let cachedEntry: [string, mastodon.v1.Status] | undefined;
@ -106,8 +107,14 @@ const TootBottomSheet: Component = (props) => {
}
});
useDocumentTitle(() => {
const t = toot()?.reblog ?? toot()
const name = t?.account.displayName ?? "Someone"
return `${name}'s toot`
})
const tootDisplayName = () => {
const t = toot();
const t = toot()?.reblog ?? toot();
if (t) {
return resolveCustomEmoji(t.account.displayName, t.account.emojis);
}