123 lines
4.2 KiB
Dart
123 lines
4.2 KiB
Dart
import 'package:flutter/foundation.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:flutter_redux/flutter_redux.dart';
|
|
import 'package:invoiceninja_flutter/data/models/models.dart';
|
|
import 'package:invoiceninja_flutter/data/models/project_model.dart';
|
|
import 'package:invoiceninja_flutter/redux/app/app_actions.dart';
|
|
import 'package:invoiceninja_flutter/redux/app/app_state.dart';
|
|
import 'package:invoiceninja_flutter/redux/project/project_actions.dart';
|
|
import 'package:invoiceninja_flutter/ui/app/entities/entity_actions_dialog.dart';
|
|
import 'package:invoiceninja_flutter/ui/project/view/project_view.dart';
|
|
import 'package:invoiceninja_flutter/utils/completers.dart';
|
|
import 'package:invoiceninja_flutter/utils/localization.dart';
|
|
import 'package:redux/redux.dart';
|
|
|
|
class ProjectViewScreen extends StatelessWidget {
|
|
const ProjectViewScreen({Key key}) : super(key: key);
|
|
static const String route = '/project/view';
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return StoreConnector<AppState, ProjectViewVM>(
|
|
converter: (Store<AppState> store) {
|
|
return ProjectViewVM.fromStore(store);
|
|
},
|
|
builder: (context, vm) {
|
|
return ProjectView(
|
|
viewModel: vm,
|
|
);
|
|
},
|
|
);
|
|
}
|
|
}
|
|
|
|
class ProjectViewVM {
|
|
ProjectViewVM({
|
|
@required this.state,
|
|
@required this.project,
|
|
@required this.client,
|
|
@required this.company,
|
|
@required this.onEntityAction,
|
|
@required this.onTasksPressed,
|
|
@required this.onAddTaskPressed,
|
|
@required this.onClientPressed,
|
|
@required this.onRefreshed,
|
|
@required this.isSaving,
|
|
@required this.isLoading,
|
|
@required this.isDirty,
|
|
});
|
|
|
|
factory ProjectViewVM.fromStore(Store<AppState> store) {
|
|
final state = store.state;
|
|
final project = state.projectState.map[state.projectUIState.selectedId] ??
|
|
ProjectEntity(id: state.projectUIState.selectedId);
|
|
final client = state.clientState.map[project.clientId] ??
|
|
ClientEntity(id: project.clientId);
|
|
|
|
Future<Null> _handleRefresh(BuildContext context) {
|
|
final completer = snackBarCompleter<Null>(
|
|
context, AppLocalization.of(context).refreshComplete);
|
|
store.dispatch(LoadProject(completer: completer, projectId: project.id));
|
|
return completer.future;
|
|
}
|
|
|
|
return ProjectViewVM(
|
|
state: state,
|
|
company: state.company,
|
|
isSaving: state.isSaving,
|
|
isLoading: state.isLoading,
|
|
isDirty: project.isNew,
|
|
project: project,
|
|
client: client,
|
|
onRefreshed: (context) => _handleRefresh(context),
|
|
onClientPressed: (BuildContext context, [bool longPress = false]) {
|
|
if (longPress) {
|
|
showEntityActionsDialog(
|
|
context: context,
|
|
entities: [client],
|
|
);
|
|
} else {
|
|
viewEntity(context: context, entity: client);
|
|
}
|
|
},
|
|
onTasksPressed: (BuildContext context, {bool longPress = false}) {
|
|
if (longPress && project.isActive && client.isActive) {
|
|
createEntity(
|
|
context: context,
|
|
entity: TaskEntity(state: state).rebuild((b) => b
|
|
..projectId = project.id
|
|
..clientId = project.clientId));
|
|
} else {
|
|
viewEntitiesByType(
|
|
context: context,
|
|
entityType: EntityType.task,
|
|
filterEntity: project);
|
|
}
|
|
},
|
|
onAddTaskPressed: (context) {
|
|
createEntity(
|
|
context: context,
|
|
entity: TaskEntity(state: state).rebuild((b) => b
|
|
..projectId = project.id
|
|
..clientId = project.clientId),
|
|
force: true);
|
|
},
|
|
onEntityAction: (BuildContext context, EntityAction action) =>
|
|
handleProjectAction(context, [project], action),
|
|
);
|
|
}
|
|
|
|
final AppState state;
|
|
final ProjectEntity project;
|
|
final ClientEntity client;
|
|
final CompanyEntity company;
|
|
final Function(BuildContext, EntityAction) onEntityAction;
|
|
final Function(BuildContext, [bool]) onClientPressed;
|
|
final Function(BuildContext) onAddTaskPressed;
|
|
final Function(BuildContext, {bool longPress}) onTasksPressed;
|
|
final Function(BuildContext) onRefreshed;
|
|
final bool isSaving;
|
|
final bool isLoading;
|
|
final bool isDirty;
|
|
}
|