Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Clean up the Logging V2 metadata and controls display #8406

Merged
merged 8 commits into from
Oct 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ import 'package:flutter/material.dart';
import 'package:intl/intl.dart';

import '../../../shared/globals.dart';
import '../../../shared/ui/icons.dart';
import '../../../shared/ui/utils.dart';
import 'logging_controller_v2.dart';

Expand Down Expand Up @@ -52,6 +53,7 @@ class LoggingTableRow extends StatefulWidget {
// Ignore exception; [elapsedFrameTimeAsString] will be null.
}

final kindIcon = KindMetaDataChip.generateIcon(data.kind);
return [
if (data.timestamp != null)
WhenMetaDataChip(
Expand All @@ -61,6 +63,8 @@ class LoggingTableRow extends StatefulWidget {
KindMetaDataChip(
data: data,
maxWidth: maxWidth,
icon: kindIcon.icon,
iconAsset: kindIcon.iconAsset,
),
if (elapsedFrameTimeAsString != null)
FrameElapsedMetaDataChip(
Expand Down Expand Up @@ -174,30 +178,41 @@ abstract class MetadataChip extends StatelessWidget {
super.key,
required this.data,
required this.maxWidth,
required this.icon,
required this.text,
this.icon,
this.iconAsset,
this.includeLeadingPadding = true,
});

final LogDataV2 data;
final double maxWidth;
final IconData icon;
final IconData? icon;
final String? iconAsset;
final String text;
final bool includeLeadingPadding;

static const padding = defaultSpacing;
static const padding = denseSpacing;
static const iconPadding = densePadding;

/// Estimates the size of this single metadata chip.
///
/// If the [build] method is changed then this may need to be updated
Size estimateSize() {
final maxWidthInsidePadding = maxWidth - padding * 2;
final iconSize = Size.square(tooltipIconSize);
final horizontalPaddingCount = includeLeadingPadding ? 2 : 1;
final maxWidthInsidePadding =
max(0.0, maxWidth - padding * horizontalPaddingCount);
final iconSize = Size.square(defaultIconSize);
final textSize = calculateTextSpanSize(
_buildValueText(),
maxWidth: maxWidthInsidePadding,
);
return Size(
iconSize.width + defaultSpacing + textSize.width + padding * 2,
max(iconSize.height, textSize.height) + padding * 2,
((icon != null || iconAsset != null)
? iconSize.width + iconPadding
: 0.0) +
textSize.width +
padding * horizontalPaddingCount, // Horizontal padding.
max(iconSize.height, textSize.height) + padding * 2, // Vertical padding.
);
}

Expand All @@ -206,15 +221,27 @@ abstract class MetadataChip extends StatelessWidget {
Widget build(BuildContext context) {
return Container(
constraints: BoxConstraints(maxWidth: maxWidth),
padding: const EdgeInsets.all(padding),
padding: EdgeInsets.fromLTRB(
includeLeadingPadding ? padding : 0,
padding,
padding,
padding,
),
child: Row(
mainAxisSize: MainAxisSize.min,
children: [
Icon(
icon,
size: tooltipIconSize,
),
const SizedBox(width: defaultSpacing),
if (icon != null || iconAsset != null) ...[
DevToolsIcon(
icon: icon,
iconAsset: iconAsset,
size: defaultIconSize,
color: Theme.of(context).colorScheme.subtleTextColor,
),
const SizedBox(width: iconPadding),
] else
// Include an empty SizedBox to ensure a consistent height for the
// chips, regardless of whether the chip includes an icon.
SizedBox(height: defaultIconSize),
RichText(
text: _buildValueText(),
),
Expand All @@ -238,11 +265,12 @@ class WhenMetaDataChip extends MetadataChip {
required super.data,
required super.maxWidth,
}) : super(
icon: Icons.punch_clock,
icon: null,
text: data.timestamp == null
? ''
: loggingTableTimeFormat
.format(DateTime.fromMillisecondsSinceEpoch(data.timestamp!)),
includeLeadingPadding: false,
);
}

Expand All @@ -252,7 +280,21 @@ class KindMetaDataChip extends MetadataChip {
super.key,
required super.data,
required super.maxWidth,
}) : super(icon: Icons.type_specimen, text: data.kind);
super.icon,
super.iconAsset,
}) : super(text: data.kind);

static ({IconData? icon, String? iconAsset}) generateIcon(String kind) {
IconData? kindIcon = Icons.list_rounded;
String? kindIconAsset;
if (kind == 'stdout' || kind == 'stderr') {
kindIcon = Icons.terminal_rounded;
} else if (RegExp(r'^flutter\..*$').hasMatch(kind)) {
kindIconAsset = 'icons/flutter.png';
kindIcon = null;
}
return (icon: kindIcon, iconAsset: kindIconAsset);
}
}

@visibleForTesting
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,12 @@ class _LoggingTableV2State extends State<LoggingTableV2>
children: [
Row(
children: [
ClearButton(
onPressed: controller.clear,
gaScreen: gac.logging,
gaSelection: gac.clear,
),
const SizedBox(width: defaultSpacing),
Expanded(
child: DevToolsClearableTextField(
labelText: 'Search', // TODO(danchevalier): use SearchField
Expand Down Expand Up @@ -77,8 +83,11 @@ class _LoggingTableV2State extends State<LoggingTableV2>
),
const SizedBox(height: denseSpacing),
Expanded(
child: _LoggingTableProgress(
model: widget.model,
child: RoundedOutlinedBorder(
clip: true,
child: _LoggingTableProgress(
model: widget.model,
),
),
),
],
Expand Down