refs #4754 Update menu when follow/unfollow tags

This commit is contained in:
AkiraFukushima 2024-09-03 21:45:28 +09:00
parent ef8278ae30
commit 8de65ab9f9
No known key found for this signature in database
GPG Key ID: B7EA3A3C9AEC9F0E
2 changed files with 28 additions and 3 deletions

View File

@ -8,6 +8,7 @@ import Profile from './Profile'
import Tag from './Tag'
import { Account } from '@/db'
import { useIntl } from 'react-intl'
import { useTimelines } from '../layouts/timelines'
type Props = {
client: MegalodonInterface
@ -20,6 +21,7 @@ export default function Detail(props: Props) {
const router = useRouter()
const { formatMessage } = useIntl()
const [tagFollowing, setTagFollowing] = useState(false)
const { reloadMenu } = useTimelines()
useEffect(() => {
if (router.query.status_id) {
@ -63,11 +65,13 @@ export default function Detail(props: Props) {
const followTag = async (tag: string) => {
await props.client.followTag(tag)
await refreshFollowing(tag)
await reloadMenu()
}
const unfollowTag = async (tag: string) => {
await props.client.unfollowTag(tag)
await refreshFollowing(tag)
await reloadMenu()
}
return (

View File

@ -1,14 +1,28 @@
import { Account, db } from '@/db'
import { Card, Chip, List, ListItem, ListItemPrefix, ListItemSuffix } from '@material-tailwind/react'
import generator, { Entity } from 'megalodon'
import generator, { Entity, MegalodonInterface } from 'megalodon'
import { useRouter } from 'next/router'
import { useEffect, useState } from 'react'
import { createContext, useContext, useEffect, useState } from 'react'
import { useHotkeys } from 'react-hotkeys-hook'
import { FaBell, FaBookmark, FaGlobe, FaHouse, FaList, FaStar, FaUsers, FaHashtag } from 'react-icons/fa6'
import { useIntl } from 'react-intl'
import Jump from '../Jump'
import { useUnreads } from '@/provider/unreads'
type Context = {
reloadMenu: () => Promise<void>
}
const TimelinesContext = createContext<Context>({
reloadMenu: async () => {}
})
TimelinesContext.displayName = 'TimelinesContext'
export const useTimelines = () => {
return useContext(TimelinesContext)
}
type LayoutProps = {
children: React.ReactNode
}
@ -29,6 +43,7 @@ export default function Layout({ children }: LayoutProps) {
const [lists, setLists] = useState<Array<Entity.List>>([])
const [followedTags, setFollowedTags] = useState<Array<Entity.Tag>>([])
const [openJump, setOpenJump] = useState(false)
const [client, setClient] = useState<MegalodonInterface>()
useHotkeys('mod+k', () => setOpenJump(current => !current))
@ -46,6 +61,7 @@ export default function Layout({ children }: LayoutProps) {
useEffect(() => {
if (!account) return
const c = generator(account.sns, account.url, account.access_token, 'Whalebird')
setClient(c)
const f = async () => {
const res = await c.getLists()
setLists(res.data)
@ -97,6 +113,11 @@ export default function Layout({ children }: LayoutProps) {
}
]
const reloadMenu = async () => {
const res = await client.getFollowedTags()
setFollowedTags(res.data)
}
return (
<section className="flex h-screen w-full overflow-hidden">
<Jump opened={openJump} close={() => setOpenJump(false)} timelines={pages} />
@ -159,7 +180,7 @@ export default function Layout({ children }: LayoutProps) {
))}
</List>
</Card>
{children}
<TimelinesContext.Provider value={{ reloadMenu }}>{children}</TimelinesContext.Provider>
</section>
)
}