restore swipe-to-right to toggle read/unread status (#1019)

This commit is contained in:
Athou
2022-11-04 08:45:37 +01:00
parent a11e528b8d
commit f9e7653901
32 changed files with 140 additions and 2 deletions

View File

@@ -103,6 +103,8 @@ export function KeyboardShortcutsHelp() {
</td>
<td>
<Kbd>M</Kbd>
<span>, </span>
<Trans>Swipe header to the right</Trans>
</td>
</tr>
<tr>

View File

@@ -1,8 +1,10 @@
import { Anchor, Box, createStyles, Divider, Paper } from "@mantine/core"
import { Constants } from "app/constants"
import { useAppSelector } from "app/store"
import { markEntry } from "app/slices/entries"
import { useAppDispatch, useAppSelector } from "app/store"
import { Entry } from "app/types"
import React from "react"
import { useSwipeable } from "react-swipeable"
import { FeedEntryBody } from "./FeedEntryBody"
import { FeedEntryCompactHeader } from "./FeedEntryCompactHeader"
import { FeedEntryFooter } from "./FeedEntryFooter"
@@ -45,8 +47,14 @@ const useStyles = createStyles((theme, props: FeedEntryProps) => {
export function FeedEntry(props: FeedEntryProps) {
const { classes } = useStyles(props)
const viewMode = useAppSelector(state => state.user.settings?.viewMode)
const dispatch = useAppDispatch()
const compactHeader = viewMode === "title" && !props.expanded
const swipeHandlers = useSwipeable({
onSwipedRight: () => dispatch(markEntry({ entry: props.entry, read: !props.entry.read })),
})
return (
<Paper withBorder className={classes.paper}>
<Anchor
@@ -57,7 +65,7 @@ export function FeedEntry(props: FeedEntryProps) {
onClick={props.onHeaderClick}
onAuxClick={props.onHeaderClick}
>
<Box p="xs">
<Box p="xs" {...swipeHandlers}>
{compactHeader && <FeedEntryCompactHeader entry={props.entry} />}
{!compactHeader && <FeedEntryHeader entry={props.entry} expanded={props.expanded} />}
</Box>