236 lines
8.5 KiB
TypeScript
236 lines
8.5 KiB
TypeScript
import { GetStaticProps } from "next";
|
|
import { useEffect, useState } from "react";
|
|
import { useBoolean } from "usehooks-ts";
|
|
import { z } from "zod";
|
|
import { AppLayout, AppLayoutRequired } from "components/AppLayout";
|
|
import { Switch } from "components/Inputs/Switch";
|
|
import { PanelHeader } from "components/PanelComponents/PanelHeader";
|
|
import { ContentPanel, ContentPanelWidthSizes } from "components/Containers/ContentPanel";
|
|
import { SubPanel } from "components/Containers/SubPanel";
|
|
import { WithLabel } from "components/Inputs/WithLabel";
|
|
import { TextInput } from "components/Inputs/TextInput";
|
|
import { Button } from "components/Inputs/Button";
|
|
import { useDeviceSupportsHover } from "hooks/useMediaQuery";
|
|
import {
|
|
filterDefined,
|
|
filterHasAttributes,
|
|
isDefined,
|
|
isDefinedAndNotEmpty,
|
|
} from "helpers/asserts";
|
|
import { getOpenGraph } from "helpers/openGraph";
|
|
import { TranslatedPreviewCard } from "components/PreviewCard";
|
|
import { HorizontalLine } from "components/HorizontalLine";
|
|
import { sendAnalytics } from "helpers/analytics";
|
|
import { Terminal } from "components/Cli/Terminal";
|
|
import { atoms } from "contexts/atoms";
|
|
import { useAtomGetter } from "helpers/atoms";
|
|
import { containsHighlight, CustomSearchResponse, meiliSearch } from "helpers/search";
|
|
import { MeiliIndices, MeiliPost } from "shared/meilisearch-graphql-typings/meiliTypes";
|
|
import { useTypedRouter } from "hooks/useTypedRouter";
|
|
import { prettySlug } from "helpers/formatters";
|
|
import { Paginator } from "components/Containers/Paginator";
|
|
import { useFormat } from "hooks/useFormat";
|
|
import { getFormat } from "helpers/i18n";
|
|
|
|
/*
|
|
* ╭─────────────╮
|
|
* ────────────────────────────────────────╯ CONSTANTS ╰──────────────────────────────────────────
|
|
*/
|
|
|
|
const DEFAULT_FILTERS_STATE = {
|
|
query: "",
|
|
keepInfoVisible: true,
|
|
page: 1,
|
|
};
|
|
|
|
const queryParamSchema = z.object({
|
|
query: z.coerce.string().optional(),
|
|
page: z.coerce.number().positive().optional(),
|
|
});
|
|
|
|
/*
|
|
* ╭────────╮
|
|
* ──────────────────────────────────────────╯ PAGE ╰─────────────────────────────────────────────
|
|
*/
|
|
|
|
interface Props extends AppLayoutRequired {}
|
|
|
|
const News = ({ ...otherProps }: Props): JSX.Element => {
|
|
const { format } = useFormat();
|
|
const hoverable = useDeviceSupportsHover();
|
|
const router = useTypedRouter(queryParamSchema);
|
|
|
|
const [query, setQuery] = useState(router.query.query ?? DEFAULT_FILTERS_STATE.query);
|
|
|
|
const {
|
|
value: keepInfoVisible,
|
|
toggle: toggleKeepInfoVisible,
|
|
setValue: setKeepInfoVisible,
|
|
} = useBoolean(DEFAULT_FILTERS_STATE.keepInfoVisible);
|
|
|
|
const isTerminalMode = useAtomGetter(atoms.layout.terminalMode);
|
|
|
|
const [page, setPage] = useState<number>(router.query.page ?? DEFAULT_FILTERS_STATE.page);
|
|
const [posts, setPosts] = useState<CustomSearchResponse<MeiliPost>>();
|
|
|
|
useEffect(() => {
|
|
const fetchPosts = async () => {
|
|
const searchResult = await meiliSearch(MeiliIndices.POST, query, {
|
|
hitsPerPage: 25,
|
|
page,
|
|
attributesToRetrieve: ["translations", "thumbnail", "slug", "date", "categories"],
|
|
attributesToHighlight: ["translations.title", "translations.excerpt", "translations.body"],
|
|
attributesToCrop: ["translations.body"],
|
|
sort: ["sortable_date:desc"],
|
|
filter: ["hidden = false"],
|
|
});
|
|
searchResult.hits = searchResult.hits.map((item) => {
|
|
if (Object.keys(item._matchesPosition).some((match) => match.startsWith("translations"))) {
|
|
item._formatted.translations = filterDefined(item._formatted.translations).filter(
|
|
(translation) => JSON.stringify(translation).includes("</mark>")
|
|
);
|
|
}
|
|
return item;
|
|
});
|
|
setPosts(searchResult);
|
|
};
|
|
fetchPosts();
|
|
}, [query, page]);
|
|
|
|
useEffect(() => {
|
|
if (router.isReady)
|
|
router.updateQuery({
|
|
page,
|
|
query,
|
|
});
|
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
}, [page, query, router.isReady]);
|
|
|
|
useEffect(() => {
|
|
if (router.isReady) {
|
|
if (isDefined(router.query.page)) setPage(router.query.page);
|
|
if (isDefined(router.query.query)) setQuery(router.query.query);
|
|
}
|
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
}, [router.isReady]);
|
|
|
|
const subPanel = (
|
|
<SubPanel>
|
|
<PanelHeader
|
|
icon="newspaper"
|
|
title={format("news")}
|
|
description={format("news_description")}
|
|
/>
|
|
|
|
<HorizontalLine />
|
|
|
|
<TextInput
|
|
className="mb-6 w-full"
|
|
placeholder={format("search_title")}
|
|
value={query}
|
|
onChange={(name) => {
|
|
setQuery(name);
|
|
if (isDefinedAndNotEmpty(name)) {
|
|
sendAnalytics("News", "Change search term");
|
|
} else {
|
|
sendAnalytics("News", "Clear search term");
|
|
}
|
|
}}
|
|
/>
|
|
|
|
{hoverable && (
|
|
<WithLabel label={format("always_show_info")}>
|
|
<Switch
|
|
value={keepInfoVisible}
|
|
onClick={() => {
|
|
toggleKeepInfoVisible();
|
|
sendAnalytics("News", `Always ${keepInfoVisible ? "hide" : "show"} info`);
|
|
}}
|
|
/>
|
|
</WithLabel>
|
|
)}
|
|
|
|
<Button
|
|
className="mt-8"
|
|
text={format("reset_all_filters")}
|
|
icon="settings_backup_restore"
|
|
onClick={() => {
|
|
setQuery(DEFAULT_FILTERS_STATE.query);
|
|
setKeepInfoVisible(DEFAULT_FILTERS_STATE.keepInfoVisible);
|
|
sendAnalytics("News", "Reset all filters");
|
|
}}
|
|
/>
|
|
</SubPanel>
|
|
);
|
|
|
|
const contentPanel = (
|
|
<ContentPanel width={ContentPanelWidthSizes.Full}>
|
|
<Paginator page={page} onPageChange={setPage} totalNumberOfPages={posts?.totalPages}>
|
|
<div
|
|
className="grid grid-cols-[repeat(auto-fill,_minmax(15rem,1fr))] items-start
|
|
gap-x-6 gap-y-8">
|
|
{posts?.hits.map((item) => (
|
|
<TranslatedPreviewCard
|
|
key={item.id}
|
|
href={`/news/${item.slug}`}
|
|
translations={filterHasAttributes(item._formatted.translations, [
|
|
"language.data.attributes.code",
|
|
] as const).map(({ excerpt, body, language, ...otherAttributes }) => ({
|
|
...otherAttributes,
|
|
description: containsHighlight(excerpt)
|
|
? excerpt
|
|
: containsHighlight(body)
|
|
? body
|
|
: excerpt,
|
|
language: language.data.attributes.code,
|
|
}))}
|
|
fallback={{ title: prettySlug(item.slug) }}
|
|
thumbnail={item.thumbnail?.data?.attributes}
|
|
thumbnailAspectRatio="3/2"
|
|
thumbnailForceAspectRatio
|
|
keepInfoVisible={keepInfoVisible}
|
|
bottomChips={item.categories?.data.map(
|
|
(category) => category.attributes?.short ?? ""
|
|
)}
|
|
metadata={{
|
|
releaseDate: item.date,
|
|
releaseDateFormat: "long",
|
|
position: "Top",
|
|
}}
|
|
/>
|
|
))}
|
|
</div>
|
|
</Paginator>
|
|
</ContentPanel>
|
|
);
|
|
|
|
if (isTerminalMode) {
|
|
return <Terminal parentPath="/" childrenPaths={posts?.hits.map((post) => post.slug) ?? []} />;
|
|
}
|
|
|
|
return (
|
|
<AppLayout
|
|
subPanel={subPanel}
|
|
contentPanel={contentPanel}
|
|
subPanelIcon="search"
|
|
{...otherProps}
|
|
/>
|
|
);
|
|
};
|
|
export default News;
|
|
|
|
/*
|
|
* ╭──────────────────────╮
|
|
* ───────────────────────────────────╯ NEXT DATA FETCHING ╰──────────────────────────────────────
|
|
*/
|
|
|
|
export const getStaticProps: GetStaticProps = (context) => {
|
|
const { format } = getFormat(context.locale);
|
|
const props: Props = {
|
|
openGraph: getOpenGraph(format, format("news")),
|
|
};
|
|
return {
|
|
props: props,
|
|
};
|
|
};
|