logs
This commit is contained in:
parent
e0b3f92b65
commit
ee6b34ad21
9 changed files with 9 additions and 9 deletions
|
@ -169,7 +169,7 @@ class EntrySetActionDelegate with FeedbackMixin, PermissionAwareMixin, SizeAware
|
|||
}
|
||||
|
||||
void onActionSelected(BuildContext context, EntrySetAction action) {
|
||||
reportService.log('$action');
|
||||
reportService.log('$runtimeType handles $action');
|
||||
switch (action) {
|
||||
// general
|
||||
case EntrySetAction.configureView:
|
||||
|
|
|
@ -49,7 +49,7 @@ class ExplorerActionDelegate with FeedbackMixin {
|
|||
}
|
||||
|
||||
void onActionSelected(BuildContext context, ExplorerAction action) {
|
||||
reportService.log('$action');
|
||||
reportService.log('$runtimeType handles $action');
|
||||
switch (action) {
|
||||
case ExplorerAction.addShortcut:
|
||||
_addShortcut(context);
|
||||
|
|
|
@ -139,7 +139,7 @@ class AlbumChipSetActionDelegate extends ChipSetActionDelegate<AlbumFilter> with
|
|||
|
||||
@override
|
||||
void onActionSelected(BuildContext context, ChipSetAction action) {
|
||||
reportService.log('$action');
|
||||
reportService.log('$runtimeType handles $action');
|
||||
switch (action) {
|
||||
// general
|
||||
case ChipSetAction.createAlbum:
|
||||
|
|
|
@ -42,7 +42,7 @@ class ChipActionDelegate with FeedbackMixin, VaultAwareMixin {
|
|||
}
|
||||
|
||||
void onActionSelected(BuildContext context, CollectionFilter filter, ChipAction action) {
|
||||
reportService.log('$action');
|
||||
reportService.log('$runtimeType handles $action');
|
||||
switch (action) {
|
||||
case ChipAction.goToAlbumPage:
|
||||
_goTo(context, filter, AlbumListPage.routeName, (context) => const AlbumListPage());
|
||||
|
|
|
@ -164,7 +164,7 @@ abstract class ChipSetActionDelegate<T extends CollectionFilter> with FeedbackMi
|
|||
}
|
||||
|
||||
void onActionSelected(BuildContext context, ChipSetAction action) {
|
||||
reportService.log('$action');
|
||||
reportService.log('$runtimeType handles $action');
|
||||
switch (action) {
|
||||
// general
|
||||
case ChipSetAction.configureView:
|
||||
|
|
|
@ -80,7 +80,7 @@ class CountryChipSetActionDelegate extends ChipSetActionDelegate<LocationFilter>
|
|||
|
||||
@override
|
||||
void onActionSelected(BuildContext context, ChipSetAction action) {
|
||||
reportService.log('$action');
|
||||
reportService.log('$runtimeType handles $action');
|
||||
switch (action) {
|
||||
// single/multiple filters
|
||||
case ChipSetAction.showCountryStates:
|
||||
|
|
|
@ -65,7 +65,7 @@ class TagChipSetActionDelegate extends ChipSetActionDelegate<TagFilter> {
|
|||
|
||||
@override
|
||||
void onActionSelected(BuildContext context, ChipSetAction action) {
|
||||
reportService.log('$action');
|
||||
reportService.log('$runtimeType handles $action');
|
||||
switch (action) {
|
||||
// single/multiple filters
|
||||
case ChipSetAction.delete:
|
||||
|
|
|
@ -186,7 +186,7 @@ class EntryActionDelegate with FeedbackMixin, PermissionAwareMixin, SizeAwareMix
|
|||
}
|
||||
|
||||
void onActionSelected(BuildContext context, EntryAction action) {
|
||||
reportService.log('$action');
|
||||
reportService.log('$runtimeType handles $action');
|
||||
final targetEntry = _getTargetEntry(context, action);
|
||||
|
||||
switch (action) {
|
||||
|
|
|
@ -92,7 +92,7 @@ class EntryInfoActionDelegate with FeedbackMixin, PermissionAwareMixin, EntryEdi
|
|||
}
|
||||
|
||||
Future<void> onActionSelected(BuildContext context, AvesEntry targetEntry, CollectionLens? collection, EntryAction action) async {
|
||||
await reportService.log('$action');
|
||||
await reportService.log('$runtimeType handles $action');
|
||||
_eventStreamController.add(ActionStartedEvent(action));
|
||||
switch (action) {
|
||||
// general
|
||||
|
|
Loading…
Reference in a new issue