106 lines
3.5 KiB
Dart
106 lines
3.5 KiB
Dart
import 'package:flutter_redux/flutter_redux.dart';
|
|
import 'package:invoiceninja_flutter/redux/app/app_state.dart';
|
|
import 'package:invoiceninja_flutter/ui/app/entity_state_label.dart';
|
|
import 'package:invoiceninja_flutter/utils/formatting.dart';
|
|
import 'package:flutter/foundation.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:invoiceninja_flutter/data/models/models.dart';
|
|
import 'package:invoiceninja_flutter/ui/app/dismissible_entity.dart';
|
|
|
|
class ProjectListItem extends StatelessWidget {
|
|
const ProjectListItem({
|
|
@required this.userCompany,
|
|
@required this.onEntityAction,
|
|
@required this.onTap,
|
|
@required this.onLongPress,
|
|
@required this.project,
|
|
@required this.filter,
|
|
@required this.client,
|
|
this.onCheckboxChanged,
|
|
this.isChecked = false,
|
|
});
|
|
|
|
final UserCompanyEntity userCompany;
|
|
final Function(EntityAction) onEntityAction;
|
|
final GestureTapCallback onTap;
|
|
final GestureTapCallback onLongPress;
|
|
final Function(bool) onCheckboxChanged;
|
|
final bool isChecked;
|
|
|
|
final ProjectEntity project;
|
|
final ClientEntity client;
|
|
final String filter;
|
|
|
|
static final projectItemKey = (int id) => Key('__project_item_${id}__');
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
final store = StoreProvider.of<AppState>(context);
|
|
final uiState = store.state.uiState;
|
|
final projectUIState = uiState.projectUIState;
|
|
final listUIState = projectUIState.listUIState;
|
|
final isInMultiselect = listUIState.isInMultiselect();
|
|
final showCheckbox = onCheckboxChanged != null || isInMultiselect;
|
|
|
|
final filterMatch = filter != null && filter.isNotEmpty
|
|
? project.matchesFilterValue(filter)
|
|
: null;
|
|
final subtitle = filterMatch ?? client.displayName;
|
|
|
|
return DismissibleEntity(
|
|
isSelected: project.id ==
|
|
(uiState.isEditing
|
|
? projectUIState.editing.id
|
|
: projectUIState.selectedId),
|
|
userCompany: userCompany,
|
|
entity: project,
|
|
onEntityAction: onEntityAction,
|
|
child: ListTile(
|
|
onTap: isInMultiselect
|
|
? () => onEntityAction(EntityAction.toggleMultiselect)
|
|
: onTap,
|
|
onLongPress: onLongPress,
|
|
leading: showCheckbox
|
|
? IgnorePointer(
|
|
ignoring: listUIState.isInMultiselect(),
|
|
child: Checkbox(
|
|
value: isChecked,
|
|
materialTapTargetSize: MaterialTapTargetSize.shrinkWrap,
|
|
onChanged: (value) => onCheckboxChanged(value),
|
|
activeColor: Theme.of(context).accentColor,
|
|
),
|
|
)
|
|
: null,
|
|
title: Container(
|
|
width: MediaQuery.of(context).size.width,
|
|
child: Row(
|
|
children: <Widget>[
|
|
Expanded(
|
|
child: Text(
|
|
project.name,
|
|
style: Theme.of(context).textTheme.title,
|
|
),
|
|
),
|
|
Text(formatNumber(project.listDisplayAmount, context),
|
|
style: Theme.of(context).textTheme.title),
|
|
],
|
|
),
|
|
),
|
|
subtitle: Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: <Widget>[
|
|
subtitle != null && subtitle.isNotEmpty
|
|
? Text(
|
|
subtitle,
|
|
maxLines: 3,
|
|
overflow: TextOverflow.ellipsis,
|
|
)
|
|
: Container(),
|
|
EntityStateLabel(project),
|
|
],
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|