Skip to content

Commit 361479f

Browse files
committed
refactor: 提取 route 逻辑
1 parent d78436b commit 361479f

File tree

11 files changed

+49
-29
lines changed

11 files changed

+49
-29
lines changed

.eslintrc.json

+3-7
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,7 @@
33
"browser": true,
44
"es2021": true
55
},
6-
"extends": [
7-
"eslint:recommended",
8-
"plugin:react/recommended",
9-
"plugin:@typescript-eslint/recommended",
10-
"prettier"
11-
],
6+
"extends": ["eslint:recommended", "plugin:react/recommended", "plugin:@typescript-eslint/recommended", "prettier"],
127
"overrides": [],
138
"parser": "@typescript-eslint/parser",
149
"parserOptions": {
@@ -20,7 +15,8 @@
2015
"indent": ["error", 2],
2116
"linebreak-style": ["error", "unix"],
2217
"quotes": ["error", "single"],
23-
"semi": ["error", "always"]
18+
"semi": ["error", "always"],
19+
"react/prop-types": "off"
2420
},
2521
"ignorePatterns": ["config/*.js"]
2622
}

.husky/commit-msg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
#!/usr/bin/env sh
22
. "$(dirname -- "$0")/_/husky.sh"
33

4-
npx --no -- commitlint -g ./config/commitlint.js --edit
4+
npx commitlint -g ./config/commitlint.js --edit

README.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,10 @@
66

77
- 基于 `carco` 来定制 Webpack 配置
88
- 支持 TypeScript
9+
- 支持配置式路由
910
- 移除了测试和 `WebVital` 相关代码
1011
- 包管理器替换为 `pnpm`
11-
- 添加了 `scss` 和 CSS Modules 的支持
12+
- 添加了 `sass` 和 CSS Modules 的支持
1213
- 添加了性能分析命令
1314
- 添加了 `eslint` `stylelint` `prettier`
1415
- 添加了 `husky` `lint-staged` 以 commit 时检查
@@ -51,7 +52,8 @@ $ npm install pnpm -g
5152

5253
- 公共组件放在 `components`
5354
- 页面组件放在 `pages`
54-
- 路由配置在 `Router.tsx`
55+
- 布局组件放在 `layouts`
56+
- 路由配置在 `routes.ts`
5557

5658
## FAQ
5759

src/App.tsx

+17-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,21 @@
11
import React from 'react';
2-
import { BrowserRouter } from 'react-router-dom';
3-
import { Layout } from './components';
4-
import Router from './Router';
2+
import { BrowserRouter, Routes, Route } from 'react-router-dom';
3+
import Layout from './layouts/Basic';
4+
import NotFound from './pages/Error/404';
5+
import routes from './routes';
6+
7+
function Router(): JSX.Element {
8+
return (
9+
<Routes>
10+
{routes.map((props) => {
11+
const { path, page: Page } = props;
12+
13+
return <Route key={path} element={<Page />} {...props} />;
14+
})}
15+
<Route path="*" element={<NotFound />} />
16+
</Routes>
17+
);
18+
}
519

620
function App(): JSX.Element {
721
return (

src/Router.tsx

-14
This file was deleted.

src/components/index.ts

-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
11
export { default as Logo } from './Logo';
22
export { default as Link } from './Link';
3-
export { default as Layout } from './Layout';
File renamed without changes.
File renamed without changes.

src/pages/Error/404.tsx

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
import React from 'react';
2+
3+
function NotFound(): JSX.Element {
4+
return <div>Not found</div>;
5+
}
6+
7+
export default NotFound;

src/pages/Home/index.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ function Home(): JSX.Element {
77
<div className={styles.container}>
88
<Logo />
99
<p>
10-
Edit <code>src/App.tsx</code> and save to reload.
10+
Edit <code>src/pages/Home/index.tsx</code> and save to reload.
1111
</p>
1212
<Link url="https://reactjs.org">Learn React</Link>
1313
</div>

src/routes.ts

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
import type { PathRouteProps } from 'react-router-dom';
2+
import Home from './pages/Home';
3+
4+
interface Route extends PathRouteProps {
5+
path: string;
6+
page(): JSX.Element;
7+
}
8+
9+
const routes: Route[] = [
10+
{
11+
path: '/',
12+
page: Home,
13+
},
14+
];
15+
16+
export default routes;

0 commit comments

Comments
 (0)