165feedb86
* alf the repost dropdown on web + import icons * alf like icon * convert other post controls * add missing padding to share button * refine buttons and use better icons * revert buttonicon changes * remove ButtonIcon and ButtonText from repost dialog * use 15px font size when not big * reduce size and use contrast_25 * add hover state to logged out view * add `userSelect: 'none'` to buttons * use width rather than height * fix quote close behaviour * prettier * Fix Esc on repost * Use new icons for placeholder * Fix placeholder --------- Co-authored-by: Dan Abramov <dan.abramov@gmail.com>
135 lines
3.6 KiB
TypeScript
135 lines
3.6 KiB
TypeScript
import React from 'react'
|
|
import {Pressable, View} from 'react-native'
|
|
import {msg} from '@lingui/macro'
|
|
import {useLingui} from '@lingui/react'
|
|
|
|
import {useRequireAuth} from '#/state/session'
|
|
import {useSession} from '#/state/session'
|
|
import {atoms as a, useTheme} from '#/alf'
|
|
import {Button} from '#/components/Button'
|
|
import {CloseQuote_Stroke2_Corner1_Rounded as Quote} from '#/components/icons/Quote'
|
|
import {Repost_Stroke2_Corner2_Rounded as Repost} from '#/components/icons/Repost'
|
|
import * as Menu from '#/components/Menu'
|
|
import {Text} from '#/components/Typography'
|
|
import {EventStopper} from '../EventStopper'
|
|
|
|
interface Props {
|
|
isReposted: boolean
|
|
repostCount?: number
|
|
onRepost: () => void
|
|
onQuote: () => void
|
|
big?: boolean
|
|
}
|
|
|
|
export const RepostButton = ({
|
|
isReposted,
|
|
repostCount,
|
|
onRepost,
|
|
onQuote,
|
|
big,
|
|
}: Props) => {
|
|
const t = useTheme()
|
|
const {_} = useLingui()
|
|
const {hasSession} = useSession()
|
|
const requireAuth = useRequireAuth()
|
|
|
|
const color = React.useMemo(
|
|
() => ({
|
|
color: isReposted ? t.palette.positive_600 : t.palette.contrast_500,
|
|
}),
|
|
[t, isReposted],
|
|
)
|
|
|
|
return hasSession ? (
|
|
<EventStopper onKeyDown={false}>
|
|
<Menu.Root>
|
|
<Menu.Trigger label={_(msg`Repost or quote post`)}>
|
|
{({props, state}) => {
|
|
return (
|
|
<Pressable
|
|
{...props}
|
|
style={[
|
|
a.rounded_full,
|
|
(state.hovered || state.pressed) && {
|
|
backgroundColor: t.palette.contrast_25,
|
|
},
|
|
]}>
|
|
<RepostInner
|
|
isReposted={isReposted}
|
|
color={color}
|
|
repostCount={repostCount}
|
|
big={big}
|
|
/>
|
|
</Pressable>
|
|
)
|
|
}}
|
|
</Menu.Trigger>
|
|
<Menu.Outer style={{minWidth: 170}}>
|
|
<Menu.Item
|
|
label={isReposted ? _(msg`Undo repost`) : _(msg`Repost`)}
|
|
testID="repostDropdownRepostBtn"
|
|
onPress={onRepost}>
|
|
<Menu.ItemText>
|
|
{isReposted ? _(msg`Undo repost`) : _(msg`Repost`)}
|
|
</Menu.ItemText>
|
|
<Menu.ItemIcon icon={Repost} position="right" />
|
|
</Menu.Item>
|
|
<Menu.Item
|
|
label={_(msg`Quote post`)}
|
|
testID="repostDropdownQuoteBtn"
|
|
onPress={onQuote}>
|
|
<Menu.ItemText>{_(msg`Quote post`)}</Menu.ItemText>
|
|
<Menu.ItemIcon icon={Quote} position="right" />
|
|
</Menu.Item>
|
|
</Menu.Outer>
|
|
</Menu.Root>
|
|
</EventStopper>
|
|
) : (
|
|
<Button
|
|
onPress={() => {
|
|
requireAuth(() => {})
|
|
}}
|
|
label={_(msg`Repost or quote post`)}
|
|
style={{padding: 0}}
|
|
hoverStyle={t.atoms.bg_contrast_25}
|
|
shape="round"
|
|
variant="ghost"
|
|
color="secondary">
|
|
<RepostInner
|
|
isReposted={isReposted}
|
|
color={color}
|
|
repostCount={repostCount}
|
|
big={big}
|
|
/>
|
|
</Button>
|
|
)
|
|
}
|
|
|
|
const RepostInner = ({
|
|
isReposted,
|
|
color,
|
|
repostCount,
|
|
big,
|
|
}: {
|
|
isReposted: boolean
|
|
color: {color: string}
|
|
repostCount?: number
|
|
big?: boolean
|
|
}) => (
|
|
<View style={[a.flex_row, a.align_center, a.gap_xs, {padding: 5}]}>
|
|
<Repost style={color} width={big ? 22 : 18} />
|
|
{typeof repostCount !== 'undefined' && repostCount > 0 ? (
|
|
<Text
|
|
testID="repostCount"
|
|
style={[
|
|
color,
|
|
big ? a.text_md : {fontSize: 15},
|
|
isReposted && [a.font_bold],
|
|
a.user_select_none,
|
|
]}>
|
|
{repostCount}
|
|
</Text>
|
|
) : undefined}
|
|
</View>
|
|
)
|