-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplate.js
115 lines (90 loc) · 2.17 KB
/
template.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
/**
* pages模版快速生成脚本,执行命令 npm run tep `文件名`
*/
const fs = require('fs')
const dirName = process.argv[2]
if (!dirName) {
console.log('文件夹名称不能为空!')
console.log('示例:npm run tep test')
process.exit(0)
}
// 页面模版
const indexTep = `import Taro, { Component } from '@tarojs/taro'
import { View } from '@tarojs/components'
import { connect } from '@tarojs/redux'
import './index.scss'
@connect(({${dirName},common,loading}) => ({
...${dirName},
...common,
loading
}))
export default class ${titleCase(dirName)} extends Component {
config = {
navigationBarTitleText: '${dirName}',
}
componentDidMount = () => {
}
render() {
const {
} = this.props
return (
<View className='${dirName}-page'>
${dirName}
</View>
)
}
}
`
// scss文件模版
const scssTep = `@import "../../styles/mixin";
.${dirName}-page {
@include wh(100%, 100%);
}
`
// model文件模版
const modelTep = `import * as ${dirName}Api from './service'
export default {
namespace: '${dirName}',
state: {
},
effects: {
* effectsDemo(_, { call, put }) {
const { status, data } = yield call(${dirName}Api.demo, {})
if (status === 'ok') {
yield put({ type: 'save',
payload: {
topData: data,
} })
}
},
},
reducers: {
save(state, { payload }) {
return { ...state, ...payload }
},
},
}
`
// service页面模版
const serviceTep = `import Request from '../../utils/request'
export const demo = data => Request({
api: 'demo',
data,
})
`
fs.mkdirSync(`./src/pages/${dirName}`) // mkdir $1
process.chdir(`./src/pages/${dirName}`) // cd $1
fs.writeFileSync('index.js', indexTep)
fs.writeFileSync('index.scss', scssTep)
fs.writeFileSync('model.js', modelTep)
fs.writeFileSync('service.js', serviceTep)
console.log(`模版${dirName}已创建,请手动增加models`)
function titleCase(str) {
const array = str.toLowerCase().split(' ')
for (let i = 0; i < array.length; i++) {
array[i] = array[i][0].toUpperCase() + array[i].substring(1, array[i].length)
}
const string = array.join(' ')
return string
}
process.exit(0)