2024-12-12 07:23:46 +00:00
|
|
|
'use client';
|
2024-01-20 16:16:14 +00:00
|
|
|
|
2024-12-12 07:23:46 +00:00
|
|
|
import 'react-loading-skeleton/dist/skeleton.css';
|
|
|
|
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
|
|
|
|
import { faSpinner, faCheckCircle, faXmarkCircle } from "@fortawesome/free-solid-svg-icons";
|
|
|
|
import { useMutation, useQueryClient } from "@tanstack/react-query";
|
|
|
|
import { updateIsUsernamePublic } from "./hooks/updateIsUsernamePublic";
|
|
|
|
import ProtectedRoute from "../components/protected-route";
|
|
|
|
import VibrateTest from "../components/vibrate-test";
|
|
|
|
import { useSession } from "next-auth/react"
|
|
|
|
import { LoginButton, LogoutButton } from "../components/auth-buttons";
|
|
|
|
import Skeleton, { SkeletonTheme } from 'react-loading-skeleton';
|
2024-01-20 16:16:14 +00:00
|
|
|
|
|
|
|
export default function Page() {
|
|
|
|
|
2024-12-12 07:23:46 +00:00
|
|
|
const queryClient = useQueryClient()
|
|
|
|
// const sessionContext = Session.useSessionContext()
|
|
|
|
// if (sessionContext.loading) {
|
|
|
|
// return <Spinner></Spinner>
|
|
|
|
// }
|
|
|
|
const session = useSession()
|
|
|
|
|
|
|
|
const metadataMutation = useMutation({
|
|
|
|
mutationFn: updateIsUsernamePublic,
|
|
|
|
mutationKey: ['user/metadata'],
|
|
|
|
onSuccess: () => queryClient.invalidateQueries({ queryKey: ['user/metadata'] })
|
|
|
|
})
|
|
|
|
|
|
|
|
// const metadataQuery = useQuery({
|
|
|
|
// queryKey: ['user/metadata'],
|
|
|
|
// queryFn: () => fetchMetadata()
|
|
|
|
// })
|
|
|
|
|
|
|
|
// const [ isUsernamePublic, setIsUsernamePublic ] = useState<boolean>()
|
|
|
|
// const [ username, setUsername ] = useState('')
|
|
|
|
// useEffect(() => {
|
|
|
|
// if (metadataQuery.data?.metadata) {
|
|
|
|
// setUsername(formatPatronUsername(metadataQuery.data.metadata.first_name, metadataQuery.data.metadata.last_name))
|
|
|
|
// setIsUsernamePublic(metadataQuery.data.metadata.isUsernamePublic)
|
|
|
|
// }
|
|
|
|
// }, [metadataQuery.data])
|
|
|
|
|
|
|
|
const isUsernamePublic = (session.data?.profile?.username_visibility === 'public')
|
|
|
|
|
|
|
|
|
|
|
|
|
2024-01-20 16:16:14 +00:00
|
|
|
return (
|
2024-12-12 07:23:46 +00:00
|
|
|
<div className="content">
|
|
|
|
{/* {(metadataQuery.isPending) && <Spinner></Spinner>} */}
|
|
|
|
<div className="section">
|
|
|
|
<p className="title is-3">Debug section</p>
|
|
|
|
{/* {(metadataQuery.isPending) ? <span><Spinner></Spinner> isPending=true</span> : <span>isPending=false</span>} */}
|
|
|
|
{/* <p>metadataQuery as follows</p> */}
|
|
|
|
{/* <pre><code>{JSON.stringify(metadataQuery.data, null, 2)}</code></pre> */}
|
|
|
|
<p>session as follows</p>
|
|
|
|
<pre>{JSON.stringify(session, null, 2)}</pre>
|
|
|
|
{(session.status === 'unauthenticated') && <LoginButton></LoginButton>}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
{(session.data?.user) &&
|
|
|
|
<div className="section">
|
|
|
|
|
|
|
|
<h1 className="title is-1 mb-3">Profile</h1>
|
2024-01-20 16:16:14 +00:00
|
|
|
|
2024-12-12 07:23:46 +00:00
|
|
|
<LogoutButton></LogoutButton>
|
2024-01-20 16:16:14 +00:00
|
|
|
|
2024-12-12 07:23:46 +00:00
|
|
|
<div className="card mt-5">
|
|
|
|
<div className="card-content">
|
|
|
|
<div className="media-content">
|
|
|
|
{/* <p className="title is-4">{username}</p> */}
|
|
|
|
<p className="subtitle is-6">{session.data?.user?.name}</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2024-01-20 16:16:14 +00:00
|
|
|
|
2024-12-12 07:23:46 +00:00
|
|
|
<h2 className="title is-2">Patron Perks</h2>
|
|
|
|
<div className="box">
|
|
|
|
<h3 className="title is-3">Test Perk (not real)</h3>
|
|
|
|
<ProtectedRoute featureName="Test Perk" requiredUserRole="default-roles-futureporn">
|
|
|
|
<p>Hey look at you, you're granted access to this perk!</p>
|
|
|
|
</ProtectedRoute>
|
|
|
|
</div>
|
2024-01-20 16:16:14 +00:00
|
|
|
|
2024-12-12 07:23:46 +00:00
|
|
|
<div className="box">
|
|
|
|
<h3 className="title is-3">Website Shoutout</h3>
|
|
|
|
<ProtectedRoute featureName="Website shoutout" requiredUserRole="patron">
|
|
|
|
<span className="mr-2">Display {(!!session.data.user.name) ? session.data.user.name : <SkeletonTheme baseColor="#000" highlightColor="#000"><Skeleton count={1} enableAnimation={false} width="10em" /></SkeletonTheme>} publicly?</span>
|
|
|
|
<input className="mr-2" type="checkbox" checked={isUsernamePublic} onChange={(evt) => metadataMutation.mutate({ isUsernamePublic: evt.target.checked })}/>
|
|
|
|
{(metadataMutation.status === 'success') && <FontAwesomeIcon color="lime" icon={faCheckCircle}></FontAwesomeIcon>}
|
|
|
|
{(metadataMutation.status === 'pending') && <FontAwesomeIcon icon={faSpinner}></FontAwesomeIcon>}
|
|
|
|
{(metadataMutation.status === 'error') && <FontAwesomeIcon color="red" icon={faXmarkCircle}></FontAwesomeIcon>}
|
|
|
|
</ProtectedRoute>
|
|
|
|
</div>
|
2024-01-20 16:16:14 +00:00
|
|
|
|
2024-12-12 07:23:46 +00:00
|
|
|
<div className='box'>
|
|
|
|
<h3 className="title is-3">Premium Content Delivery Network (CDN1)</h3>
|
|
|
|
<ProtectedRoute featureName="CDN1" requiredUserRole="patron">
|
|
|
|
<p><FontAwesomeIcon icon={faCheckCircle} className="mr-2"></FontAwesomeIcon> You have access to Futureporn's Premium CDN for reliable video playback</p>
|
|
|
|
</ProtectedRoute>
|
|
|
|
</div>
|
2024-01-20 16:16:14 +00:00
|
|
|
|
2024-12-12 07:23:46 +00:00
|
|
|
<div className='box'>
|
|
|
|
<h3 className="title is-3">Economy Content Delivery Network (CDN2)</h3>
|
|
|
|
<ProtectedRoute featureName="CDN2" requiredUserRole="default-roles-futureporn">
|
|
|
|
<p><FontAwesomeIcon icon={faCheckCircle} className="mr-2"></FontAwesomeIcon> You have access to Futureporn's Economy CDN for basic video playback</p>
|
|
|
|
</ProtectedRoute>
|
|
|
|
</div>
|
2024-01-20 16:16:14 +00:00
|
|
|
|
|
|
|
|
2024-12-12 07:23:46 +00:00
|
|
|
<div className="box">
|
|
|
|
<h3 className="title is-3">Vibrate (test)</h3>
|
|
|
|
<VibrateTest></VibrateTest>
|
|
|
|
</div>
|
|
|
|
|
2024-01-20 16:16:14 +00:00
|
|
|
</div>
|
2024-12-12 07:23:46 +00:00
|
|
|
}
|
|
|
|
</div>
|
2024-01-20 16:16:14 +00:00
|
|
|
)
|
2024-12-12 07:23:46 +00:00
|
|
|
// if (metadataQuery.isPending) return <Spinner></Spinner>;
|
|
|
|
// return <pre><code>{JSON.stringify(metadataQuery.data, null, 2)}</code></pre>
|
|
|
|
// return <p>@todo</p>
|
|
|
|
// if (!isPending) return <Spinner></Spinner>;
|
|
|
|
// if (!data) return <p>there is no data</p>;
|
|
|
|
// if (!data?.metadata) return <p>there is no data.metadata</p>;
|
|
|
|
// const { first_name, last_name } = data.metadata
|
|
|
|
// const username = formatPatronUsername(first_name, last_name)
|
|
|
|
// const { metadata } = data || {}
|
|
|
|
// const { isUsernamePublic } = metadata
|
|
|
|
|
|
|
|
|
|
|
|
// return (
|
|
|
|
// <>
|
|
|
|
|
|
|
|
// <div className="content">
|
|
|
|
// <div className="section">
|
|
|
|
// <h1 className="title is-1 mb-3">Profile</h1>
|
|
|
|
|
|
|
|
// <div className="field is-horizontal">
|
|
|
|
// <div className="field-label">Username</div>
|
|
|
|
// <p className="field is-expanded">
|
|
|
|
// {isPending &&
|
|
|
|
// <SkeletonTheme baseColor="#000" highlightColor="#000">
|
|
|
|
// <Skeleton count={1} enableAnimation={false} width="10em" />
|
|
|
|
// </SkeletonTheme>
|
|
|
|
// }
|
|
|
|
// {!isPending && <p><i>{username}</i></p>}
|
|
|
|
// </p>
|
|
|
|
// </div>
|
|
|
|
|
|
|
|
// <div className="field is-horizontal">
|
|
|
|
// <div className="field-label">User ID</div>
|
|
|
|
// <div className="field is-expanded">
|
|
|
|
// <p><i>{sessionContext.userId}</i></p>
|
|
|
|
// </div>
|
|
|
|
// </div>
|
|
|
|
|
|
|
|
// <h2 className="title is-2">Patron Perks</h2>
|
|
|
|
// <h3 className="title is-3">Website Shoutout</h3>
|
|
|
|
// <PatronRoute featureName="Website shoutout" requiredUserRole="patron">
|
|
|
|
// <div className="box">
|
|
|
|
// <span className="mr-2">Display {(!!username) ? username : <SkeletonTheme baseColor="#000" highlightColor="#000"><Skeleton count={1} enableAnimation={false} width="10em" /></SkeletonTheme>} publicly?</span>
|
|
|
|
// <input className="mr-2" type="checkbox" checked={isUsernamePublic} onChange={(evt) => metadataMutation.mutate({ isUsernamePublic: evt.target.checked })}/>
|
|
|
|
// {(metadataMutation.status === 'success') && <FontAwesomeIcon color="lime" icon={faCheckCircle}></FontAwesomeIcon>}
|
|
|
|
// {(metadataMutation.status === 'pending') && <FontAwesomeIcon icon={faSpinner}></FontAwesomeIcon>}
|
|
|
|
// {(metadataMutation.status === 'error') && <FontAwesomeIcon color="red" icon={faXmarkCircle}></FontAwesomeIcon>}
|
|
|
|
// </div>
|
|
|
|
// </PatronRoute>
|
|
|
|
|
|
|
|
// <h3 className="title is-3">Content Delivery Network (CDN)</h3>
|
|
|
|
// <PatronRoute featureName="CDN" requiredUserRole="patron">
|
|
|
|
// <p><FontAwesomeIcon icon={faCheckCircle} className="mr-2"></FontAwesomeIcon> You have access to Futureporn's CDN for reliable video playback</p>
|
|
|
|
// </PatronRoute>
|
|
|
|
|
|
|
|
|
|
|
|
// <h3 className="title is-3">Vibrate (test)</h3>
|
|
|
|
// <VibrateTest></VibrateTest>
|
|
|
|
// </div>
|
|
|
|
// </div>
|
|
|
|
|
|
|
|
// </>
|
|
|
|
// )
|
2024-01-20 16:16:14 +00:00
|
|
|
}
|