mirror of
https://github.com/zhigang1992/firecms.git
synced 2026-06-15 18:17:44 +08:00
65 lines
1.9 KiB
TypeScript
65 lines
1.9 KiB
TypeScript
import React from "react";
|
|
import { Box, Button } from "@material-ui/core";
|
|
|
|
import { useSnackbarController, useAuthContext, useSideEntityController, buildSchema } from "@camberi/firecms";
|
|
|
|
export function ExampleAdditionalView() {
|
|
|
|
const snackbarController = useSnackbarController();
|
|
const sideEntityController = useSideEntityController();
|
|
const authContext = useAuthContext();
|
|
|
|
const customProductSchema = buildSchema({
|
|
name: "Product",
|
|
properties: {
|
|
name: {
|
|
title: "Name",
|
|
validation: { required: true },
|
|
dataType: "string"
|
|
},
|
|
}
|
|
});
|
|
|
|
return (
|
|
<Box
|
|
display="flex"
|
|
width={"100%"}
|
|
height={"100%"}>
|
|
|
|
<Box m="auto"
|
|
display="flex"
|
|
flexDirection={"column"}
|
|
alignItems={"center"}
|
|
justifyItems={"center"}>
|
|
|
|
<div>This is an example of an additional view</div>
|
|
|
|
{authContext.loggedUser ?
|
|
<div>Logged in as {authContext.loggedUser.displayName}</div>
|
|
:
|
|
<div>You are not logged in</div>}
|
|
|
|
<Button
|
|
onClick={() => snackbarController.open({
|
|
type: "success",
|
|
message: "This is pretty cool"
|
|
})}
|
|
color="primary">
|
|
Test snackbar
|
|
</Button>
|
|
|
|
<Button
|
|
onClick={() => sideEntityController.open({
|
|
entityId: "B003WT1622",
|
|
collectionPath: "/products",
|
|
schema: customProductSchema
|
|
})}
|
|
color="primary">
|
|
Open entity with custom schema
|
|
</Button>
|
|
|
|
</Box>
|
|
</Box>
|
|
);
|
|
}
|