mirror of
https://github.com/Xevion/paperless-mobile.git
synced 2025-12-06 07:15:43 -06:00
50 lines
1.5 KiB
Dart
50 lines
1.5 KiB
Dart
import 'package:flutter/widgets.dart';
|
|
import 'package:flutter_bloc/flutter_bloc.dart';
|
|
import 'package:paperless_api/paperless_api.dart';
|
|
import 'package:paperless_mobile/core/repository/label_repository.dart';
|
|
import 'package:paperless_mobile/features/document_details/cubit/document_details_cubit.dart';
|
|
import 'package:paperless_mobile/features/document_details/view/pages/document_details_page.dart';
|
|
|
|
class DocumentDetailsRoute extends StatelessWidget {
|
|
static const String routeName = "/documentDetails";
|
|
const DocumentDetailsRoute({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
final args = ModalRoute.of(context)!.settings.arguments
|
|
as DocumentDetailsRouteArguments;
|
|
|
|
return BlocProvider(
|
|
create: (context) => DocumentDetailsCubit(
|
|
context.read(),
|
|
context.read(),
|
|
context.read(),
|
|
context.read(),
|
|
initialDocument: args.document,
|
|
),
|
|
child: RepositoryProvider.value(
|
|
value: context.read<LabelRepository>(),
|
|
child: DocumentDetailsPage(
|
|
allowEdit: args.allowEdit,
|
|
isLabelClickable: args.isLabelClickable,
|
|
titleAndContentQueryString: args.titleAndContentQueryString,
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|
|
|
|
class DocumentDetailsRouteArguments {
|
|
final DocumentModel document;
|
|
final bool isLabelClickable;
|
|
final bool allowEdit;
|
|
final String? titleAndContentQueryString;
|
|
|
|
DocumentDetailsRouteArguments({
|
|
required this.document,
|
|
this.isLabelClickable = true,
|
|
this.allowEdit = true,
|
|
this.titleAndContentQueryString,
|
|
});
|
|
}
|