| // Copyright 2019 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:flutter/material.dart'; |
| import 'package:flutter_dashboard/model/branch.pb.dart'; |
| import 'package:provider/provider.dart'; |
| import 'package:truncate/truncate.dart'; |
| import 'package:url_launcher/url_launcher.dart'; |
| |
| import 'dashboard_navigation_drawer.dart'; |
| import 'logic/task_grid_filter.dart'; |
| import 'service/cocoon.dart'; |
| import 'state/build.dart'; |
| import 'widgets/app_bar.dart'; |
| import 'widgets/error_brook_watcher.dart'; |
| import 'widgets/filter_property_sheet.dart'; |
| import 'widgets/task_box.dart'; |
| import 'widgets/task_grid.dart'; |
| import 'package:flutter_app_icons/flutter_app_icons.dart'; |
| |
| /// Shows information about the current build status of flutter/flutter. |
| /// |
| /// The tree's current build status is reflected in [AppBar]. |
| /// The results from tasks run on individual commits is shown in [TaskGrid]. |
| class BuildDashboardPage extends StatefulWidget { |
| const BuildDashboardPage({ |
| super.key, |
| this.queryParameters, |
| }); |
| |
| static const String routeName = '/build'; |
| |
| final Map<String, String>? queryParameters; |
| |
| @override |
| State createState() => BuildDashboardPageState(); |
| } |
| |
| class BuildDashboardPageState extends State<BuildDashboardPage> { |
| TaskGridFilter? _filter; |
| TaskGridFilter? _settingsBasis; |
| bool _smallScreen = false; |
| double screenWidthThreshold = 600; |
| final _flutterAppIconsPlugin = FlutterAppIcons(); |
| |
| /// Current Flutter repository to view. |
| String? repo; |
| |
| /// Git branch in [repo] to view. |
| /// |
| /// The frontend will update default branches based on [defaultBranches]. This enables users to easily switch from |
| /// master on one repo, to main for a different repo. |
| String? branch; |
| |
| /// Example branch for [truncate]. |
| /// |
| /// Include the ellipsis to get the correct length that should be truncated at. |
| final String _exampleBranch = 'flutter-3.12-candidate.23...'; |
| |
| @override |
| void initState() { |
| super.initState(); |
| if (widget.queryParameters != null) { |
| repo = widget.queryParameters!['repo'] ?? 'flutter'; |
| branch = widget.queryParameters!['branch'] ?? 'master'; |
| } |
| repo ??= 'flutter'; |
| branch ??= 'master'; |
| if (branch == 'master' || branch == 'main') { |
| branch = defaultBranches[repo!]; |
| } |
| _filter = TaskGridFilter.fromMap(widget.queryParameters); |
| _filter!.addListener(() { |
| setState(() {}); |
| }); |
| } |
| |
| @override |
| void dispose() { |
| _flutterAppIconsPlugin.setIcon(icon: 'favicon.png'); |
| super.dispose(); |
| } |
| |
| /// Convert the fields from this class into a URL. |
| /// |
| /// This enables bookmarking state specific values, like [repo]. |
| void _updateNavigation(BuildContext context, BuildState buildState) { |
| final Map<String, String> queryParameters = <String, String>{}; |
| if (widget.queryParameters != null) { |
| queryParameters.addAll(widget.queryParameters!); |
| } |
| if (_filter != null) { |
| queryParameters.addAll(_filter!.toMap(includeDefaults: true)); |
| } |
| queryParameters['repo'] = repo!; |
| |
| queryParameters['branch'] = branch!; |
| |
| final Uri uri = Uri( |
| path: BuildDashboardPage.routeName, |
| queryParameters: queryParameters, |
| ); |
| Navigator.pushNamed(context, uri.toString()); |
| } |
| |
| void _removeSettingsDialog() { |
| setState(() { |
| _settingsBasis = null; |
| }); |
| } |
| |
| void _showSettingsDialog() { |
| setState(() { |
| _settingsBasis = TaskGridFilter.fromMap(_filter!.toMap(includeDefaults: false)); |
| }); |
| } |
| |
| Widget _settingsDialog(BuildContext context, BuildState buildState) { |
| final ThemeData theme = Theme.of(context); |
| return Center( |
| child: Container( |
| decoration: BoxDecoration( |
| color: theme.dialogBackgroundColor.withAlpha(0xe0), |
| borderRadius: BorderRadius.circular(20.0), |
| ), |
| child: Material( |
| color: Colors.transparent, |
| child: FocusTraversalGroup( |
| child: SizedBox( |
| width: 500, |
| height: 360, |
| child: ListView( |
| children: <Widget>[ |
| if (_smallScreen) ..._buildRepositorySelectionWidgets(context, buildState), |
| TextButton( |
| onPressed: buildState.refreshGitHubCommits, |
| child: const Text('Vacuum GitHub Commits'), |
| ), |
| Row( |
| children: [ |
| Expanded(child: Center(child: FilterPropertySheet(_filter))), |
| ], |
| ), |
| Row( |
| mainAxisSize: MainAxisSize.min, |
| mainAxisAlignment: MainAxisAlignment.center, |
| children: <Widget>[ |
| TextButton( |
| onPressed: _filter!.isDefault ? null : () => _filter!.reset(), |
| child: const Text('Defaults'), |
| ), |
| TextButton( |
| onPressed: _filter == _settingsBasis ? null : () => _updateNavigation(context, buildState), |
| child: const Text('Apply'), |
| ), |
| TextButton( |
| child: const Text('Cancel'), |
| onPressed: () { |
| if (_filter != _settingsBasis) { |
| _filter!.reset(); |
| _filter!.applyMap(_settingsBasis!.toMap(includeDefaults: false)); |
| } |
| _removeSettingsDialog(); |
| }, |
| ), |
| ], |
| ), |
| ], |
| ), |
| ), |
| ), |
| ), |
| ), |
| ); |
| } |
| |
| /// List of widgets for selecting slug and branch for configuring the build view. |
| List<Widget> _buildRepositorySelectionWidgets(BuildContext context, BuildState buildState) { |
| final ThemeData theme = Theme.of(context); |
| return <Widget>[ |
| const Padding( |
| padding: EdgeInsets.only(top: 22, left: 5, right: 5), |
| child: Text( |
| 'repo: ', |
| textAlign: TextAlign.center, |
| ), |
| ), |
| DropdownButton<String>( |
| key: const Key('repo dropdown'), |
| isExpanded: _smallScreen, |
| value: buildState.currentRepo, |
| icon: const Padding( |
| padding: EdgeInsets.only(top: 8), |
| child: Icon( |
| Icons.arrow_downward, |
| ), |
| ), |
| iconSize: 24, |
| elevation: 16, |
| underline: Container( |
| height: 2, |
| ), |
| onChanged: (String? selectedRepo) { |
| repo = selectedRepo; |
| _updateNavigation(context, buildState); |
| }, |
| items: buildState.repos.map<DropdownMenuItem<String>>((String value) { |
| return DropdownMenuItem<String>( |
| value: value, |
| child: Padding( |
| padding: const EdgeInsets.only(top: 11), |
| child: Center( |
| child: Text( |
| value, |
| style: theme.primaryTextTheme.bodyLarge, |
| textAlign: TextAlign.center, |
| ), |
| ), |
| ), |
| ); |
| }).toList(), |
| ), |
| const Padding( |
| padding: EdgeInsets.only(top: 22, left: 5, right: 5), |
| child: Text( |
| 'branch: ', |
| textAlign: TextAlign.center, |
| ), |
| ), |
| DropdownButton<String>( |
| key: const Key('branch dropdown'), |
| isExpanded: _smallScreen, |
| value: buildState.currentBranch, |
| icon: const Padding( |
| padding: EdgeInsets.only(top: 8.0), |
| child: Icon( |
| Icons.arrow_downward, |
| ), |
| ), |
| iconSize: 24, |
| elevation: 16, |
| underline: Container( |
| height: 2, |
| ), |
| onChanged: (String? selectedBranch) { |
| branch = selectedBranch; |
| _updateNavigation(context, buildState); |
| }, |
| items: [ |
| DropdownMenuItem<String>( |
| value: buildState.currentBranch, |
| child: Padding( |
| padding: const EdgeInsets.only(top: 9.0), |
| child: Center( |
| child: Text( |
| truncate(buildState.currentBranch, _exampleBranch.length), |
| style: theme.primaryTextTheme.bodyLarge, |
| ), |
| ), |
| ), |
| ), |
| ...buildState.branches |
| .where((Branch b) => b.repository == buildState.currentRepo && b.branch != buildState.currentBranch) |
| .map<DropdownMenuItem<String>>((Branch b) { |
| return DropdownMenuItem<String>( |
| value: b.branch, |
| child: Padding( |
| padding: const EdgeInsets.only(top: 9.0), |
| child: Center( |
| child: Text( |
| truncate(b.branch, _exampleBranch.length), |
| style: theme.primaryTextTheme.bodyLarge, |
| ), |
| ), |
| ), |
| ); |
| }) |
| ], |
| ), |
| const Padding(padding: EdgeInsets.symmetric(horizontal: 4)), |
| ]; |
| } |
| |
| PopupMenuItem<String> _getTaskKeyEntry({required Widget box, required String description}) { |
| return PopupMenuItem<String>( |
| value: description, |
| child: Wrap( |
| crossAxisAlignment: WrapCrossAlignment.center, |
| children: <Widget>[ |
| const SizedBox(width: 10.0), |
| SizedBox.fromSize(size: const Size.square(TaskBox.cellSize), child: box), |
| const SizedBox(width: 10.0), |
| Text(description), |
| ], |
| ), |
| ); |
| } |
| |
| List<PopupMenuEntry<String>> _getTaskKey(bool isDark) { |
| final List<PopupMenuEntry<String>> key = <PopupMenuEntry<String>>[]; |
| |
| for (final String status in TaskBox.statusColor.keys) { |
| key.add( |
| _getTaskKeyEntry( |
| box: Container(color: TaskBox.statusColor[status]), |
| description: status, |
| ), |
| ); |
| key.add(const PopupMenuDivider()); |
| } |
| |
| key.add( |
| _getTaskKeyEntry( |
| box: Center( |
| child: Container( |
| width: TaskBox.cellSize * 0.8, |
| height: TaskBox.cellSize * 0.8, |
| decoration: BoxDecoration( |
| border: Border.all( |
| width: 2.0, |
| color: isDark ? Colors.white : Colors.black, |
| ), |
| ), |
| ), |
| ), |
| description: 'Flaky', |
| ), |
| ); |
| |
| key.add(const PopupMenuDivider()); |
| |
| key.add( |
| _getTaskKeyEntry( |
| box: const Center( |
| child: Text( |
| '!', |
| style: TextStyle( |
| fontSize: 24.0, |
| fontWeight: FontWeight.bold, |
| ), |
| ), |
| ), |
| description: 'Ran more than once', |
| ), |
| ); |
| |
| key.add(const PopupMenuDivider()); |
| |
| return key; |
| } |
| |
| String _getStatusTitle(BuildState? buildState) { |
| if (buildState == null || buildState.isTreeBuilding == null) { |
| return 'Loading...'; |
| } |
| if (buildState.isTreeBuilding!) { |
| return 'Tree is Open'; |
| } else { |
| if (buildState.failingTasks.isNotEmpty) { |
| return 'Tree is Closed (failing: ${buildState.failingTasks.join(', ')})'; |
| } else { |
| return 'Tree is Closed'; |
| } |
| } |
| } |
| |
| @override |
| Widget build(BuildContext context) { |
| final bool isDark = Theme.of(context).brightness == Brightness.dark; |
| final MediaQueryData queryData = MediaQuery.of(context); |
| final double devicePixelRatio = queryData.devicePixelRatio; |
| _smallScreen = queryData.size.width * devicePixelRatio < screenWidthThreshold; |
| |
| /// Color of [AppBar] based on [buildState.isTreeBuilding]. |
| final Map<bool?, Color?> colorTable = <bool?, Color?>{ |
| null: Colors.grey[850], |
| false: isDark ? Colors.red[800] : Colors.red, |
| true: isDark ? Colors.green[800] : Colors.green, |
| }; |
| |
| final Uri flutterIssueUrl = Uri.parse( |
| 'https://github.com/flutter/flutter/issues/new?assignees=&labels=team%3A+infra&template=6_infrastructure.md', |
| ); |
| final BuildState buildState = Provider.of<BuildState>(context); |
| buildState.updateCurrentRepoBranch(repo!, branch!); |
| return AnimatedBuilder( |
| animation: buildState, |
| builder: (BuildContext context, Widget? child) => Scaffold( |
| appBar: CocoonAppBar( |
| title: Tooltip( |
| message: _getStatusTitle(buildState), |
| child: Text( |
| _getStatusTitle(buildState), |
| ), |
| ), |
| backgroundColor: colorTable[buildState.isTreeBuilding], |
| actions: <Widget>[ |
| if (!_smallScreen) ..._buildRepositorySelectionWidgets(context, buildState), |
| IconButton( |
| tooltip: 'Report Issue', |
| icon: const Icon(Icons.bug_report), |
| onPressed: () async { |
| if (await canLaunchUrl(flutterIssueUrl)) { |
| await launchUrl(flutterIssueUrl); |
| } else { |
| throw 'Could not launch $flutterIssueUrl'; |
| } |
| }, |
| ), |
| PopupMenuButton<String>( |
| tooltip: 'Task Status Key', |
| child: const Icon(Icons.info_outline), |
| itemBuilder: (BuildContext context) => _getTaskKey(isDark), |
| ), |
| IconButton( |
| tooltip: 'Settings', |
| icon: const Icon(Icons.settings), |
| onPressed: _settingsBasis == null ? () => _showSettingsDialog() : null, |
| ), |
| ], |
| ), |
| body: ErrorBrookWatcher( |
| errors: buildState.errors, |
| child: Stack( |
| children: <Widget>[ |
| SizedBox.expand( |
| child: TaskGridContainer( |
| filter: _filter, |
| useAnimatedLoading: true, |
| ), |
| ), |
| if (_settingsBasis != null) _settingsDialog(context, buildState), |
| ], |
| ), |
| ), |
| drawer: const DashboardNavigationDrawer(), |
| ), |
| ); |
| } |
| } |