mirror of
https://github.com/vuejs/vue-cli.git
synced 2026-03-17 15:21:10 -05:00
138 lines
4.3 KiB
JavaScript
138 lines
4.3 KiB
JavaScript
const path = require('path')
|
|
const fs = require('fs')
|
|
|
|
function readAppManifest (cwd) {
|
|
const manifestPath = path.join(cwd, 'public/manifest.json')
|
|
if (fs.existsSync(manifestPath)) {
|
|
try {
|
|
return JSON.parse(fs.readFileSync(manifestPath, { encoding: 'utf8' }))
|
|
} catch (e) {
|
|
console.log(`Can't read JSON in ${manifestPath}`)
|
|
}
|
|
}
|
|
}
|
|
|
|
function updateAppManifest (cwd, handler) {
|
|
const manifestPath = path.join(cwd, 'public/manifest.json')
|
|
if (fs.existsSync(manifestPath)) {
|
|
try {
|
|
const manifest = JSON.parse(fs.readFileSync(manifestPath, { encoding: 'utf8' }))
|
|
handler(manifest)
|
|
fs.writeFileSync(manifestPath, JSON.stringify(manifest), { encoding: 'utf8' })
|
|
} catch (e) {
|
|
console.log(`Can't update JSON in ${manifestPath}`)
|
|
}
|
|
}
|
|
}
|
|
|
|
module.exports = api => {
|
|
// Config file
|
|
api.describeConfig({
|
|
id: 'pwa',
|
|
name: 'PWA',
|
|
description: 'pwa.config.pwa.description',
|
|
link: 'https://github.com/vuejs/vue-cli/tree/dev/packages/%40vue/cli-plugin-pwa#configuration',
|
|
icon: 'mobile.xm',
|
|
files: {
|
|
js: ['vue.config.js']
|
|
},
|
|
onRead: ({ data, cwd }) => {
|
|
const manifest = readAppManifest(cwd)
|
|
return {
|
|
prompts: [
|
|
{
|
|
name: 'workboxPluginMode',
|
|
type: 'list',
|
|
message: 'Plugin mode',
|
|
description: 'This allows you to the choose between the two modes supported by the underlying `workbox-webpack-plugin`',
|
|
link: 'https://developers.google.com/web/tools/workbox/modules/workbox-webpack-plugin#which_plugin_to_use',
|
|
default: 'GenerateSW',
|
|
value: data.pwa && data.pwa.workboxPluginMode,
|
|
choices: [
|
|
{
|
|
name: 'GenerateSW',
|
|
value: 'GenerateSW'
|
|
},
|
|
{
|
|
name: 'InjectManifest',
|
|
value: 'InjectManifest'
|
|
}
|
|
]
|
|
},
|
|
{
|
|
name: 'name',
|
|
type: 'input',
|
|
message: 'App name',
|
|
description: 'App name displayed on the Splash screen and various other places. Also used as the value for the `apple-mobile-web-app-title` meta tag in the generated HTML.',
|
|
value: data.pwa && data.pwa.name
|
|
},
|
|
{
|
|
name: 'themeColor',
|
|
type: 'input',
|
|
message: 'Theme color',
|
|
description: 'Color used to theme the browser',
|
|
default: '#4DBA87',
|
|
value: data.pwa && data.pwa.themeColor
|
|
},
|
|
{
|
|
name: 'backgroundColor',
|
|
type: 'input',
|
|
message: 'Splash background color',
|
|
description: 'Background color used for the app splash screen',
|
|
default: '#000000',
|
|
value: manifest && manifest.background_color,
|
|
skipSave: true
|
|
},
|
|
{
|
|
name: 'msTileColor',
|
|
type: 'input',
|
|
message: 'Windows app tile color',
|
|
description: 'Color used for the app tile on Windows',
|
|
default: '#000000',
|
|
value: data.pwa && data.pwa.msTileColor
|
|
},
|
|
{
|
|
name: 'appleMobileWebAppStatusBarStyle',
|
|
type: 'input',
|
|
message: 'Apple mobile status bar style',
|
|
description: 'Style for the web app status bar on iOS',
|
|
default: 'default',
|
|
value: data.pwa && data.pwa.appleMobileWebAppStatusBarStyle
|
|
}
|
|
]
|
|
}
|
|
},
|
|
onWrite: async ({ api, prompts, cwd }) => {
|
|
const result = {}
|
|
for (const prompt of prompts.filter(p => !p.raw.skipSave)) {
|
|
result[`pwa.${prompt.id}`] = await api.getAnswer(prompt.id)
|
|
}
|
|
api.setData(result)
|
|
|
|
// Update app manifest
|
|
|
|
const name = result['pwa.name']
|
|
if (name) {
|
|
updateAppManifest(cwd, manifest => {
|
|
manifest.name = name
|
|
manifest.short_name = name
|
|
})
|
|
}
|
|
|
|
const themeColor = result['pwa.themeColor']
|
|
if (themeColor) {
|
|
updateAppManifest(cwd, manifest => {
|
|
manifest.theme_color = themeColor
|
|
})
|
|
}
|
|
|
|
const backgroundColor = await api.getAnswer('backgroundColor')
|
|
if (backgroundColor) {
|
|
updateAppManifest(cwd, manifest => {
|
|
manifest.background_color = backgroundColor
|
|
})
|
|
}
|
|
}
|
|
})
|
|
}
|