|
|
@ -3,6 +3,8 @@ import { ReactNode, useState } from "react" |
|
|
|
import { NavLink, useHistory } from "react-router-dom" |
|
|
|
import styled from "styled-components" |
|
|
|
import { GlobalStyles } from "./GlobalStyles" |
|
|
|
import { Notice } from "@/ui/Notice" |
|
|
|
import { Markdown } from "@/ui/Markdown" |
|
|
|
|
|
|
|
interface PageProps { |
|
|
|
children: ReactNode |
|
|
@ -27,15 +29,25 @@ function BaseLayout(props: PageProps) { |
|
|
|
|
|
|
|
const router = useHistory() |
|
|
|
|
|
|
|
const about = ` |
|
|
|
> 人生如逆水行舟,不进则退。 |
|
|
|
|
|
|
|
我来自一南方小镇,不善言辞,今作此小站,聊慰平生。 |
|
|
|
|
|
|
|
如有意愿,欢迎联系。 |
|
|
|
|
|
|
|
[Github](https://github.com/npmrun)
|
|
|
|
` |
|
|
|
|
|
|
|
return ( |
|
|
|
<PageWrapper> |
|
|
|
<GlobalStyles /> |
|
|
|
<Navbar> |
|
|
|
<Navbar.Group align={Alignment.LEFT}> |
|
|
|
<Navbar.Heading>东风天堂</Navbar.Heading> |
|
|
|
<Navbar.Heading>天涯行宫</Navbar.Heading> |
|
|
|
<Navbar.Divider /> |
|
|
|
<NavLink to={"/home"} strict exact activeClassName="actived"> |
|
|
|
<Button className="bp5-minimal" icon="home" text="Home" /> |
|
|
|
<Button className="bp5-minimal" icon="home" text="首页" /> |
|
|
|
</NavLink> |
|
|
|
<Popover |
|
|
|
isOpen={isOpen} |
|
|
@ -43,25 +55,29 @@ function BaseLayout(props: PageProps) { |
|
|
|
onInteraction={isOpen => setIsOpen(isOpen)} |
|
|
|
content={ |
|
|
|
<Menu> |
|
|
|
<MenuItem icon="graph" text="/project" onClick={() => router.push("/project")} /> |
|
|
|
<MenuItem icon="map" text="/project/child" onClick={() => router.push("/project/child")} /> |
|
|
|
<MenuItem icon="th" text="Table" shouldDismissPopover={false} /> |
|
|
|
<MenuItem icon="zoom-to-fit" text="Browser" disabled={true} /> |
|
|
|
<MenuItem icon="flow-review-branch" text="天涯笔记" disabled onClick={() => router.push("/project")} /> |
|
|
|
<MenuItem icon="third-party" text="全聚德" disabled onClick={() => router.push("/project/child")} /> |
|
|
|
<MenuDivider /> |
|
|
|
<MenuItem icon="cog" text="Settings..."> |
|
|
|
<MenuItem icon="add" text="Add new application" disabled={true} /> |
|
|
|
<MenuItem icon="remove" text="Remove application" /> |
|
|
|
<MenuItem icon="document" text="文档"> |
|
|
|
<MenuItem icon="build" text="CSS选择器示例" /> |
|
|
|
</MenuItem> |
|
|
|
<MenuDivider /> |
|
|
|
<MenuItem icon="cog" text="其他"> |
|
|
|
<MenuItem icon="build" text="CSS选择器示例" /> |
|
|
|
</MenuItem> |
|
|
|
</Menu> |
|
|
|
} |
|
|
|
fill={true} |
|
|
|
placement="bottom" |
|
|
|
> |
|
|
|
<Button className="bp5-minimal" icon="document" text="Files" rightIcon={isOpen ? "caret-down" : "caret-right"} /> |
|
|
|
<Button className="bp5-minimal" icon="code" text="开源应用" rightIcon={isOpen ? "caret-down" : "caret-right"} /> |
|
|
|
</Popover> |
|
|
|
</Navbar.Group> |
|
|
|
<Navbar.Group align={Alignment.LEFT} style={{ marginLeft: "10px", maxWidth: "400px" }}> |
|
|
|
<Notice /> |
|
|
|
</Navbar.Group> |
|
|
|
<Navbar.Group align={Alignment.RIGHT}> |
|
|
|
<Button className="bp5-minimal" icon="settings" /> |
|
|
|
{/* <Button className="bp5-minimal" icon="settings" /> */} |
|
|
|
<Navbar.Divider /> |
|
|
|
{/* <NavLink to={"/about"}> */} |
|
|
|
<Button onClick={() => setIsOpenAbout(true)} className="bp5-minimal" icon="person" text="关于" /> |
|
|
@ -69,9 +85,11 @@ function BaseLayout(props: PageProps) { |
|
|
|
</Navbar.Group> |
|
|
|
</Navbar> |
|
|
|
<ContentWrapper>{props.children}</ContentWrapper> |
|
|
|
<Dialog isOpen={isOpenAbout} title="通知" icon="info-sign" onClose={() => setIsOpenAbout(false)}> |
|
|
|
<DialogBody>{/* body contents here */}</DialogBody> |
|
|
|
<DialogFooter actions={<Button intent="primary" text="关闭" onClick={() => setIsOpenAbout(false)} />} /> |
|
|
|
<Dialog isOpen={isOpenAbout} title="关于我" icon="info-sign" onClose={() => setIsOpenAbout(false)}> |
|
|
|
<DialogBody> |
|
|
|
<Markdown>{about}</Markdown> |
|
|
|
</DialogBody> |
|
|
|
<DialogFooter actions={<Button intent="primary" text="合起" onClick={() => setIsOpenAbout(false)} />} /> |
|
|
|
</Dialog> |
|
|
|
</PageWrapper> |
|
|
|
) |
|
|
|