前言:相信你們看到過很多web音樂app,什麼仿網易雲、QQ音樂之類的。筆者帶你們自制一款web音樂appcss
本項目使用react全家桶打造,技術綜合性比較高。不少東西不會從基礎講解html
使用create-react-app建立項目基本骨架,而後安裝路由(因爲4.x的版本路由變化比較大。路由安裝react-router-dom 4.2.2的版本便可)html5
建立後的項目結構以下node
在react腳手架中webpack基本的配置官方都已經給咱們配置好了,那麼如何加入咱們自定義的配置文件呢,這裏使用一個rewire模塊。 首先安裝rewire 模塊react
npm install rewire proxyquire --save-dev
複製代碼
rewire只須要在項目開發時打包使用,安裝到開發依賴便可webpack
編寫配置文件css3
在項目的根目錄下建立scripts文件夾,而後新建一個customized-build.js文件 代碼以下:git
/*
本模塊運行react-scripts裏的腳本 (Create React App)
能夠自定義webpack配置,經過在項目根目錄建立"overrides-config.dev.js" 、 "overrides-config.prod.js" 文件.
A config-overrides file should export a single function that takes a
config and modifies it as necessary.
module.exports = function(webpackConfig) {
webpackConfig.module.rules[0].use[0].options.useEslintrc = true;
};
*/
var rewire = require('rewire');
var proxyquire = require('proxyquire');
switch(process.argv[2]) {
// The "start" script is run during development mode
case 'start':
rewireModule('react-scripts/scripts/start.js', loadCustomizer('./overrides-config.dev'));
break;
// The "build" script is run to produce a production bundle
case 'build':
rewireModule('react-scripts/scripts/build.js', loadCustomizer('./overrides-config.prod'));
break;
// The "test" script runs all the tests with Jest
case 'test':
// Load customizations from the config-overrides.testing file.
// That file should export a single function that takes a config and returns a config
let customizer = loadCustomizer('./overrides-config.testing');
proxyquire('react-scripts/scripts/test.js', {
// When test.js asks for '../utils/createJestConfig' it will get this instead:
'../utils/createJestConfig': (...args) => {
// Use the existing createJestConfig function to create a config, then pass
// it through the customizer
var createJestConfig = require('react-scripts/utils/createJestConfig');
return customizer(createJestConfig(...args));
}
});
break;
default:
console.log('customized-build only supports "start", "build", and "test" options.');
process.exit(-1);
}
// Attempt to load the given module and return null if it fails.
function loadCustomizer(module) {
try {
return require(module);
} catch(e) {
if(e.code !== "MODULE_NOT_FOUND") {
throw e;
}
}
// If the module doesn't exist, return a // noop that simply returns the config it's given.
return config => config;
}
function rewireModule(modulePath, customizer) {
// Load the module with `rewire`, which allows modifying the
// script's internal variables. let defaults = rewire(modulePath); // Reach into the module, grab its global 'config' variable, // and pass it through the customizer function. // The customizer should *mutate* the config object, because // react-scripts imports the config as a `const` and we can't
// modify that reference.
let config = defaults.__get__('config');
customizer(config);
}
複製代碼
上述代碼的做用就是在運行時獲取dev、build期間對應模塊配置。react腳手架自帶的腳本 npm run start,npm run build運行的webpack配置文件 存放在node_modules/react-scripts/config下面es6
webpack.config.prod.js生產打包時的配置文件github
function rewireModule(modulePath, customizer) {
// Load the module with `rewire`, which allows modifying the
// script's internal variables. let defaults = rewire(modulePath); // Reach into the module, grab its global 'config' variable, // and pass it through the customizer function. // The customizer should *mutate* the config object, because // react-scripts imports the config as a `const` and we can't
// modify that reference.
let config = defaults.__get__('config');
customizer(config);
}
複製代碼
上述代碼中的config就是webpack.config.dev.js(開發時)或webpack.config.prod.js(生產打包時)中module.exports的對象。有了這個對象咱們能夠對它作添加配置的操做
由於stylus就是爲了node環境而打造,語法和css幾乎相差不大。全部該項目使用stylus做爲css預處理語言。stylus的github地址:github.com/stylus/styl…
首先安裝stylus模塊
npm install stylus stylus-loader --save-dev
複製代碼
模塊安裝完成後,在scripts文件夾下面新建overrides-config.base.js文件,同時爲開發、和生產打包時建立overrides-config.dev.js和overrides-config.prod.js文件
overrides-config.dev.js
module.exports = function(config) {
// Use your ESLint
/*let eslintLoader = config.module.rules[0];
eslintLoader.use[0].options.useEslintrc = true;*/
// Add the stylus loader second-to-last
// (last one must remain as the "file-loader")
let loaderList = config.module.rules[1].oneOf;
loaderList.splice(loaderList.length - 1, 0, {
test: /\.styl$/,
use: ["style-loader", "css-loader", "stylus-loader"]
});
};
複製代碼
overrides-config.prod.js
const paths = require('react-scripts/config/paths');
const ExtractTextPlugin = require('extract-text-webpack-plugin');
// Webpack uses `publicPath` to determine where the app is being served from.
// It requires a trailing slash, or the file assets will get an incorrect path.
const publicPath = paths.servedPath;
// Some apps do not use client-side routing with pushState.
// For these, "homepage" can be set to "." to enable relative asset paths.
const shouldUseRelativeAssetPaths = publicPath === './';
const cssFilename = 'static/css/[name].[contenthash:8].css';
const extractTextPluginOptions = shouldUseRelativeAssetPaths
? // Making sure that the publicPath goes back to to build folder.
{ publicPath: Array(cssFilename.split('/').length).join('../') }
: {};
module.exports = function(config) {
// Use your ESLint
/*let eslintLoader = config.module.rules[0];
eslintLoader.use[0].options.useEslintrc = true;*/
// Add the stylus loader second-to-last
// (last one must remain as the "file-loader")
let loaderList = config.module.rules[1].oneOf;
loaderList.splice(loaderList.length - 1, 0, {
test: /\.styl$/,
loader: ExtractTextPlugin.extract(
Object.assign(
{
fallback: {
loader: require.resolve('style-loader'),
options: {
hmr: false
}
},
use: [
{
loader: require.resolve('css-loader'),
options: {
importLoaders: 1,
minimize: true,
sourceMap: true
}
},
{
loader: require.resolve('stylus-loader')
}
]
}
), extractTextPluginOptions)
});
};
複製代碼
打開package.json文件
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
}
複製代碼
將start和build腳本修改以下
"scripts": {
"start": "node scripts/customized-build start",
"build": "node scripts/customized-build build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
}
複製代碼
將項目下的App.css修改爲App.styl,去掉裏面的花括號和分號
.App
text-align: center
.App-logo
animation: App-logo-spin infinite 20s linear
height: 80px
.App-header
background-color: #222
height: 150px
padding: 20px
color: white
.App-title
font-size: 1.5em
.App-intro
font-size: large
@keyframes App-logo-spin {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}
複製代碼
運行命令npm start,此時運行的是自定義的配置文件
autoprefixer是用來處理css廠商前綴的一款插件。react腳手架已經依賴了autoprefixer插件,因此npm已經爲咱們安裝了autoprefixer
爲了stylus和autoprefixer一塊兒使用這裏使用一款poststylus插件,github地址:github.com/seaneking/p…。安裝poststylus
npm install poststylus --save-dev
複製代碼
在overrides-config.base.js配置文件,增長poststylus插件配置
const webpack = require('webpack');
const poststylus = require('poststylus');
const autoprefixer = require('autoprefixer');
複製代碼
module.exports.stylusLoaderOptionsPlugin = new webpack.LoaderOptionsPlugin({
options: {
stylus: {
use: [
poststylus([
require('postcss-flexbugs-fixes'),
autoprefixer({
browsers: [
'>1%',
'last 4 versions',
'Firefox ESR',
'not ie < 9', // React doesn't support IE8 anyway ], flexbox: 'no-2009', }) ]) ] } } }); 複製代碼
而後在overrides-config.dev.js和overrides-config.prod.js中導入overrides-config.base.js,在model.exports函數中增長如下代碼
// Use Poststylus Plugin to handle stylus
config.plugins.push(baseConfig.stylusLoaderOptionsPlugin);
複製代碼
未使用poststylus插件時,咱們查看Logo圖片的樣式
使用後
已經爲咱們自動添加了前綴
在使用相對路徑的時候若是層級很深會很是麻煩,這個時候配置根路徑別名就很方便的使用絕對路徑了 在overrides-config.base.js中增長如下代碼
const path = require('path');
複製代碼
function resolve (dir) {
return path.join(__dirname, '..', dir)
}
module.exports.rootPath = resolve('src');
複製代碼
最後在overrides-config.dev.js和overrides-config.prod.js的model.exports函數中增長
// Define the root path alias
let alias = config.resolve.alias;
alias["@"] = baseConfig.rootPath;
複製代碼
overrides-config.base.js完整配置以下
const path = require('path');
const webpack = require('webpack');
const poststylus = require('poststylus');
const autoprefixer = require('autoprefixer');
function resolve (dir) {
return path.join(__dirname, '..', dir)
}
module.exports.rootPath = resolve('src');
module.exports.stylusLoaderOptionsPlugin = new webpack.LoaderOptionsPlugin({
options: {
stylus: {
use: [
poststylus([
require('postcss-flexbugs-fixes'),
autoprefixer({
browsers: [
'>1%',
'last 4 versions',
'Firefox ESR',
'not ie < 9', // React doesn't support IE8 anyway ], flexbox: 'no-2009', }) ]) ] } } }); 複製代碼
後續更新中...
完整項目地址:github.com/code-mcx/ma…
本章節代碼在chapter1分支