fix(ajustes): show each settings row's current value
The prototype puts a trailing current-value string on nearly every settings row (t4 lines 512-539, 625 -- "3 guardados", "Alfabetico", "Espanol", "7 . 84 MB"). FilaAjuste only accepted icon/titulo/onTap, so every row was value-blind. Add an optional `valor` slot to FilaAjuste (13px, rgba(242,247,250,.55), rendered before the chevron). Wire 8 of the 12 built rows to state already available at the settings root: equalizer on/off, sleep-timer active, favourite-group count, preferred station name, custom-station count, sort order, recordings count-and-size (FutureBuilder over EstadoGrabacion.listarGrabaciones), and the current language (hoisted pantalla_ajustes_idioma.dart's native-name list to module level so the root can read it without duplicating it). Salida de audio, Musica local, Backup and Info's version are left without a value -- each lacks a low-risk, deterministically-testable data source (see the apply-progress note for the reason per row). Reading EstadoRadio for these values through a root `context.watch` would rebuild the whole settings list -- including the Grabaciones FutureBuilder's disk read -- on every unrelated audio notification; this follows the codebase's existing S4-R5 convention of narrow `context.select` per field instead. Ajustes' own PluriRootHeader/PluriScreenHeader edit (S2 in this same pass) landed in this commit too, since both touched the same header block in pantalla_ajustes.dart at the same time. S8, Tier 1 visual-fidelity pass (audit id 2521).
This commit is contained in:
@@ -1,9 +1,15 @@
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:provider/provider.dart';
|
||||
|
||||
import '../estado/estado_ecualizador.dart';
|
||||
import '../estado/estado_grabacion.dart';
|
||||
import '../estado/estado_idioma.dart';
|
||||
import '../estado/estado_radio.dart';
|
||||
import '../l10n/display_names.dart';
|
||||
import '../l10n/gen/app_localizations.dart';
|
||||
import '../widgets/pluri_icon.dart';
|
||||
import '../modelos/archivo_grabacion.dart';
|
||||
import '../modelos/emisora.dart';
|
||||
import '../widgets/pluri_layout.dart';
|
||||
import '../widgets/pluri_premium_widgets.dart';
|
||||
import '../widgets/pluri_push_scaffold.dart';
|
||||
import '../widgets/pluri_root_header.dart';
|
||||
import '../widgets/pluri_sleep_timer_sheet.dart';
|
||||
@@ -39,15 +45,6 @@ class PantallaAjustes extends StatelessWidget {
|
||||
title: l10n.settingsTitle,
|
||||
onSleepTimer: () => showPluriSleepTimerSheet(context),
|
||||
),
|
||||
PluriScreenHeader(
|
||||
title: l10n.settingsTitle,
|
||||
subtitle: l10n.settingsSubtitle,
|
||||
glyph: PluriIconGlyph.settings,
|
||||
trailing: PluriStatusPill(
|
||||
icon: Icons.security_rounded,
|
||||
label: l10n.settingsSafeStatus,
|
||||
),
|
||||
),
|
||||
const Padding(
|
||||
padding: PluriLayout.pageContentPadding,
|
||||
child: _AjustesContent(),
|
||||
@@ -68,6 +65,39 @@ class _AjustesContent extends StatelessWidget {
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
final l10n = AppLocalizations.of(context);
|
||||
// S8 (Tier 1 visual fidelity): the prototype shows every row's current
|
||||
// value (t4 lines 512-539, 625). 8 of the 12 rows below read it from
|
||||
// state already provided at the app root — no new providers needed.
|
||||
//
|
||||
// S4-R5 convention (see pantalla_inicio.dart, pantalla_buscar.dart):
|
||||
// `context.select` per scalar, NOT a root `context.watch<EstadoRadio>()`
|
||||
// — EstadoRadio also notifies on audio buffer/position events, which
|
||||
// this screen has nothing to do with. A root watch here rebuilds the
|
||||
// WHOLE settings list (including the Grabaciones row's FutureBuilder,
|
||||
// which would re-issue `listarGrabaciones()` on every single one of
|
||||
// those unrelated notifications) far more often than intended.
|
||||
final gruposCount = context.select<EstadoRadio, int>(
|
||||
(e) => e.gruposFavoritos.length,
|
||||
);
|
||||
final emisoraPreferida = context.select<EstadoRadio, Emisora?>(
|
||||
(e) => e.emisoraPreferida,
|
||||
);
|
||||
final emisorasCustomCount = context.select<EstadoRadio, int>(
|
||||
(e) => e.emisorasCustom.length,
|
||||
);
|
||||
final ordenListas = context.select<EstadoRadio, OrdenEmisoras>(
|
||||
(e) => e.ordenListas,
|
||||
);
|
||||
final timerActivo = context.select<EstadoRadio, bool>(
|
||||
(e) => e.timer.activo,
|
||||
);
|
||||
final ecualizadorActivo = context.select<EstadoEcualizador, bool>(
|
||||
(e) => e.activo,
|
||||
);
|
||||
final grabacion = context.watch<EstadoGrabacion>();
|
||||
final idioma = context.select<EstadoIdioma, Locale?>(
|
||||
(e) => e.localeSeleccionado,
|
||||
);
|
||||
|
||||
return Column(
|
||||
children: [
|
||||
@@ -77,12 +107,18 @@ class _AjustesContent extends StatelessWidget {
|
||||
FilaAjuste(
|
||||
icon: Icons.equalizer_rounded,
|
||||
titulo: l10n.equalizerTitle,
|
||||
valor:
|
||||
ecualizadorActivo
|
||||
? l10n.equalizerActive
|
||||
: l10n.equalizerDisabled,
|
||||
onTap:
|
||||
() => PluriPushScaffold.push(
|
||||
context,
|
||||
(_) => const PantallaAjustesEcualizador(),
|
||||
),
|
||||
),
|
||||
// No `valor`: per-device output naming needs a friendly-name
|
||||
// lookup this root doesn't have (only a raw device id).
|
||||
FilaAjuste(
|
||||
icon: Icons.devices_rounded,
|
||||
titulo: l10n.advancedEqSectionTitle,
|
||||
@@ -95,6 +131,10 @@ class _AjustesContent extends StatelessWidget {
|
||||
FilaAjuste(
|
||||
icon: Icons.bedtime_rounded,
|
||||
titulo: l10n.timerSectionTitle,
|
||||
// Reuses the equalizer's own "Active" string (generic enough
|
||||
// in every locale) — shown only while running, matching how
|
||||
// the preferred-station row shows nothing when unset.
|
||||
valor: timerActivo ? l10n.equalizerActive : null,
|
||||
onTap:
|
||||
() => PluriPushScaffold.push(
|
||||
context,
|
||||
@@ -110,6 +150,7 @@ class _AjustesContent extends StatelessWidget {
|
||||
FilaAjuste(
|
||||
icon: Icons.playlist_add_check_circle_rounded,
|
||||
titulo: l10n.favoriteGroupsTitle,
|
||||
valor: '$gruposCount',
|
||||
onTap:
|
||||
() => PluriPushScaffold.push(
|
||||
context,
|
||||
@@ -119,6 +160,10 @@ class _AjustesContent extends StatelessWidget {
|
||||
FilaAjuste(
|
||||
icon: Icons.radio_rounded,
|
||||
titulo: l10n.preferredStationTitle,
|
||||
valor:
|
||||
emisoraPreferida != null
|
||||
? localizedStationName(l10n, emisoraPreferida.nombre)
|
||||
: l10n.dash,
|
||||
onTap:
|
||||
() => PluriPushScaffold.push(
|
||||
context,
|
||||
@@ -128,6 +173,7 @@ class _AjustesContent extends StatelessWidget {
|
||||
FilaAjuste(
|
||||
icon: Icons.add_circle_outline_rounded,
|
||||
titulo: l10n.customStationsTitle,
|
||||
valor: '$emisorasCustomCount',
|
||||
onTap:
|
||||
() => PluriPushScaffold.push(
|
||||
context,
|
||||
@@ -137,6 +183,10 @@ class _AjustesContent extends StatelessWidget {
|
||||
FilaAjuste(
|
||||
icon: Icons.sort_rounded,
|
||||
titulo: l10n.stationOrderTitle,
|
||||
valor:
|
||||
ordenListas == OrdenEmisoras.calidad
|
||||
? l10n.stationOrderByQuality
|
||||
: l10n.stationOrderByName,
|
||||
onTap:
|
||||
() => PluriPushScaffold.push(
|
||||
context,
|
||||
@@ -149,20 +199,39 @@ class _AjustesContent extends StatelessWidget {
|
||||
GrupoAjustes(
|
||||
titulo: l10n.settingsGroupRecordingsTitle,
|
||||
filas: [
|
||||
FilaAjuste(
|
||||
icon: Icons.radio_button_checked_rounded,
|
||||
titulo: l10n.recordingsSectionTitle,
|
||||
// WU15b: this row opens the recordings LIBRARY
|
||||
// (PantallaGrabaciones), matching the approved mockup's
|
||||
// "Ajustes > Grabaciones" screen. The folder/size settings
|
||||
// form (PantallaAjustesGrabaciones) is still reachable, but
|
||||
// now from within the library via its own settings action.
|
||||
onTap:
|
||||
() => PluriPushScaffold.push(
|
||||
context,
|
||||
(_) => const PantallaGrabaciones(),
|
||||
),
|
||||
// FutureBuilder-wrapped (not a plain FilaAjuste): the count ·
|
||||
// size value needs an async disk listing
|
||||
// (EstadoGrabacion.listarGrabaciones), same source
|
||||
// PantallaGrabaciones itself reads.
|
||||
FutureBuilder<List<ArchivoGrabacion>>(
|
||||
future: grabacion.listarGrabaciones(),
|
||||
builder: (context, snapshot) {
|
||||
final archivos = snapshot.data;
|
||||
return FilaAjuste(
|
||||
icon: Icons.radio_button_checked_rounded,
|
||||
titulo: l10n.recordingsSectionTitle,
|
||||
valor:
|
||||
archivos == null
|
||||
? null
|
||||
: '${archivos.length} · ${_totalMb(archivos)} MB',
|
||||
// WU15b: this row opens the recordings LIBRARY
|
||||
// (PantallaGrabaciones), matching the approved mockup's
|
||||
// "Ajustes > Grabaciones" screen. The folder/size
|
||||
// settings form (PantallaAjustesGrabaciones) is still
|
||||
// reachable, but now from within the library via its own
|
||||
// settings action.
|
||||
onTap:
|
||||
() => PluriPushScaffold.push(
|
||||
context,
|
||||
(_) => const PantallaGrabaciones(),
|
||||
),
|
||||
);
|
||||
},
|
||||
),
|
||||
// No `valor`: the configured folder is a SAF tree URI resolved
|
||||
// by an async native channel call
|
||||
// (FuenteMusicaLocalAutoImpl.carpetaActual) this root would
|
||||
// need to invoke itself, unmocked, just to render a value.
|
||||
FilaAjuste(
|
||||
icon: Icons.library_music_outlined,
|
||||
titulo: l10n.localMusicSectionTitle,
|
||||
@@ -181,12 +250,15 @@ class _AjustesContent extends StatelessWidget {
|
||||
FilaAjuste(
|
||||
icon: Icons.language_rounded,
|
||||
titulo: l10n.languageSectionTitle,
|
||||
valor: nombreIdiomaActual(idioma, l10n),
|
||||
onTap:
|
||||
() => PluriPushScaffold.push(
|
||||
context,
|
||||
(_) => const PantallaAjustesIdioma(),
|
||||
),
|
||||
),
|
||||
// No `valor`: there is no persisted "last backup" timestamp to
|
||||
// read — showing one here would mean fabricating it.
|
||||
FilaAjuste(
|
||||
icon: Icons.backup_outlined,
|
||||
titulo: l10n.backupSectionTitle,
|
||||
@@ -196,6 +268,10 @@ class _AjustesContent extends StatelessWidget {
|
||||
(_) => const PantallaAjustesBackup(),
|
||||
),
|
||||
),
|
||||
// No `valor`: PackageInfo.fromPlatform() has no test-environment
|
||||
// fallback anywhere else in this codebase either (see
|
||||
// PantallaAjustesInfo's own FutureBuilder) — wiring it here
|
||||
// would add a value this pass cannot deterministically test.
|
||||
FilaAjuste(
|
||||
icon: Icons.info_outline_rounded,
|
||||
titulo: l10n.infoSectionTitle,
|
||||
@@ -210,4 +286,9 @@ class _AjustesContent extends StatelessWidget {
|
||||
],
|
||||
);
|
||||
}
|
||||
|
||||
static int _totalMb(List<ArchivoGrabacion> archivos) {
|
||||
final totalBytes = archivos.fold<int>(0, (a, b) => a + b.tamanoBytes);
|
||||
return (totalBytes / (1024 * 1024)).round();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user