invoice/lib/ui/document/document_list_item.dart

198 lines
8.1 KiB
Dart

// Flutter imports:
import 'package:flutter/material.dart';
// Package imports:
import 'package:flutter_redux/flutter_redux.dart';
import 'package:invoiceninja_flutter/constants.dart';
// Project imports:
import 'package:invoiceninja_flutter/data/models/models.dart';
import 'package:invoiceninja_flutter/redux/app/app_actions.dart';
import 'package:invoiceninja_flutter/redux/app/app_state.dart';
import 'package:invoiceninja_flutter/ui/app/actions_menu_button.dart';
import 'package:invoiceninja_flutter/ui/app/dismissible_entity.dart';
import 'package:invoiceninja_flutter/ui/app/entity_state_label.dart';
import 'package:invoiceninja_flutter/utils/formatting.dart';
import 'package:invoiceninja_flutter/utils/localization.dart';
import 'package:invoiceninja_flutter/utils/platforms.dart';
class DocumentListItem extends StatelessWidget {
const DocumentListItem({
required this.userCompany,
//@required this.onCheckboxChanged,
required this.document,
required this.filter,
this.onTap,
this.onLongPress,
this.onCheckboxChanged,
this.isChecked = false,
});
final UserCompanyEntity userCompany;
final GestureTapCallback? onTap;
final GestureTapCallback? onLongPress;
final Function(bool?)? onCheckboxChanged;
final bool isChecked;
//final ValueChanged<bool> onCheckboxChanged;
final DocumentEntity document;
final String? filter;
@override
Widget build(BuildContext context) {
final store = StoreProvider.of<AppState>(context);
final state = store.state;
final uiState = state.uiState;
final documentUIState = uiState.documentUIState;
final filterMatch = filter != null && filter!.isNotEmpty
? document.matchesFilterValue(filter)
: null;
final subtitle = filterMatch;
final listUIState = documentUIState.listUIState;
final isInMultiselect = listUIState.isInMultiselect();
final showCheckbox = onCheckboxChanged != null || isInMultiselect;
return DismissibleEntity(
isSelected: isDesktop(context) &&
document.id ==
(uiState.isEditing
? documentUIState.editing!.id
: documentUIState.selectedId),
userCompany: userCompany,
entity: document,
child: LayoutBuilder(builder: (context, constraints) {
return constraints.maxWidth > kTableListWidthCutoff
? InkWell(
onTap: () =>
onTap != null ? onTap!() : selectEntity(entity: document),
onLongPress: () => onLongPress != null
? onLongPress!()
: selectEntity(entity: document, longPress: true),
child: Padding(
padding: const EdgeInsets.only(
left: 10,
right: 28,
top: 4,
bottom: 4,
),
child: Row(
children: [
Padding(
padding: const EdgeInsets.only(right: 16),
child: showCheckbox
? IgnorePointer(
ignoring: listUIState.isInMultiselect(),
child: Checkbox(
value: isChecked,
materialTapTargetSize:
MaterialTapTargetSize.shrinkWrap,
onChanged: (value) =>
onCheckboxChanged!(value),
activeColor:
Theme.of(context).colorScheme.secondary,
),
)
: ActionMenuButton(
entityActions: document.getActions(
userCompany: state.userCompany,
includeEdit: true,
),
isSaving: false,
entity: document,
onSelected: (context, action) =>
handleEntityAction(document, action),
)),
Expanded(
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Text(
document.name,
style: Theme.of(context).textTheme.titleMedium,
),
Text(
formatDate(
convertTimestampToDateString(
document.createdAt),
context) +
(!document.isPublic
? '${AppLocalization.of(context)!.private}'
: ''),
style: Theme.of(context).textTheme.bodySmall,
),
],
),
),
Text(document.prettySize,
style: Theme.of(context).textTheme.titleMedium),
],
),
),
)
: ListTile(
onTap: () =>
onTap != null ? onTap!() : selectEntity(entity: document),
onLongPress: () => onLongPress != null
? onLongPress!()
: selectEntity(entity: document, longPress: true),
leading: showCheckbox
? IgnorePointer(
ignoring: listUIState.isInMultiselect(),
child: Checkbox(
value: isChecked,
materialTapTargetSize:
MaterialTapTargetSize.shrinkWrap,
onChanged: (value) => onCheckboxChanged!(value),
activeColor: Theme.of(context).colorScheme.secondary,
),
)
: null,
title: Container(
width: MediaQuery.of(context).size.width,
child: Row(
children: <Widget>[
Expanded(
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Text(
document.name,
style: Theme.of(context).textTheme.titleMedium,
),
Text(
formatDate(
convertTimestampToDateString(
document.createdAt),
context) +
(!document.isPublic
? '${AppLocalization.of(context)!.private}'
: ''),
style: Theme.of(context).textTheme.bodySmall,
),
],
),
),
Text(document.prettySize,
style: Theme.of(context).textTheme.titleMedium),
],
),
),
subtitle: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: <Widget>[
subtitle != null && subtitle.isNotEmpty
? Text(
subtitle,
maxLines: 3,
overflow: TextOverflow.ellipsis,
)
: Container(),
EntityStateLabel(document),
],
),
);
}),
);
}
}