mirror of
https://github.com/flutter/flutter.git
synced 2025-06-03 00:51:18 +00:00

https://github.com/dart-lang/webdev/issues/2516 https://github.com/dart-lang/webdev/issues/2561 - Adds logic to emit newly compiled sources to a file that can be read by the bootstrapper. - Adds bootstrapping logic to reload scripts as needed. This involves implementing the necessary hot restart callback, fetching and processing the emitted file of newly compiled sources, cache busting, and loading the scripts onto the page. A lot of this logic is similar or identical to what we have for internal hot restart support. - Runs existing hot restart tests with the new bundle format. - Adds meta tag to run with utf-8 like in https://github.com/flutter/flutter/pull/161493. - Uses DWDS 24.3.3. ## Pre-launch Checklist - [X] I read the [Contributor Guide] and followed the process outlined there for submitting PRs. - [X] I read the [Tree Hygiene] wiki page, which explains my responsibilities. - [X] I read and followed the [Flutter Style Guide], including [Features we expect every widget to implement]. - [X] I signed the [CLA]. - [X] I listed at least one issue that this PR fixes in the description above. - [X] I updated/added relevant documentation (doc comments with `///`). - [X] I added new tests to check the change I am making, or this PR is [test-exempt]. - [X] I followed the [breaking change policy] and added [Data Driven Fixes] where supported. - [ ] All existing and new tests are passing.
81 lines
2.4 KiB
Dart
81 lines
2.4 KiB
Dart
// Copyright 2014 The Flutter Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
import 'package:file/file.dart';
|
|
|
|
import '../test_utils.dart';
|
|
import 'deferred_components_config.dart';
|
|
|
|
const String _kDefaultHtml = '''
|
|
<html>
|
|
<head>
|
|
<meta charset='utf-8'>
|
|
<title>Hello, World</title>
|
|
</head>
|
|
<body>
|
|
<script src="main.dart.js"></script>
|
|
</body>
|
|
</html>
|
|
''';
|
|
|
|
abstract class Project {
|
|
/// Creates a flutter Project for testing.
|
|
///
|
|
/// If passed, `indexHtml` is used as the contents of the web/index.html file.
|
|
Project({this.indexHtml = _kDefaultHtml});
|
|
|
|
late Directory dir;
|
|
|
|
String get pubspec;
|
|
String? get main => null;
|
|
String? get test => null;
|
|
String? get generatedFile => null;
|
|
DeferredComponentsConfig? get deferredComponents => null;
|
|
|
|
Uri get mainDart => Uri.parse('package:test/main.dart');
|
|
|
|
/// The contents for the index.html file of this `Project`.
|
|
///
|
|
/// Defaults to [_kDefaultHtml] via the Project constructor.
|
|
///
|
|
/// (Used by [HotReloadProject].)
|
|
final String indexHtml;
|
|
|
|
Future<void> setUpIn(Directory dir) async {
|
|
this.dir = dir;
|
|
writeFile(fileSystem.path.join(dir.path, 'pubspec.yaml'), pubspec);
|
|
final String? main = this.main;
|
|
if (main != null) {
|
|
writeFile(fileSystem.path.join(dir.path, 'lib', 'main.dart'), main);
|
|
}
|
|
final String? test = this.test;
|
|
if (test != null) {
|
|
writeFile(fileSystem.path.join(dir.path, 'test', 'test.dart'), test);
|
|
}
|
|
final String? generatedFile = this.generatedFile;
|
|
if (generatedFile != null) {
|
|
writeFile(
|
|
fileSystem.path.join(dir.path, '.dart_tool', 'flutter_gen', 'flutter_gen.dart'),
|
|
generatedFile,
|
|
);
|
|
}
|
|
deferredComponents?.setUpIn(dir);
|
|
|
|
// Setup for different flutter web initializations
|
|
writeFile(fileSystem.path.join(dir.path, 'web', 'index.html'), indexHtml);
|
|
writeFile(fileSystem.path.join(dir.path, 'web', 'flutter.js'), '');
|
|
writeFile(fileSystem.path.join(dir.path, 'web', 'flutter_service_worker.js'), '');
|
|
writePackageConfig(dir.path);
|
|
await getPackages(dir.path);
|
|
}
|
|
|
|
int lineContaining(String contents, String search) {
|
|
final int index = contents.split('\n').indexWhere((String l) => l.contains(search));
|
|
if (index == -1) {
|
|
throw Exception("Did not find '$search' inside the file");
|
|
}
|
|
return index + 1; // first line is line 1, not line 0
|
|
}
|
|
}
|