This repository has been archived by the owner on May 31, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpreset.ts
211 lines (196 loc) · 4.93 KB
/
preset.ts
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
207
208
209
210
211
export default definePreset({
name: 'laravel:inertia',
options: {
base: true,
tailwindcss: true,
pest: true,
https: false,
},
postInstall: ({ hl }) => [
`Run the development server with ${hl('npm run dev')}`,
`Edit your scripts in ${hl('resources/scripts')}`,
`Edit your pages and components in ${hl('resources/views')}`,
`Build for production with ${hl('npm run build')}`,
],
handler: async(context) => {
if (context.options.base) {
await applyNestedPreset({
title: 'install Vite',
preset: 'laravel-presets/vite',
inheritsArguments: true,
})
}
if (context.options.pest) {
await applyNestedPreset({
title: 'install Pest',
preset: 'laravel-presets/pest',
inheritsArguments: true,
})
}
await installInertia(context.options.tailwindcss)
},
})
async function installInertia(tailwindcss: boolean) {
await installPackages({
title: 'install PHP dependencies',
for: 'php',
packages: ['inertiajs/inertia-laravel'],
})
await group({
title: 'install Node dependencies',
handler: async() => {
await installPackages({
for: 'node',
packages: [
'vue@next',
'@vue/compiler-sfc',
'@vitejs/plugin-vue',
'@inertiajs/inertia',
'@inertiajs/inertia-vue3',
],
dev: true,
})
// This is not actually useful but it cleans up the package.json
await editFiles({
files: 'package.json',
operations: [
{
type: 'edit-json',
replace: (json, omit) => ({
...json,
dependencies: {
...json.dependencies,
'vue': json.devDependencies.vue,
'@inertiajs/inertia': json.devDependencies['@inertiajs/inertia'],
'@inertiajs/inertia-vue3': json.devDependencies['@inertiajs/inertia-vue3'],
},
devDependencies: {
...omit(json.devDependencies, 'vue', '@inertiajs/inertia', '@inertiajs/inertia-vue3'),
},
}),
},
],
})
},
})
await group({
title: 'install Inertia scaffolding',
handler: async() => {
await extractTemplates({
title: 'extract templates',
from: 'default',
})
await deletePaths({
title: 'remove default view',
paths: ['resources/views/welcome.blade.php'],
})
await editFiles({
title: 'udpate route file',
files: 'routes/web.php',
operations: [{ type: 'update-content', update: (r) => r.replace("view('welcome')", "inertia('welcome')") }],
})
await executeCommand({
title: 'publish Inertia configuration',
command: 'php',
arguments: ['artisan', 'vendor:publish', '--provider=Inertia\\ServiceProvider'],
})
await executeCommand({
title: 'publish Inertia middleware',
command: 'php',
arguments: ['artisan', 'inertia:middleware'],
})
await editFiles({
title: 'update Inertia middleware',
files: 'app/Http/Middleware/HandleInertiaRequests.php',
operations: [
{
type: 'add-line',
position: 'before',
match: /return parent::version\(\$request\)/,
lines: [
'return vite()->getHash();',
],
},
{
type: 'remove-line',
match: /return parent::version\(\$request\)/,
},
{
type: 'remove-line',
match: /array_merge\(parent::share/,
count: 1,
start: 1,
},
{
type: 'add-line',
position: 'after',
match: /array_merge\(parent::share/,
indent: ' ',
lines: [
"'versions' => [",
" 'php' => PHP_VERSION,",
" 'laravel' => \\Illuminate\\Foundation\\Application::VERSION",
'],',
],
},
],
})
await editFiles({
title: 'register Inertia pages for testing',
files: 'config/inertia.php',
operations: [
{
type: 'update-content',
update: (content) => content.replace('js/Pages', 'views/pages'),
},
{
type: 'update-content',
update: (content) => content // Fixes weird line returns
.replace(/\n\n/g, '\n')
.replace(/\/\*/g, '\n /*'),
},
],
})
await editFiles({
title: 'register Inertia middleware',
files: 'app/Http/Kernel.php',
operations: [
{ type: 'add-line', position: 'after', match: /SubstituteBindings::class,/, lines: '\\App\\Http\\Middleware\\HandleInertiaRequests::class,' },
],
})
await editFiles({
title: 'update Vite config',
files: 'vite.config.ts',
operations: [
{
type: 'add-line',
position: 'after',
match: /vite-plugin-laravel/,
lines: [
"import vue from '@vitejs/plugin-vue'",
"import inertia from './resources/scripts/vite/inertia-layout'",
],
},
{
type: 'add-line',
position: 'before',
match: /laravel\(/,
lines: [
'inertia(),',
'vue(),',
],
},
],
})
if (tailwindcss) {
await editFiles({
title: 'remove inline CSS',
files: 'resources/views/layouts/default.vue',
operations: [
{ type: 'remove-line', match: /<style>/, start: -1, count: 4 },
],
})
}
},
})
}