2023-02-10 10:13:59 +00:00
|
|
|
import { Card, CardContent, CardHeader } from "@material-ui/core";
|
2023-02-08 08:28:14 +00:00
|
|
|
import { ImportProductsToAlgolia } from "./ImportProductsToAlgolia";
|
|
|
|
import AlgoliaConfigurationCard from "./AlgoliaConfigurationCard";
|
|
|
|
import { makeStyles, PageTab, PageTabs } from "@saleor/macaw-ui";
|
|
|
|
import { useRouter } from "next/router";
|
|
|
|
import Instructions from "./Instructions";
|
|
|
|
|
|
|
|
import { AppColumnsLayout } from "./AppColumnsLayout";
|
|
|
|
import { SearchAppMainBar } from "./SearchAppMainBar";
|
|
|
|
|
|
|
|
const useStyles = makeStyles((theme) => ({
|
|
|
|
buttonsGrid: { display: "flex", gap: 10 },
|
|
|
|
topBar: {
|
|
|
|
marginBottom: 32,
|
|
|
|
},
|
|
|
|
indexActions: {
|
|
|
|
marginTop: 10,
|
|
|
|
},
|
|
|
|
wrapper: {
|
|
|
|
border: `1px solid ${theme.palette.grey.A100}`,
|
|
|
|
minHeight: "calc(100vh - 100px)",
|
|
|
|
paddingBottom: 50,
|
|
|
|
},
|
|
|
|
tabs: { marginLeft: 32, marginBottom: 32 },
|
|
|
|
}));
|
|
|
|
|
|
|
|
export const ConfigurationView = () => {
|
|
|
|
const styles = useStyles();
|
|
|
|
const router = useRouter();
|
|
|
|
|
|
|
|
const handleClick = (val: string) => router.push("/" + val);
|
|
|
|
return (
|
|
|
|
<div className={styles.wrapper}>
|
|
|
|
<SearchAppMainBar />
|
|
|
|
<PageTabs className={styles.tabs} value="" onChange={handleClick}>
|
|
|
|
<PageTab label={"Configuration"} value="" />
|
|
|
|
<PageTab label={"Preview"} value="search" />
|
|
|
|
</PageTabs>
|
|
|
|
<AppColumnsLayout>
|
|
|
|
<div />
|
|
|
|
<div>
|
|
|
|
<AlgoliaConfigurationCard />
|
|
|
|
<Card className={styles.indexActions}>
|
|
|
|
<CardHeader title="Indexing" />
|
|
|
|
<CardContent>
|
|
|
|
<ImportProductsToAlgolia />
|
|
|
|
</CardContent>
|
|
|
|
</Card>
|
|
|
|
</div>
|
|
|
|
<Instructions />
|
|
|
|
</AppColumnsLayout>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Export default for Next.dynamic
|
|
|
|
*/
|
|
|
|
export default ConfigurationView;
|