"use client";
import Link from "next/link";
import { useEntitySetContext } from "./EntitySetProvider";
import { ActionButton } from "components/ActionBar/ActionButton";
import { useParams, useSearchParams } from "next/navigation";
import { useIdentityData } from "./IdentityProvider";
import { useReplicache } from "src/replicache";
import { addLeafletToHome } from "actions/addLeafletToHome";
import { useSmoker } from "./Toast";
import { AddToHomeSmall } from "./Icons/AddToHomeSmall";
import { HomeSmall } from "./Icons/HomeSmall";
import { permission } from "process";
export function HomeButton() {
let { permissions } = useEntitySetContext();
let searchParams = useSearchParams();
return (
<>
} label="Go Home" />
{}
>
);
}
const AddToHomeButton = (props: {}) => {
let { permission_token } = useReplicache();
let { identity, mutate } = useIdentityData();
let smoker = useSmoker();
if (
identity?.permission_token_on_homepage.find(
(pth) => pth.permission_tokens.id === permission_token.id,
) ||
!identity
)
return null;
return (
{
await addLeafletToHome(permission_token.id);
mutate((identity) => {
if (!identity) return;
return {
...identity,
permission_token_on_homepage: [
...identity.permission_token_on_homepage,
{
created_at: new Date().toISOString(),
permission_tokens: {
...permission_token,
leaflets_in_publications: [],
},
},
],
};
});
smoker({
position: {
x: e.clientX + 64,
y: e.clientY,
},
text: "Leaflet added to your home!",
});
}}
icon={}
label="Add to Home"
/>
);
};