-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathglobalconfig.js
134 lines (127 loc) · 6.19 KB
/
globalconfig.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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
const chalk = require('chalk')
const custom = require('../customcolors')
const colorComment = custom.colorComment
const colorPrimitive = custom.colorPrimitive
const colorError = custom.colorError
const SILENT = {
category: 'Global Config',
name: 'silent',
type: 'boolean',
default: 'false',
usage: `Vue.config.silent = ${chalk.magentaBright('true')}`,
details: 'Suppress all Vue logs and warnings',
}
const OPTION_MERGE_STRATEGIES = {
category: 'Global Config',
name: 'optionMergeStrategies',
type: '{ [key: string]: Function }',
default: '{}',
usage: `Vue.config.optionMergeStrategies._my_option = ${chalk.magentaBright('function')}(parent,child,vm){
${chalk.magentaBright('return')} child + ${colorPrimitive('1')}
}
${chalk.magentaBright('const')} Profile = Vue.extend({
_my_option: ${colorPrimitive('1')}
})
${colorComment("// Profile.options._my_option = 2")}\n`,
details: `Define custom merging strategies for options.
The merge strategy receives the value of that option defined
on the parent and child instances as the first and second arguments,
respectively. The context Vue instance is passed as the third argument.`
}
const DEVTOOLS = {
category: 'Global Config',
name: 'devtools',
type: 'boolean',
default: `true ${chalk.white('(')} false ${chalk.white('in production builds)')}`,
usage: `${colorComment("// make sure to set this synchronously immediately after loading Vue")}
Vue.config.devtools = ${chalk.magentaBright('true')}`,
details: `Check whether to allow ${chalk.green('vue-devtools')} inspection.
This option's default value is ${chalk.magentaBright('true')} in development builds and ${chalk.magentaBright('false')} in production builds.
You can set it to ${chalk.magentaBright('true')} to enable inspection for production builds`
}
const ERROR_HANDLER = {
category: 'Global Config',
name: 'errorHandler',
type: 'Function',
default: 'undefined',
usage: `Vue.config.errorHandler = ${chalk.magentaBright('function')}(err,vm,info){
${colorComment("// handle error")}
${colorComment("// 'info' is a Vue-specific error info, e.g. which lifecycle hook")}
${colorComment("// the error was found in. Only available in 2.2.0+")}
}`,
details: `Assign a handler for uncaught errors during component render function
and watchers. The handler gets called with the error and the Vue instance.`
}
const WARN_HANDLER = {
category: 'Global Config',
name: 'warnHandler',
type: 'Function',
default: 'undefined',
usage: `Vue.config.warnHandler = ${chalk.magentaBright('function')}(msg,vm,trace){
${colorComment("// trace is the component hierarchy trace")}
}`,
details: `Assign a custom handler for runtime Vue warnings. Note this only works
during development and is ignored in production.`
}
const IGNORED_ELEMENTS = {
category: 'Global Config',
name: 'ignoredElements',
type: 'Array<string>',
usage: `Vue.config.ignoredElements = [
'my-custom-web-component', 'another-web-component'
]`,
details: `Make Vue ignore custom elements defined outside of Vue
(e.g., using the Web Components APIs). Otherwise, it will throw
a warning about an ${colorError("Unknown custom element")}, assuming that you forgot to
register a global component or misspelled a component name.`
}
const KEY_CODES = {
category: 'Global Config',
name: 'keyCodes',
type: '{ [key: string]: number | Array<number> }',
default: '{}',
usage: `Vue.config.keyCodes = {
v: ${colorPrimitive('86')},
f1: ${colorPrimitive('112')},
${colorComment("// camelCase won't work")}
mediaPlayPause: ${colorPrimitive('179')},
${colorComment("// instead you can use kebab-case with double quotation marks")}
${chalk.green('"media-play-pause"')}: ${colorPrimitive('179')},
up: ${colorPrimitive('[38, 87]')}
}
${colorComment("// example")}
${chalk.blue('<input type=')}${chalk.green('"text"')} ${chalk.blue('@keyup.media-play-pause=')}${chalk.green('"method"')}${chalk.blue('>')}
`,
details: 'Define custom key alias(es) for v-on.'
}
const PERFORMANCE = {
category: 'Global Config',
name: 'performance',
type: 'boolean',
default: 'false (from 2.2.3)',
usage: `Vue.config.performance = ${chalk.magentaBright('true')}`,
details: `Set this to ${colorPrimitive("true")} to enable component init, compile,
render, and patch performance in the browser devtool timeline.
Only works in development mode and in browsers that support the
${chalk.green("performance.mark")} API.`,
}
const PRODUCTION_TIP = {
category: 'Global Config',
name: 'productionTip',
type: 'boolean',
default: 'true',
usage: `Vue.config.productionTip = ${chalk.magentaBright('false')}`,
details: `Set this to ${colorPrimitive("false")} to prevent the production
tip on Vue startup.`
}
module.exports = {
SILENT,
OPTION_MERGE_STRATEGIES,
DEVTOOLS,
ERROR_HANDLER,
WARN_HANDLER,
IGNORED_ELEMENTS,
KEY_CODES,
PERFORMANCE,
PRODUCTION_TIP
}