Skip to content

Commit 95205cb

Browse files
committed
refactor: optimize project structure
1 parent be3c0b8 commit 95205cb

File tree

20 files changed

+91
-125
lines changed

20 files changed

+91
-125
lines changed

bin/www

-25
Original file line numberDiff line numberDiff line change
@@ -2,31 +2,6 @@
22

33
/* eslint-disable */
44

5-
require('babel-register')({
6-
presets: [
7-
['env', {
8-
targets: {
9-
node: '8',
10-
},
11-
}],
12-
'react',
13-
'stage-2',
14-
],
15-
plugins: [
16-
'dynamic-import-node',
17-
['transform-runtime', {
18-
polyfill: false,
19-
regenerator: true,
20-
}],
21-
[
22-
'babel-plugin-transform-require-ignore', {
23-
extensions: ['.css', '.less', '.sass', '.scss'],
24-
},
25-
],
26-
],
27-
extensions: ['.jsx', '.js'],
28-
});
29-
305
/**
316
* Module dependencies.
327
*/

build/webpack.prod.js

-80
This file was deleted.

common/App.jsx client/app/App.jsx

File renamed without changes.

common/Author.jsx client/app/Author.jsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import React, { Component } from 'react';
22
import { Link, withRouter } from 'react-router-dom';
33
import { connect } from 'react-redux';
4-
import { fetchInfo } from './actions';
4+
import { fetchInfo } from './store/action';
55

66
class Author extends Component {
77
componentWillMount() {

client/app/component/.gitkeep

Whitespace-only changes.

client/app/container/.gitkeep

Whitespace-only changes.

client/index.jsx client/app/entry/client.js

+3-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
/**
2-
* 此文件只会被客户端所引用,为了保证前后端路由的一致性,
3-
* 请不要在此文件写入路由逻辑!
4-
* 请只在 /common/App.jsx 中编辑路由逻辑。
2+
* 浏览器端入口文件
53
*/
64

75
import React from 'react';
@@ -12,8 +10,8 @@ import { Provider } from 'react-redux';
1210
import thunk from 'redux-thunk';
1311
import logger from 'redux-logger';
1412

15-
import reducer from '../common/reducers';
16-
import App from '../common/App';
13+
import reducer from '../store/reducer';
14+
import App from '../App';
1715

1816
// 通过服务端注入的全局变量得到初始的 state
1917
const preloadedState = window.__INITIAL_STATE_;
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
11
import React from 'react';
2-
import { renderToString } from 'react-dom/server';
32
import { StaticRouter } from 'react-router-dom';
43
import { Provider } from 'react-redux';
5-
import App from '../../common/App';
4+
import App from '../../App';
65

7-
export default ({ ctx, store, context }) => renderToString((
6+
export default ({ ctx, store, context }) => (
87
<StaticRouter location={ctx.url} context={context}>
98
<Provider store={store}>
109
<App/>
1110
</Provider>
1211
</StaticRouter>
13-
));
12+
);

client/app/entry/server/index.js

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
/**
2+
* 请确保该文件是唯一的 Node.js 入口文件
3+
*
4+
* 支持 JSX, dynamic import
5+
*
6+
* 会自动忽略使用 require 引用的 css|less|sass|scss 等文件,
7+
* 请勿使用 import 来引用上述样式文件
8+
*/
9+
10+
require('babel-register')({
11+
presets: [
12+
['env', {
13+
targets: {
14+
node: '8',
15+
},
16+
}],
17+
'react',
18+
'stage-2',
19+
],
20+
plugins: [
21+
'dynamic-import-node',
22+
['transform-runtime', {
23+
polyfill: false,
24+
regenerator: true,
25+
}],
26+
[
27+
'babel-plugin-transform-require-ignore', {
28+
extensions: ['.css', '.less', '.sass', '.scss'],
29+
},
30+
],
31+
],
32+
extensions: ['.jsx', '.js'],
33+
});
34+
35+
module.exports = {
36+
App: require('./app').default,
37+
reducer: require('../../store/reducer').default,
38+
};
File renamed without changes.

common/reducers/index.js client/app/store/reducer/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import {
44
FETCH_INFO_ERROR,
55
FETCH_INFO_SUCCESS,
66
FETCH_INFO_CACHED,
7-
} from '../actions';
7+
} from '../action';
88

99
const authorInfo = (state = {}, action) => {
1010
switch (action.type) {
File renamed without changes.
File renamed without changes.
File renamed without changes.

build/webpack.base.js client/build/webpack.base.js

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
const path = require('path');
2-
const devMode = process.env.NODE_ENV !== 'production';
32
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
43
const autoprefixer = require('autoprefixer');
54

5+
const devMode = process.env.NODE_ENV !== 'production';
6+
67
const postcssOpts = {
78
ident: 'postcss',
89
plugins: () => [
@@ -23,7 +24,7 @@ const postcssOpts = {
2324

2425
const config = {
2526
entry: {
26-
app: path.resolve(__dirname, '../client/index.jsx'),
27+
app: path.resolve(__dirname, '../app/entry/client.js'),
2728
},
2829

2930
resolve: {
@@ -40,7 +41,7 @@ const config = {
4041
presets: [
4142
'es2015',
4243
'react',
43-
'stage-2'
44+
'stage-2',
4445
],
4546
plugins: [
4647
'syntax-dynamic-import',

build/webpack.dev.js client/build/webpack.dev.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ const config = merge(baseConfig, {
1414
mode: 'development',
1515

1616
output: {
17-
path: path.resolve(__dirname, '../node_modules/.cache/rephic/public'),
17+
path: path.resolve(__dirname, '../../node_modules/.cache/rephic/public'),
1818
filename: 'js/[name].js',
1919
publicPath: '/',
2020
},

client/build/webpack.prod.js

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
const path = require('path');
2+
const merge = require('webpack-merge');
3+
const baseConfig = require('./webpack.base');
4+
const UglifyJSPlugin = require('uglifyjs-webpack-plugin');
5+
const autoprefixer = require('autoprefixer');
6+
7+
const config = merge(baseConfig, {
8+
mode: 'production',
9+
10+
output: {
11+
path: path.resolve(__dirname, '../../server/public'),
12+
filename: 'js/[name].js',
13+
publicPath: '/',
14+
chunkFilename: 'js/[name].js',
15+
},
16+
17+
plugins: [
18+
new UglifyJSPlugin(),
19+
],
20+
21+
optimization: {
22+
splitChunks: {
23+
cacheGroups: {
24+
common: {
25+
name: 'vendors',
26+
test: /[\\/]node_modules[\\/]/,
27+
chunks: 'initial',
28+
},
29+
},
30+
},
31+
},
32+
33+
});
34+
35+
module.exports = config;

gulpfile.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ const notifier = require('node-notifier');
44
const opn = require('opn');
55
const chalk = require('chalk');
66

7-
const webpackDevConfig = require('./build/webpack.dev');
7+
const webpackDevConfig = require('./client/build/webpack.dev');
88

99
gulp.task('default', ['watch']);
1010

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"site": "http://pspgbhu.me",
77
"scripts": {
88
"start": "cross-env NODE_ENV=production node bin/www",
9-
"build": "cross-env NODE_ENV=production node build/build.js",
9+
"build": "cross-env NODE_ENV=production node client/build/build.js",
1010
"prd": "pm2 start server/pm2.config.json bin/www",
1111
"dev": "npm run dev:client & npm run dev:server",
1212
"dev:server": "./node_modules/.bin/nodemon bin/www",

server/controller/views/base.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
const { createStore, applyMiddleware } = require('redux');
22
const thunk = require('redux-thunk').default;
3-
const renderStaticHtml = require('../../utils/render').default;
4-
const reducer = require('../../../common/reducers').default;
3+
const { renderToString } = require('react-dom/server');
4+
const { App, reducer } = require('../../../client/app/entry/server');
55

66
module.exports = async (ctx, next) => {
77
const context = {};
88
// 在服务端创建 Redux Store
99
const store = createStore(reducer, ctx.reactState || {}, applyMiddleware(thunk));
1010
// 生成 html 字符串
11-
const content = renderStaticHtml({ ctx, store, context });
11+
const content = renderToString(App({ ctx, store, context }));
1212
// 从 Store 中获取 State 对象
1313
const preloadedState = store.getState();
1414

0 commit comments

Comments
 (0)