Add share button

This commit is contained in:
Sebastien Castiel
2023-12-13 12:55:31 -05:00
parent 6bd99d9a34
commit 9e2834abc3
3 changed files with 54 additions and 4 deletions

View File

@@ -42,7 +42,7 @@ export default async function GroupLayout({
<div className="flex gap-2 justify-between">
<GroupTabs groupId={groupId} />
<ShareButton groupId={groupId} />
<ShareButton group={group} />
</div>
</div>

View File

@@ -1,4 +1,5 @@
import { CopyButton } from '@/components/copy-button'
import { ShareUrlButton } from '@/components/share-url-button'
import { Button } from '@/components/ui/button'
import { Input } from '@/components/ui/input'
import {
@@ -7,14 +8,15 @@ import {
PopoverTrigger,
} from '@/components/ui/popover'
import { env } from '@/lib/env'
import { Group } from '@prisma/client'
import { Share } from 'lucide-react'
type Props = {
groupId: string
group: Group
}
export function ShareButton({ groupId }: Props) {
const url = `${env.NEXT_PUBLIC_BASE_URL}/groups/${groupId}`
export function ShareButton({ group }: Props) {
const url = `${env.NEXT_PUBLIC_BASE_URL}/groups/${group.id}`
return (
<Popover>
@@ -31,6 +33,10 @@ export function ShareButton({ groupId }: Props) {
<div className="flex gap-2">
<Input className="flex-1" defaultValue={url} readOnly />
<CopyButton text={url} />
<ShareUrlButton
text={`Join my group ${group.name} on Spliit`}
url={url}
/>
</div>
<p>
<strong>Warning!</strong> Every person with the group URL will be able