Skip to content

Commit

Permalink
fix(mobile): update types and star entry with view
Browse files Browse the repository at this point in the history
  • Loading branch information
lawvs committed Feb 12, 2025
1 parent 60a2b9c commit c239fdb
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions apps/mobile/src/modules/context-menu/entry.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,11 @@ import { collectionSyncService } from "@/src/store/collection/store"
import { useEntry } from "@/src/store/entry/hooks"
import { unreadSyncService } from "@/src/store/unread/store"

import { useSelectedView } from "../feed-drawer/atoms"

export const EntryItemContextMenu = ({ id, children }: PropsWithChildren<{ id: string }>) => {
const entry = useEntry(id)
const view = useSelectedView()
const isEntryStarred = useIsEntryStarred(id)

const handlePressPreview = useCallback(() => {
Expand Down Expand Up @@ -66,11 +69,14 @@ export const EntryItemContextMenu = ({ id, children }: PropsWithChildren<{ id: s
toast.error("Feed not found")
return
}
if (!view) {
toast.error("View not found")
return
}
collectionSyncService.starEntry({
feedId: entry.feedId,
entryId: id,
// TODO update view
view: 0,
view,
})
toast.info("Starred")
}
Expand Down

0 comments on commit c239fdb

Please sign in to comment.