123 lines
4.9 KiB
Dart
123 lines
4.9 KiB
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/entities/entity_actions_dialog.dart';
|
|
import 'package:invoiceninja_flutter/ui/app/help_text.dart';
|
|
import 'package:invoiceninja_flutter/ui/app/lists/list_divider.dart';
|
|
import 'package:invoiceninja_flutter/ui/app/loading_indicator.dart';
|
|
import 'package:invoiceninja_flutter/ui/task/task_list_item.dart';
|
|
import 'package:invoiceninja_flutter/ui/task/task_list_vm.dart';
|
|
import 'package:invoiceninja_flutter/utils/localization.dart';
|
|
|
|
class TaskList extends StatelessWidget {
|
|
const TaskList({
|
|
Key key,
|
|
@required this.viewModel,
|
|
}) : super(key: key);
|
|
|
|
final TaskListVM viewModel;
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
final localization = AppLocalization.of(context);
|
|
final listState = viewModel.listState;
|
|
|
|
BaseEntity filteredEntity;
|
|
|
|
if (listState.filterEntityType == EntityType.client) {
|
|
final filteredClientId = listState.filterEntityId;
|
|
filteredEntity = filteredClientId != null
|
|
? viewModel.clientMap[filteredClientId]
|
|
: null;
|
|
} else if (listState.filterEntityType == EntityType.project) {
|
|
final filteredProjectId = listState.filterEntityId;
|
|
filteredEntity = filteredProjectId != null
|
|
? viewModel.state.projectState.map[filteredProjectId]
|
|
: null;
|
|
}
|
|
|
|
return Column(
|
|
children: <Widget>[
|
|
filteredEntity != null
|
|
? Material(
|
|
color: Colors.orangeAccent,
|
|
elevation: 6.0,
|
|
child: InkWell(
|
|
onTap: () => viewModel.onViewEntityFilterPressed(context),
|
|
child: Row(
|
|
children: <Widget>[
|
|
SizedBox(width: 18.0),
|
|
Expanded(
|
|
child: Text(
|
|
'${localization.filteredBy} ${filteredEntity.listDisplayName}',
|
|
style: TextStyle(
|
|
color: Colors.white,
|
|
fontSize: 16.0,
|
|
),
|
|
),
|
|
),
|
|
IconButton(
|
|
icon: Icon(
|
|
Icons.close,
|
|
color: Colors.white,
|
|
),
|
|
onPressed: () => viewModel.onClearEntityFilterPressed(),
|
|
)
|
|
],
|
|
),
|
|
),
|
|
)
|
|
: Container(),
|
|
Expanded(
|
|
child: !viewModel.isLoaded
|
|
? LoadingIndicator()
|
|
: RefreshIndicator(
|
|
onRefresh: () => viewModel.onRefreshed(context),
|
|
child: viewModel.taskList.isEmpty
|
|
? HelpText(AppLocalization.of(context).noRecordsFound)
|
|
: ListView.separated(
|
|
shrinkWrap: true,
|
|
separatorBuilder: (context, index) => ListDivider(),
|
|
itemCount: viewModel.taskList.length,
|
|
itemBuilder: (BuildContext context, index) {
|
|
final user = viewModel.user;
|
|
final taskId = viewModel.taskList[index];
|
|
final task = viewModel.taskMap[taskId];
|
|
final client = viewModel.clientMap[task.clientId] ??
|
|
ClientEntity();
|
|
|
|
void showDialog() => showEntityActionsDialog(
|
|
entity: task,
|
|
context: context,
|
|
user: user,
|
|
client: client,
|
|
onEntityAction: viewModel.onEntityAction);
|
|
|
|
return TaskListItem(
|
|
user: viewModel.user,
|
|
filter: viewModel.filter,
|
|
task: task,
|
|
client: viewModel.clientMap[task.clientId] ??
|
|
ClientEntity(),
|
|
project: viewModel
|
|
.state.projectState.map[task.projectId],
|
|
onTap: () => viewModel.onTaskTap(context, task),
|
|
onEntityAction: (EntityAction action) {
|
|
if (action == EntityAction.more) {
|
|
showDialog();
|
|
} else {
|
|
viewModel.onEntityAction(
|
|
context, task, action);
|
|
}
|
|
},
|
|
onLongPress: () => showDialog(),
|
|
);
|
|
},
|
|
),
|
|
),
|
|
),
|
|
],
|
|
);
|
|
}
|
|
}
|