/* Imports */ import { GetServerSideProps, NextPage } from "next"; import React from "react"; import { platforms } from "../backend/platforms"; import { DisplayForecast } from "../web/display/displayForecasts"; import { FrontendForecast } from "../web/platforms"; import searchAccordingToQueryData from "../web/worker/searchAccordingToQueryData"; interface Props { results: FrontendForecast[]; } export const getServerSideProps: GetServerSideProps = async ( context ) => { let urlQuery = context.query; // this is an object, not a string which I have to parse!! let initialQueryParameters = { query: "", starsThreshold: 2, forecastsThreshold: 0, forecastingPlatforms: platforms.map((platform) => platform.name), ...urlQuery, }; let results: FrontendForecast[] = []; if (initialQueryParameters.query != "") { results = await searchAccordingToQueryData(initialQueryParameters, 1); } return { props: { results: results, }, }; }; const SecretEmbedPage: NextPage = ({ results }) => { let result = results.length ? results[0] : null; return (
{result ? ( ) : null}


{result ? JSON.stringify(result, null, 4) : null}
); }; export default SecretEmbedPage;