mirror of
https://github.com/kou029w/_.git
synced 2025-01-30 22:08:02 +00:00
use useRouter
This commit is contained in:
parent
5b71359f13
commit
e25f4ac6cf
1 changed files with 14 additions and 19 deletions
|
@ -1,36 +1,31 @@
|
|||
import React, { useState } from "react";
|
||||
import { withRouter } from "next/router";
|
||||
import React from "react";
|
||||
import { useRouter } from "next/router";
|
||||
import { AppBar, Tabs, Tab } from "@material-ui/core";
|
||||
import routes from "../routes";
|
||||
|
||||
const TopAppBar = withRouter(({ router }) => {
|
||||
const [value, setValue] = useState(
|
||||
routes.findIndex(({ pathname }) => pathname === router.pathname)
|
||||
);
|
||||
router.events.on("routeChangeStart", (url: string) => {
|
||||
setValue(
|
||||
routes.findIndex(
|
||||
({ pathname }) => pathname === url.replace(/(?<=.)\/$/, "")
|
||||
)
|
||||
);
|
||||
});
|
||||
const TopAppBar = () => {
|
||||
const router = useRouter();
|
||||
const pathname = (
|
||||
routes.find(({ pathname }) => pathname === router.pathname) || {
|
||||
pathname: "/"
|
||||
}
|
||||
).pathname;
|
||||
return (
|
||||
<AppBar color="default">
|
||||
<Tabs
|
||||
value={value}
|
||||
value={pathname}
|
||||
onChange={(_, value) => {
|
||||
router.push(routes[value].pathname);
|
||||
setValue(value);
|
||||
router.push(value);
|
||||
}}
|
||||
variant="fullWidth"
|
||||
indicatorColor="primary"
|
||||
textColor="primary"
|
||||
>
|
||||
{routes.map(({ icon }, i) => (
|
||||
<Tab key={i} icon={icon} />
|
||||
{routes.map(({ pathname, icon }) => (
|
||||
<Tab key={pathname} value={pathname} icon={icon} />
|
||||
))}
|
||||
</Tabs>
|
||||
</AppBar>
|
||||
);
|
||||
});
|
||||
};
|
||||
export default TopAppBar;
|
||||
|
|
Loading…
Add table
Reference in a new issue