import { getAuth } from "@/auth/queries/getauth"; import { generatePlaylogId, getSongsWithTitles } from "@/lib/api"; import { shareScore } from "../token"; export default async function Share({ params, }: { params: { token: string; id: string }; }) { const { token, id } = params; // Verify the token const tokenResult = await shareScore(token); if (tokenResult.error) { return

{tokenResult.error}

; } const { user } = await getAuth(); if (!user?.UserId) { return { error:"no user id" } } const userId = user?.UserId; const playlogId = parseInt(id); const songsData = await getSongsWithTitles(userId); const playlogIds = await generatePlaylogId(playlogId); const matchSongToPlaylogId = songsData.filter((song) => playlogIds.includes(song.id) ); const songTitles = matchSongToPlaylogId.map((song) => song.title); return ( ); }