125 lines
4.0 KiB
Dart
125 lines
4.0 KiB
Dart
import 'package:invoiceninja_flutter/ui/app/entity_state_label.dart';
|
|
import 'package:invoiceninja_flutter/ui/app/live_text.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';
|
|
import 'package:invoiceninja_flutter/utils/localization.dart';
|
|
|
|
class TaskListItem extends StatelessWidget {
|
|
const TaskListItem({
|
|
@required this.user,
|
|
@required this.client,
|
|
@required this.project,
|
|
@required this.onTap,
|
|
@required this.task,
|
|
@required this.filter,
|
|
this.onEntityAction,
|
|
this.onLongPress,
|
|
this.onCheckboxChanged,
|
|
this.isChecked = false,
|
|
});
|
|
|
|
final UserEntity user;
|
|
final ClientEntity client;
|
|
final ProjectEntity project;
|
|
final Function(EntityAction) onEntityAction;
|
|
final GestureTapCallback onTap;
|
|
final GestureTapCallback onLongPress;
|
|
final Function(bool) onCheckboxChanged;
|
|
final bool isChecked;
|
|
final TaskEntity task;
|
|
final String filter;
|
|
|
|
static final taskItemKey = (int id) => Key('__task_item_${id}__');
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
final localization = AppLocalization.of(context);
|
|
final filterMatch = filter != null && filter.isNotEmpty
|
|
? task.matchesFilterValue(filter)
|
|
: null;
|
|
|
|
//final subtitle = filterMatch ?? client?.displayName ?? task.description;
|
|
String subtitle;
|
|
if (filterMatch != null) {
|
|
subtitle = filterMatch;
|
|
} else if (client != null) {
|
|
subtitle = client.displayName;
|
|
if (project != null) {
|
|
subtitle += ' • ' + project.name;
|
|
}
|
|
}
|
|
|
|
return DismissibleEntity(
|
|
user: user,
|
|
entity: task,
|
|
onEntityAction: onEntityAction,
|
|
child: ListTile(
|
|
onTap: onTap,
|
|
onLongPress: onLongPress,
|
|
leading: onCheckboxChanged != null
|
|
? Checkbox(
|
|
//key: NinjaKeys.taskItemCheckbox(task.id),
|
|
value: isChecked,
|
|
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(
|
|
task.description.isNotEmpty
|
|
? task.description
|
|
: formatDate(convertTimestampToDateString(task.updatedAt),
|
|
context),
|
|
overflow: TextOverflow.ellipsis,
|
|
style: Theme.of(context).textTheme.title,
|
|
),
|
|
),
|
|
LiveText(() {
|
|
return formatNumber(task.listDisplayAmount, context,
|
|
formatNumberType: FormatNumberType.duration);
|
|
}, style: Theme.of(context).textTheme.title),
|
|
],
|
|
),
|
|
),
|
|
subtitle: Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: <Widget>[
|
|
Row(
|
|
children: <Widget>[
|
|
Expanded(
|
|
child: subtitle != null && subtitle.isNotEmpty
|
|
? Text(
|
|
subtitle,
|
|
maxLines: 3,
|
|
overflow: TextOverflow.ellipsis,
|
|
)
|
|
: Container(),
|
|
),
|
|
Text(
|
|
task.isInvoiced
|
|
? localization.invoiced
|
|
: task.isRunning
|
|
? localization.running
|
|
: localization.logged,
|
|
style: TextStyle(
|
|
color: task.isInvoiced
|
|
? Colors.green
|
|
: task.isRunning ? Colors.blue : Colors.grey,
|
|
)),
|
|
],
|
|
),
|
|
EntityStateLabel(task),
|
|
],
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|