mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2024-11-22 15:30:59 +00:00
c66381f813
* sync with resources * separated `ExpandableSectionList` as widget * fixed generic type * implemented `FilmsScreen` (wip) * made `SliverScreen` title a widget * [`FilmEditScreen`] wip * [`FilmEditScreen`] added validation * fixed title overflow for `SliverScreen` * [`FilmEditScreen`] separated add and edit blocs * [`FilmEditScreen`] split into separate components * added bottom widget to `SliverScreen` * implemented films list tabs fo `FilmsScreen` * added films screen to navigation * replaced explicit routes names with enum values * implemented CRUD for custom films * added placeholder for empty custom films list * added `FilmsStorageService` * fixed unit tests * fixed integration tests * lint * fixed golden tests * added iap stub methods * added custom films to features list * use 2.0.0 resouces * fixed film picket tests * migrated to iap 1.0.1 * autofocus film name field * wait for the film to edited * migrated to iap 1.1.0 * typo * wait for storage initialization * migrated to iap 1.1.1 * fixed films initialization * added conditions to films model `updateShouldNotifyDependent` * typo * fixed select film discard notify * covered films model `updateShouldNotifyDependent`
118 lines
4.9 KiB
Dart
118 lines
4.9 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:flutter_bloc/flutter_bloc.dart';
|
|
import 'package:lightmeter/generated/l10n.dart';
|
|
import 'package:lightmeter/res/dimens.dart';
|
|
import 'package:lightmeter/screens/film_edit/bloc_film_edit.dart';
|
|
import 'package:lightmeter/screens/film_edit/components/exponential_formula_input/widget_input_exponential_formula_film_edit.dart';
|
|
import 'package:lightmeter/screens/film_edit/components/iso_picker/widget_picker_iso_film_edit.dart';
|
|
import 'package:lightmeter/screens/film_edit/components/name_field/widget_field_name_film_edit.dart';
|
|
import 'package:lightmeter/screens/film_edit/event_film_edit.dart';
|
|
import 'package:lightmeter/screens/film_edit/state_film_edit.dart';
|
|
import 'package:lightmeter/screens/shared/sliver_screen/screen_sliver.dart';
|
|
|
|
class FilmEditScreen extends StatefulWidget {
|
|
final bool isEdit;
|
|
|
|
const FilmEditScreen({
|
|
required this.isEdit,
|
|
super.key,
|
|
});
|
|
|
|
@override
|
|
State<FilmEditScreen> createState() => _FilmEditScreenState();
|
|
}
|
|
|
|
class _FilmEditScreenState extends State<FilmEditScreen> {
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return BlocConsumer<FilmEditBloc, FilmEditState>(
|
|
listenWhen: (previous, current) => previous.isLoading != current.isLoading,
|
|
listener: (context, state) {
|
|
if (state.isLoading) {
|
|
FocusScope.of(context).unfocus();
|
|
} else {
|
|
Navigator.of(context).pop();
|
|
}
|
|
},
|
|
buildWhen: (previous, current) => previous.isLoading != current.isLoading,
|
|
builder: (context, state) => IgnorePointer(
|
|
ignoring: state.isLoading,
|
|
child: SliverScreen(
|
|
title: Text(widget.isEdit ? S.of(context).editFilmTitle : S.of(context).addFilmTitle),
|
|
appBarActions: [
|
|
BlocBuilder<FilmEditBloc, FilmEditState>(
|
|
buildWhen: (previous, current) => previous.canSave != current.canSave,
|
|
builder: (context, state) => IconButton(
|
|
onPressed: state.canSave
|
|
? () {
|
|
context.read<FilmEditBloc>().add(const FilmEditSaveEvent());
|
|
}
|
|
: null,
|
|
icon: const Icon(Icons.save),
|
|
),
|
|
),
|
|
if (widget.isEdit)
|
|
IconButton(
|
|
onPressed: () {
|
|
context.read<FilmEditBloc>().add(const FilmEditDeleteEvent());
|
|
},
|
|
icon: const Icon(Icons.delete),
|
|
),
|
|
],
|
|
slivers: [
|
|
SliverToBoxAdapter(
|
|
child: Padding(
|
|
padding: const EdgeInsets.fromLTRB(
|
|
Dimens.paddingM,
|
|
0,
|
|
Dimens.paddingM,
|
|
Dimens.paddingM,
|
|
),
|
|
child: Card(
|
|
child: Padding(
|
|
padding: const EdgeInsets.symmetric(vertical: Dimens.paddingM),
|
|
child: Opacity(
|
|
opacity: state.isLoading ? Dimens.disabledOpacity : Dimens.enabledOpacity,
|
|
child: Column(
|
|
children: [
|
|
BlocBuilder<FilmEditBloc, FilmEditState>(
|
|
buildWhen: (previous, current) => previous.name != current.name,
|
|
builder: (context, state) => FilmEditNameField(
|
|
name: state.name,
|
|
onChanged: (value) {
|
|
context.read<FilmEditBloc>().add(FilmEditNameChangedEvent(value));
|
|
},
|
|
),
|
|
),
|
|
BlocBuilder<FilmEditBloc, FilmEditState>(
|
|
buildWhen: (previous, current) => previous.isoValue != current.isoValue,
|
|
builder: (context, state) => FilmEditIsoPicker(
|
|
selected: state.isoValue,
|
|
onChanged: (value) {
|
|
context.read<FilmEditBloc>().add(FilmEditIsoChangedEvent(value));
|
|
},
|
|
),
|
|
),
|
|
BlocBuilder<FilmEditBloc, FilmEditState>(
|
|
buildWhen: (previous, current) => previous.exponent != current.exponent,
|
|
builder: (context, state) => FilmEditExponentialFormulaInput(
|
|
value: state.exponent,
|
|
onChanged: (value) {
|
|
context.read<FilmEditBloc>().add(FilmEditExpChangedEvent(value));
|
|
},
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
),
|
|
),
|
|
),
|
|
),
|
|
SliverToBoxAdapter(child: SizedBox(height: MediaQuery.paddingOf(context).bottom)),
|
|
],
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|