a6713f9793
* WIP: Account switching * Fix empty USER query ANON_USER_ID was undefined and thus the query for @anon had no variables. * Apply multiAuthMiddleware in /api/graphql * Fix 'you must be logged in' query error on switch to anon * Add smart 'switch account' button "smart" means that it only shows if there are accounts to which one can switch * Fix multiAuth not set in backend * Comment fixes, minor changes * Use fw-bold instead of 'selected' * Close dropdown and offcanvas Inside a dropdown, we can rely on autoClose but need to wrap the buttons with <Dropdown.Item> for that to work. For the offcanvas, we need to pass down handleClose. * Use button to add account * Some pages require hard reload on account switch * Reinit settings form on account switch * Also don't refetch WalletHistory * Formatting * Use width: fit-content for standalone SignUpButton * Remove unused className * Use fw-bold and text-underline on selected * Fix inconsistent padding of login buttons * Fix duplicate redirect from /settings on anon switch * Never throw during refetch * Throw errors which extend GraphQLError * Only use meAnonSats if logged out * Use reactive variable for meAnonSats The previous commit broke the UI update after anon zaps because we actually updated item.meSats in the cache and not item.meAnonSats. Updating item.meAnonSats was not possible because it's a local field. For that, one needs to use reactive variables. We do this now and thus also don't need the useEffect hack in item-info.js anymore. * Switch to new user * Fix missing cleanup during logout If we logged in but never switched to any other account, the 'multi_auth.user-id' cookie was not set. This meant that during logout, the other 'multi_auth.*' cookies were not deleted. This broke the account switch modal. This is fixed by setting the 'multi_auth.user-id' cookie on login. Additionally, we now cleanup if cookie pointer OR session is set (instead of only if both are set). * Fix comments in middleware * Remove unnecessary effect dependencies setState is stable and thus only noise in effect dependencies * Show but disable unavailable auth methods * make signup button consistent with others * Always reload page on switch * refine account switch styling * logout barrier --------- Co-authored-by: Keyan <34140557+huumn@users.noreply.github.com> Co-authored-by: k00b <k00b@stacker.news>
228 lines
6.9 KiB
JavaScript
228 lines
6.9 KiB
JavaScript
import { Badge, Button, CardFooter, Dropdown } from 'react-bootstrap'
|
|
import { AccordianCard } from './accordian-item'
|
|
import TerritoryPaymentDue, { TerritoryBillingLine } from './territory-payment-due'
|
|
import Link from 'next/link'
|
|
import Text from './text'
|
|
import { numWithUnits } from '@/lib/format'
|
|
import styles from './item.module.css'
|
|
import Hat from './hat'
|
|
import { useMe } from './me'
|
|
import Share from './share'
|
|
import { gql, useMutation } from '@apollo/client'
|
|
import { useToast } from './toast'
|
|
import ActionDropdown from './action-dropdown'
|
|
import { TerritoryTransferDropdownItem } from './territory-transfer'
|
|
|
|
export function TerritoryDetails ({ sub, children }) {
|
|
return (
|
|
<AccordianCard
|
|
header={
|
|
<small className='text-muted fw-bold align-items-center d-flex'>
|
|
{sub.name}
|
|
{sub.status === 'STOPPED' && <Badge className='ms-2' bg='danger'>archived</Badge>}
|
|
{(sub.moderated || sub.moderatedCount > 0) && <Badge className='ms-2' bg='secondary'>moderated{sub.moderatedCount > 0 && ` ${sub.moderatedCount}`}</Badge>}
|
|
{(sub.nsfw) && <Badge className='ms-2' bg='secondary'>nsfw</Badge>}
|
|
</small>
|
|
}
|
|
>
|
|
{children}
|
|
<TerritoryInfo sub={sub} />
|
|
</AccordianCard>
|
|
)
|
|
}
|
|
|
|
export function TerritoryInfo ({ sub }) {
|
|
return (
|
|
<>
|
|
<div className='py-2'>
|
|
<Text>{sub.desc}</Text>
|
|
</div>
|
|
<CardFooter className={`py-1 ${styles.other}`}>
|
|
<div className='text-muted'>
|
|
<span>founded by </span>
|
|
<Link href={`/${sub.user.name}`}>
|
|
@{sub.user.name}<span> </span><Hat className='fill-grey' user={sub.user} height={12} width={12} />
|
|
</Link>
|
|
<span> on </span>
|
|
<span className='fw-bold'>{new Date(sub.createdAt).toDateString()}</span>
|
|
</div>
|
|
<div className='text-muted'>
|
|
<span>post cost </span>
|
|
<span className='fw-bold'>{numWithUnits(sub.baseCost)}</span>
|
|
</div>
|
|
<TerritoryBillingLine sub={sub} />
|
|
</CardFooter>
|
|
</>
|
|
)
|
|
}
|
|
|
|
export default function TerritoryHeader ({ sub }) {
|
|
const { me } = useMe()
|
|
const toaster = useToast()
|
|
|
|
const [toggleMuteSub] = useMutation(
|
|
gql`
|
|
mutation toggleMuteSub($name: String!) {
|
|
toggleMuteSub(name: $name)
|
|
}`, {
|
|
update (cache, { data: { toggleMuteSub } }) {
|
|
cache.modify({
|
|
id: `Sub:{"name":"${sub.name}"}`,
|
|
fields: {
|
|
meMuteSub: () => toggleMuteSub
|
|
}
|
|
})
|
|
}
|
|
}
|
|
)
|
|
|
|
const isMine = Number(sub.userId) === Number(me?.id)
|
|
|
|
return (
|
|
<>
|
|
<TerritoryPaymentDue sub={sub} />
|
|
<div className='mb-2 mt-1'>
|
|
<div>
|
|
<TerritoryDetails sub={sub}>
|
|
<div className='d-flex my-2 justify-content-end'>
|
|
{sub.name}
|
|
<Share path={`/~${sub.name}`} title={`~${sub.name} stacker news territory`} className='mx-1' />
|
|
{me &&
|
|
<>
|
|
{(isMine
|
|
? (
|
|
<Link href={`/~${sub.name}/edit`} className='d-flex align-items-center'>
|
|
<Button variant='outline-grey border-2 rounded py-0' size='sm'>edit territory</Button>
|
|
</Link>)
|
|
: (
|
|
<Button
|
|
variant='outline-grey border-2 py-0 rounded'
|
|
size='sm'
|
|
onClick={async () => {
|
|
try {
|
|
await toggleMuteSub({ variables: { name: sub.name } })
|
|
} catch {
|
|
toaster.danger(`failed to ${sub.meMuteSub ? 'join' : 'mute'} territory`)
|
|
return
|
|
}
|
|
toaster.success(`${sub.meMuteSub ? 'joined' : 'muted'} territory`)
|
|
}}
|
|
>{sub.meMuteSub ? 'join' : 'mute'} territory
|
|
</Button>)
|
|
)}
|
|
<ActionDropdown>
|
|
<ToggleSubSubscriptionDropdownItem sub={sub} />
|
|
{isMine && (
|
|
<>
|
|
<Dropdown.Divider />
|
|
<TerritoryTransferDropdownItem sub={sub} />
|
|
</>
|
|
)}
|
|
</ActionDropdown>
|
|
</>}
|
|
</div>
|
|
</TerritoryDetails>
|
|
</div>
|
|
</div>
|
|
</>
|
|
)
|
|
}
|
|
|
|
export function MuteSubDropdownItem ({ item, sub }) {
|
|
const toaster = useToast()
|
|
|
|
const [toggleMuteSub] = useMutation(
|
|
gql`
|
|
mutation toggleMuteSub($name: String!) {
|
|
toggleMuteSub(name: $name)
|
|
}`, {
|
|
update (cache, { data: { toggleMuteSub } }) {
|
|
cache.modify({
|
|
id: `Sub:{"name":"${sub.name}"}`,
|
|
fields: {
|
|
meMuteSub: () => toggleMuteSub
|
|
}
|
|
})
|
|
}
|
|
}
|
|
)
|
|
|
|
return (
|
|
<Dropdown.Item
|
|
onClick={async () => {
|
|
try {
|
|
await toggleMuteSub({ variables: { name: sub.name } })
|
|
} catch {
|
|
toaster.danger(`failed to ${sub.meMuteSub ? 'join' : 'mute'} territory`)
|
|
return
|
|
}
|
|
toaster.success(`${sub.meMuteSub ? 'joined' : 'muted'} territory`)
|
|
}}
|
|
>{sub.meMuteSub ? 'unmute' : 'mute'} ~{sub.name}
|
|
</Dropdown.Item>
|
|
)
|
|
}
|
|
|
|
export function PinSubDropdownItem ({ item: { id, position } }) {
|
|
const toaster = useToast()
|
|
const [pinItem] = useMutation(
|
|
gql`
|
|
mutation pinItem($id: ID!) {
|
|
pinItem(id: $id) {
|
|
position
|
|
}
|
|
}`, {
|
|
// refetch since position of other items might also have changed to fill gaps
|
|
refetchQueries: ['SubItems', 'Item']
|
|
}
|
|
)
|
|
return (
|
|
<Dropdown.Item
|
|
onClick={async () => {
|
|
try {
|
|
await pinItem({ variables: { id } })
|
|
toaster.success(position ? 'pin removed' : 'pin added')
|
|
} catch (err) {
|
|
toaster.danger(err.message)
|
|
}
|
|
}}
|
|
>
|
|
{position ? 'unpin item' : 'pin item'}
|
|
</Dropdown.Item>
|
|
)
|
|
}
|
|
|
|
export function ToggleSubSubscriptionDropdownItem ({ sub: { name, meSubscription } }) {
|
|
const toaster = useToast()
|
|
const [toggleSubSubscription] = useMutation(
|
|
gql`
|
|
mutation toggleSubSubscription($name: String!) {
|
|
toggleSubSubscription(name: $name)
|
|
}`, {
|
|
update (cache, { data: { toggleSubSubscription } }) {
|
|
cache.modify({
|
|
id: `Sub:{"name":"${name}"}`,
|
|
fields: {
|
|
meSubscription: () => toggleSubSubscription
|
|
}
|
|
})
|
|
}
|
|
}
|
|
)
|
|
return (
|
|
<Dropdown.Item
|
|
onClick={async () => {
|
|
try {
|
|
await toggleSubSubscription({ variables: { name } })
|
|
toaster.success(meSubscription ? 'unsubscribed' : 'subscribed')
|
|
} catch (err) {
|
|
console.error(err)
|
|
toaster.danger(meSubscription ? 'failed to unsubscribe' : 'failed to subscribe')
|
|
}
|
|
}}
|
|
>
|
|
{meSubscription ? `unsubscribe from ~${name}` : `subscribe to ~${name}`}
|
|
</Dropdown.Item>
|
|
)
|
|
}
|