-
Notifications
You must be signed in to change notification settings - Fork 222
/
Copy pathweb.dart
284 lines (261 loc) · 8.09 KB
/
web.dart
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
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
part of flutter_native_splash_cli;
// Image template
class _WebLaunchImageTemplate {
final String fileName;
final double pixelDensity;
_WebLaunchImageTemplate({required this.fileName, required this.pixelDensity});
}
/// Create Web splash screen
void _createWebSplash({
required String? imagePath,
required String? darkImagePath,
required String? color,
required String? darkColor,
required String? brandingImagePath,
required String? brandingDarkImagePath,
required String imageMode,
required String brandingMode,
required String? backgroundImage,
required String? darkBackgroundImage,
}) {
if (!File(_webIndex).existsSync()) {
print('[Web] $_webIndex not found. Skipping Web.');
return;
}
darkImagePath ??= imagePath;
_createWebImages(
imagePath: imagePath,
webSplashImages: [
_WebLaunchImageTemplate(fileName: 'light-1x.png', pixelDensity: 1),
_WebLaunchImageTemplate(fileName: 'light-2x.png', pixelDensity: 2),
_WebLaunchImageTemplate(fileName: 'light-3x.png', pixelDensity: 3),
_WebLaunchImageTemplate(fileName: 'light-4x.png', pixelDensity: 4),
],
);
_createWebImages(
imagePath: darkImagePath,
webSplashImages: [
_WebLaunchImageTemplate(fileName: 'dark-1x.png', pixelDensity: 1),
_WebLaunchImageTemplate(fileName: 'dark-2x.png', pixelDensity: 2),
_WebLaunchImageTemplate(fileName: 'dark-3x.png', pixelDensity: 3),
_WebLaunchImageTemplate(fileName: 'dark-4x.png', pixelDensity: 4),
],
);
brandingDarkImagePath ??= brandingImagePath;
_createWebImages(
imagePath: brandingImagePath,
webSplashImages: [
_WebLaunchImageTemplate(fileName: 'branding-1x.png', pixelDensity: 1),
_WebLaunchImageTemplate(fileName: 'branding-2x.png', pixelDensity: 2),
_WebLaunchImageTemplate(fileName: 'branding-3x.png', pixelDensity: 3),
_WebLaunchImageTemplate(fileName: 'branding-4x.png', pixelDensity: 4),
],
);
_createWebImages(
imagePath: brandingDarkImagePath,
webSplashImages: [
_WebLaunchImageTemplate(
fileName: 'branding-dark-1x.png',
pixelDensity: 1,
),
_WebLaunchImageTemplate(
fileName: 'branding-dark-2x.png',
pixelDensity: 2,
),
_WebLaunchImageTemplate(
fileName: 'branding-dark-3x.png',
pixelDensity: 3,
),
_WebLaunchImageTemplate(
fileName: 'branding-dark-4x.png',
pixelDensity: 4,
),
],
);
createBackgroundImages(
backgroundImage: backgroundImage,
darkBackgroundImage: darkBackgroundImage,
);
_createSplashCss(
color: color,
darkColor: darkColor,
darkBackgroundImage: darkBackgroundImage,
backgroundImage: backgroundImage,
hasDarkImage: darkBackgroundImage != null,
);
_createSplashJs();
_updateHtml(
imageMode: imageMode,
imagePath: imagePath,
brandingMode: brandingMode,
brandingImagePath: brandingImagePath,
);
}
void createBackgroundImages({
required String? backgroundImage,
required String? darkBackgroundImage,
}) {
print('[Web] Creating background images');
_createBackgroundImage(
backgroundImage: backgroundImage,
fileName: "light-background.png",
);
_createBackgroundImage(
backgroundImage: darkBackgroundImage,
fileName: "dark-background.png",
);
}
void _createBackgroundImage({
required String? backgroundImage,
required String fileName,
}) {
final backgroundDestination = '$_webSplashImagesFolder$fileName';
if (backgroundImage == null) {
final file = File(backgroundDestination);
if (file.existsSync()) file.deleteSync();
} else {
createBackgroundImage(
imageDestination: backgroundDestination,
imageSource: backgroundImage,
);
}
}
void _createWebImages({
required String? imagePath,
required List<_WebLaunchImageTemplate> webSplashImages,
}) {
if (imagePath == null) {
for (final template in webSplashImages) {
final file = File(_webSplashImagesFolder + template.fileName);
if (file.existsSync()) file.deleteSync();
}
} else {
final image = decodeImage(File(imagePath).readAsBytesSync());
if (image == null) {
print('$imagePath could not be read');
exit(1);
}
print('[Web] Creating images');
for (final template in webSplashImages) {
_saveImageWeb(template: template, image: image);
}
}
}
void _saveImageWeb({
required _WebLaunchImageTemplate template,
required Image image,
}) {
final newFile = copyResize(
image,
width: image.width * template.pixelDensity ~/ 4,
height: image.height * template.pixelDensity ~/ 4,
interpolation: Interpolation.linear,
);
final file = File(_webSplashImagesFolder + template.fileName);
file.createSync(recursive: true);
file.writeAsBytesSync(encodePng(newFile));
}
void _createSplashCss({
required String? color,
required String? darkColor,
required String? backgroundImage,
required String? darkBackgroundImage,
required bool hasDarkImage,
}) {
print('[Web] Creating CSS');
color ??= 'ffffff';
var cssContent = _webCss.replaceFirst('[LIGHTBACKGROUNDCOLOR]', '#$color');
if (darkColor != null || darkBackgroundImage != null || hasDarkImage) {
darkColor ??= '000000';
cssContent +=
_webCssDark.replaceFirst('[DARKBACKGROUNDCOLOR]', '#$darkColor');
}
if (backgroundImage == null) {
cssContent = cssContent.replaceFirst(' [LIGHTBACKGROUNDIMAGE]\n', '');
} else {
cssContent = cssContent.replaceFirst(
'[LIGHTBACKGROUNDIMAGE]',
'background-image: url("img/light-background.png");',
);
}
if (backgroundImage == null) {
cssContent = cssContent.replaceFirst(' [DARKBACKGROUNDIMAGE]\n', '');
} else {
cssContent = cssContent.replaceFirst(
'[DARKBACKGROUNDIMAGE]',
'background-image: url("img/dark-background.png");',
);
}
final file = File(_webFolder + _webRelativeStyleFile);
file.createSync(recursive: true);
file.writeAsStringSync(cssContent);
}
void _createSplashJs() {
final file = File(_webFolder + _webRelativeJSFile);
file.createSync(recursive: true);
file.writeAsStringSync(_webJS);
}
void _updateHtml({
required String imageMode,
required String? imagePath,
required String brandingMode,
required String? brandingImagePath,
}) {
print('[Web] Updating index.html');
final webIndex = File(_webIndex);
final document = html_parser.parse(webIndex.readAsStringSync());
// Add style sheet if it doesn't exist
document.querySelector(
'link[rel="stylesheet"][type="text/css"][href="splash/style.css"]',
) ??
document.head?.append(
html_parser.parseFragment(
' <link rel="stylesheet" type="text/css" href="splash/style.css">\n',
container: '',
),
);
// Add meta viewport if it doesn't exist
document.querySelector(
'meta[content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"][name="viewport"]',
) ??
document.head?.append(
html_parser.parseFragment(
' <meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" name="viewport">\n',
container: '',
),
);
// Add javascript if it doesn't exist
document.querySelector(
'script[src="splash/splash.js"]',
) ??
document.head?.append(
html_parser.parseFragment(
' <script src="splash/splash.js"></script>\n',
container: '',
),
);
// Update splash image
document.querySelector('picture#splash')?.remove();
if (imagePath != null) {
document.body?.insertBefore(
html_parser.parseFragment(
_indexHtmlPicture.replaceAll('[IMAGEMODE]', imageMode),
container: '',
),
document.body?.firstChild,
);
}
// Update branding image
document.querySelector('picture#splash-branding')?.remove();
if (brandingImagePath != null) {
document.body?.insertBefore(
html_parser.parseFragment(
_indexHtmlBrandingPicture.replaceAll('[BRANDINGMODE]', brandingMode),
container: '',
),
document.body?.firstChild,
);
}
// Write the updated index.html
webIndex.writeAsStringSync(document.outerHtml);
}