* use the .reblog to replace the remote toot
This commit is contained in:
parent
6306c5afbe
commit
d3a7602fb5
1 changed files with 12 additions and 10 deletions
|
@ -8,21 +8,13 @@ import {
|
|||
type Component,
|
||||
} from "solid-js";
|
||||
import Scaffold from "../material/Scaffold";
|
||||
import TootThread from "./TootThread";
|
||||
import {
|
||||
AppBar,
|
||||
Avatar,
|
||||
CircularProgress,
|
||||
IconButton,
|
||||
Toolbar,
|
||||
} from "@suid/material";
|
||||
import { AppBar, Avatar, CircularProgress, IconButton, Toolbar } from "@suid/material";
|
||||
import { Title } from "../material/typography";
|
||||
import {
|
||||
ArrowBack as BackIcon,
|
||||
Close as CloseIcon,
|
||||
Send,
|
||||
} from "@suid/icons-material";
|
||||
import { isiOS } from "../platform/host";
|
||||
import { createUnauthorizedClient, useSessions } from "../masto/clients";
|
||||
import { resolveCustomEmoji } from "../masto/toot";
|
||||
import RegularToot from "./RegularToot";
|
||||
|
@ -121,6 +113,11 @@ const TootBottomSheet: Component = (props) => {
|
|||
const onBookmark = async () => {
|
||||
const status = remoteToot()!;
|
||||
const client = actSession()!.client;
|
||||
setRemoteToot(
|
||||
Object.assign({}, status, {
|
||||
bookmarked: !status.bookmarked,
|
||||
}),
|
||||
);
|
||||
const result = await (status.bookmarked
|
||||
? client.v1.statuses.$select(status.id).unbookmark()
|
||||
: client.v1.statuses.$select(status.id).bookmark());
|
||||
|
@ -140,12 +137,17 @@ const TootBottomSheet: Component = (props) => {
|
|||
? client.v1.statuses.$select(status.id).unreblog()
|
||||
: client.v1.statuses.$select(status.id).reblog());
|
||||
vibrate([20, 30]);
|
||||
setRemoteToot(result);
|
||||
setRemoteToot(result.reblog!);
|
||||
};
|
||||
|
||||
const onFav = async () => {
|
||||
const status = remoteToot()!;
|
||||
const client = actSession()!.client;
|
||||
setRemoteToot(
|
||||
Object.assign({}, status, {
|
||||
favourited: !status.favourited,
|
||||
}),
|
||||
);
|
||||
const result = await (status.favourited
|
||||
? client.v1.statuses.$select(status.id).favourite()
|
||||
: client.v1.statuses.$select(status.id).unfavourite());
|
||||
|
|
Loading…
Reference in a new issue