blob: 4cb330d602df6ba286276f1b1409aae27b6c53fd [file] [log] [blame]
// Copyright (c) 2019, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
import 'dart:async';
import 'package:analysis_server/src/edit/nnbd_migration/resources/resources.g.dart'
as resources;
import 'package:analysis_server/src/edit/preview/preview_page.dart';
import 'package:analysis_server/src/edit/preview/preview_site.dart';
/// The page that contains the CSS used to style the semantic highlighting
/// within a Dart file.
class HighlightCssPage extends PreviewPage {
/// The decoded content of the page. Use [pageContent] to access this field so
/// that it is initialized on first read.
static String _pageContent;
/// Initialize a newly created CSS page within the given [site].
HighlightCssPage(PreviewSite site)
: super(site, PreviewSite.highlightCssPath.substring(1));
@override
void generateBody(Map<String, String> params) {
throw UnimplementedError();
}
@override
Future<void> generatePage(Map<String, String> params) async {
buf.write(pageContent());
}
/// Return the content of the page.
String pageContent() {
return _pageContent ??= resources.highlight_css;
}
}