1
0
Code Issues Pull Requests Packages Projects Releases Wiki Activity GitHub Gitee

release 0.3.4

This commit is contained in:
songjunxi
2023-11-10 14:59:47 +08:00
parent 2b456637e9
commit 602f2059fd
161 changed files with 9921 additions and 347 deletions

View File

@@ -0,0 +1,29 @@
import Providers from "@/app/providers";
import { siteConfig } from "@/config/site";
import "@/styles/globals.css";
import { Metadata } from "next";
import { ReactNode } from "react";
// import Providers from "./providers";
export const metadata: Metadata = {
title: siteConfig.name,
description: siteConfig.description,
keywords: siteConfig.keywords,
authors: siteConfig.authors,
creator: siteConfig.creator,
themeColor: siteConfig.themeColor,
icons: siteConfig.icons,
metadataBase: siteConfig.metadataBase,
openGraph: siteConfig.openGraph,
twitter: siteConfig.twitter,
manifest: siteConfig.manifest,
};
export default function RootLayout({ children }: { children: ReactNode }) {
return (
<>
<Providers>{children}</Providers>
</>
);
}

View File

@@ -0,0 +1,22 @@
import { getServerSession } from "next-auth";
import { authOptions } from "@/app/api/auth/[...nextauth]/route";
import Wrapper from "./wrapper";
import Nav from "@/ui/layout/nav";
import FooterPublish from "@/ui/layout/footer-publish";
// export async function generateMetadata({ params, searchParams }): Metadata {
// const data = await getDetail(params.slug);
// return { title: data.title };
// }
export default async function Page({ params }: { params: { id: string } }) {
const session = await getServerSession(authOptions);
return (
<div className="mt-16 flex flex-col items-center sm:mx-6 sm:px-3">
{/* @ts-expect-error Server Component */}
<Nav />
<Wrapper id={params.id} session={session} />
<FooterPublish />
</div>
);
}

View File

@@ -0,0 +1,138 @@
"use client";
import {
useShareNoteByLocalId,
useUserInfoById,
} from "@/app/post/[id]/request";
import {
Content_Public_Storage_Key,
Default_Debounce_Duration,
} from "@/lib/consts";
import { Session } from "next-auth";
import { useEffect, useState } from "react";
import { Editor as InkeEditor } from "inkejs";
import { JSONContent } from "@tiptap/react";
import UINotFound from "../../../ui/layout/not-found";
import { LoadingCircle } from "@/ui/shared/icons";
import NewPostButton from "@/ui/new-post-button";
import Image from "next/image";
import { BadgeInfo } from "lucide-react";
import Tooltip from "@/ui/shared/tooltip";
import { fetcher, timeAgo } from "@/lib/utils";
import { ContentItem } from "@/lib/types/note";
export default function Wrapper({
id,
session,
}: {
id: string;
session: Session | null;
}) {
const { share, isLoading } = useShareNoteByLocalId(id);
const [canRenderGuide, setCanRenderGuide] = useState(false);
const [parseContent, setParseContent] = useState<ContentItem>();
const [currentContent, setCurrentContent] = useState<JSONContent>({});
const { user } = useUserInfoById(share?.data.userId);
useEffect(() => {
if (window) {
localStorage.removeItem(Content_Public_Storage_Key);
}
}, []);
useEffect(() => {
if (share && share.data && share.data.data) {
const parsed = JSON.parse(share.data.data || "{}");
setParseContent(parsed);
setCurrentContent(parsed.content);
setCanRenderGuide(true);
const title = parsed.title || "Untitled";
document.title = `${title} | Inke`;
}
}, [share]);
const handleUpdateKeeps = async () => {
if (share && share.data) {
await fetcher("/api/share/update/keep", {
method: "POST",
body: JSON.stringify({ id: share.data.id }),
});
}
};
return (
<div className="min-h-screen">
{isLoading && <LoadingCircle className="mx-auto h-6 w-6" />}
{!isLoading && share && share.data && canRenderGuide && (
<>
{user && (
<div className="mx-8 flex h-24 items-center justify-between">
<div className="flex items-center gap-2">
<Image
alt="avatar"
src={user && user.image ? user.image : "/cat.png"}
width={50}
height={50}
/>
<div className="flex flex-col justify-between gap-1">
<span className="cursor-pointer font-semibold text-slate-700">
{user.name}
</span>
<p className="flex text-xs text-slate-500">
<strong>{share.data.click}</strong>
&nbsp;clicks,&nbsp;
<strong>{share.data.keeps}</strong>&nbsp;keeps
{parseContent.created_at && (
<span className="ml-2 hidden border-l border-slate-300 pl-2 text-xs text-slate-500 sm:block">
Updated {timeAgo(parseContent.updated_at)}
</span>
)}
</p>
</div>
</div>
<div className="flex items-center gap-2">
<NewPostButton
className="h-8 w-28 px-3 py-1"
text="Keep writing"
from="publish"
defaultContent={currentContent}
callback={handleUpdateKeeps}
/>
<Tooltip
content={
<div className="w-64 px-3 py-2 text-sm text-slate-400">
<h1 className="mb-2 font-semibold text-slate-500">
What&apos;s keep writing?
</h1>
<p>
Keep writing allows you to quickly create a note with
the same content as this note locally.
</p>
</div>
}
fullWidth={false}
>
<button className="hidden sm:block">
<BadgeInfo className="h-4 w-4 text-slate-400 hover:text-slate-500" />
</button>
</Tooltip>
</div>
</div>
)}
<InkeEditor
className="relative -mt-6 mb-3 w-screen max-w-screen-lg overflow-y-auto border-stone-200 bg-white"
storageKey={Content_Public_Storage_Key}
debounceDuration={Default_Debounce_Duration}
defaultValue={currentContent}
editable={false}
bot={true}
/>
</>
)}
{!isLoading && !share.data && <UINotFound />}
</div>
);
}