-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathvite.config.js
206 lines (202 loc) · 5.38 KB
/
vite.config.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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
import * as path from 'path'
import {globSync} from 'glob'
import vue from '@vitejs/plugin-vue'
import { default as handlebarsPlugin } from 'vite-plugin-handlebars'
import handlebars from 'handlebars'
import layouts from 'handlebars-layouts'
import { svgBuilder } from './src/build/svgsprite'
const paths = {
views: {
pages: './src/pages/',
dist: './build/'
},
assets: {
dist: './build/assets/'
},
icons: 'src/assets/img/svg-sprite/'
}
// Icon sprite setup
var iconsInSprite = []
globSync(paths.icons + '**/*.svg').forEach(function (file) {
var icon = path.basename(file, path.extname(file))
iconsInSprite.push(icon)
})
function handlebarsOverride(options) {
handlebars.registerHelper(layouts(handlebars))
const plugin = handlebarsPlugin(options)
delete plugin.handleHotUpdate
return plugin
}
export default {
root: 'src',
build: {
outDir: '../build',
emptyOutDir: true,
copyPublicDir: true,
assetsDir: 'assets',
rollupOptions: {
input: globSync(path.resolve(__dirname, 'src/**', '*.html'), { ignore: path.resolve(__dirname, 'src/layouts/**') })
},
},
plugins: [
svgBuilder({
path:'./src/assets/img/svg-sprite/',
prefix: 'icon',
output: './src/assets/img/',
filename: 'svg-sprite',
writeFile: true,
position: 'end'
}),
handlebarsOverride({
partialDirectory: [
path.resolve(__dirname, 'src/components'),
path.resolve(__dirname, 'src/layouts')
],
reloadOnPartialChange: true,
helpers: {
json: (context) => {
return JSON.stringify(context)
},
assets: (options) => {
let file
if (options.data.file) {
file = options.data.file
} else {
file = options.data.root.file
}
let relative = path.relative(paths.views.pages, path.relative(file.cwd, path.dirname(file.path)))
let currentPath = path.join(paths.views.dist, relative)
return new handlebars.SafeString(path.relative(currentPath, paths.assets.dist).split('\\').join('/'))
},
countByKey: (data, key) => {
let count = 0
data.forEach(function (item) {
if (item.pages) {
item.pages.forEach(function (child) {
if (child[key]) {
count++
}
})
} else if (item.blocks) {
item.blocks.forEach(function (child) {
if (child[key]) {
count++
}
})
}
})
return count
},
countByValue: (data, key, value) => {
let count = 0
data.forEach(function (item) {
if (item.pages) {
item.pages.forEach(function (child) {
if (child[key] === value) {
count++
}
})
} else if (item.blocks) {
item.blocks.forEach(function (child) {
if (child[key] === value) {
count++
}
})
}
})
return count
},
createArray: (dataName, theData, options) => {
const array = theData.split(',')
options.data.root[dataName] = array
},
defaultValue: (value, safeValue) => {
var out = value || safeValue
return new handlebars.SafeString(out)
},
ifEquals: (arg1, arg2, options) => {
return (arg1 == arg2) ? options.fn(this) : options.inverse(this)
},
lowerCase: (arg1) => {
return arg1.replace(/\s/g, '').toLowerCase()
},
object: ({ hash }) => {
return hash
},
parseJSON: (string, data, options) => {
string = string.replace(/\{\{([\w]+)\}\}/g, (str, group) => data[group] || '')
return options.fn(JSON.parse(string))
},
setVariable: (varName, varValue, options) => {
if (!options.data.root) {
options.data.root = {}
}
options.data.root[varName] = varValue
},
assetLink: (value) => {
return new handlebars.SafeString(handlebars.Utils.escapeExpression(value))
},
switch: (value, options) => {
this.switch_value = value
return options.fn(this)
},
case: (value, options) => {
if (value == this.switch_value) {
return options.fn(this)
}
},
times: (n, block) => {
var accum = ''
for (var i = 0;i < n;++i) {
block.data.index = i
block.data.offsetindex = i + 1
block.data.first = i === 0
block.data.last = i === (n - 1)
accum += block.fn(this)
}
return accum
}
},
runtimeOptions: {
data: {
blocklist: require('./src/data/blocklist.json'),
pagelist: require('./src/data/pagelist.json'),
author: 'Roy Barber',
year: new Date().getFullYear(),
iconList: iconsInSprite,
}
}
}),
vue()
],
resolve: {
alias: {
// Fix hot reloading of dynamic components
find: '@vue/runtime-core',
replacement: '@vue/runtime-core/dist/runtime-core.esm-bundler.js',
// Alias
'@': path.resolve(__dirname, 'src/assets/js'),
'@api': path.resolve(__dirname, 'src/assets/js/api'),
'@helpers': path.resolve(__dirname, 'src/assets/js/helpers'),
'@modules': path.resolve(__dirname, './src/assets/js/modules'),
'@vendor': path.resolve(__dirname, './src/assets/js/vendor'),
'@vueApps': path.resolve(__dirname, './src/assets/js/vue-apps')
}
},
server: {
watch: {
usePolling: true,
},
host: true,
strictPort: true,
port: 5173,
// Proxy mockoon server
proxy: {
'/api': {
target: 'http://localhost:7078',
changeOrigin: true,
secure: false
}
}
}
}