@open-mercato/core 0.6.8-develop.6983.1.e4f794099e → 0.6.8-develop.6985.1.fb93574faa
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.turbo/turbo-build.log +2 -2
- package/dist/generated/entities/notification/index.js +6 -0
- package/dist/generated/entities/notification/index.js.map +2 -2
- package/dist/generated/entities/notification_preference/index.js +19 -0
- package/dist/generated/entities/notification_preference/index.js.map +7 -0
- package/dist/generated/entities/notification_type/index.js +21 -0
- package/dist/generated/entities/notification_type/index.js.map +7 -0
- package/dist/generated/entities/notification_type_override/index.js +17 -0
- package/dist/generated/entities/notification_type_override/index.js.map +7 -0
- package/dist/generated/entities/push_notification_delivery/index.js +41 -0
- package/dist/generated/entities/push_notification_delivery/index.js.map +7 -0
- package/dist/generated/entities/user_device/index.js +35 -0
- package/dist/generated/entities/user_device/index.js.map +7 -0
- package/dist/generated/entities.ids.generated.js +12 -1
- package/dist/generated/entities.ids.generated.js.map +2 -2
- package/dist/generated/entity-fields-registry.js +72 -0
- package/dist/generated/entity-fields-registry.js.map +2 -2
- package/dist/helpers/integration/api.js +2 -1
- package/dist/helpers/integration/api.js.map +2 -2
- package/dist/helpers/integration/appRoot.js +9 -0
- package/dist/helpers/integration/appRoot.js.map +7 -0
- package/dist/helpers/integration/dbFixtures.js +1 -4
- package/dist/helpers/integration/dbFixtures.js.map +2 -2
- package/dist/helpers/integration/pushFake.js +126 -0
- package/dist/helpers/integration/pushFake.js.map +7 -0
- package/dist/modules/auth/notifications.js +16 -0
- package/dist/modules/auth/notifications.js.map +2 -2
- package/dist/modules/business_rules/notifications.js +2 -0
- package/dist/modules/business_rules/notifications.js.map +2 -2
- package/dist/modules/catalog/notifications.js +2 -0
- package/dist/modules/catalog/notifications.js.map +2 -2
- package/dist/modules/communication_channels/acl.js +9 -0
- package/dist/modules/communication_channels/acl.js.map +2 -2
- package/dist/modules/communication_channels/api/delete/admin/channels/[id]/route.js +133 -0
- package/dist/modules/communication_channels/api/delete/admin/channels/[id]/route.js.map +7 -0
- package/dist/modules/communication_channels/api/get/channels/[id]/health/route.js +6 -2
- package/dist/modules/communication_channels/api/get/channels/[id]/health/route.js.map +2 -2
- package/dist/modules/communication_channels/api/get/channels/[id]/route.js +6 -2
- package/dist/modules/communication_channels/api/get/channels/[id]/route.js.map +2 -2
- package/dist/modules/communication_channels/api/get/channels/route.js +2 -1
- package/dist/modules/communication_channels/api/get/channels/route.js.map +2 -2
- package/dist/modules/communication_channels/api/post/channels/[id]/test-send/route.js +10 -5
- package/dist/modules/communication_channels/api/post/channels/[id]/test-send/route.js.map +2 -2
- package/dist/modules/communication_channels/api/post/channels/connect/credentials/route.js +29 -1
- package/dist/modules/communication_channels/api/post/channels/connect/credentials/route.js.map +2 -2
- package/dist/modules/communication_channels/api/post/channels/connect/tenant-credentials/route.js +157 -0
- package/dist/modules/communication_channels/api/post/channels/connect/tenant-credentials/route.js.map +7 -0
- package/dist/modules/communication_channels/backend/communication_channels/channels/page.js +8 -1
- package/dist/modules/communication_channels/backend/communication_channels/channels/page.js.map +2 -2
- package/dist/modules/communication_channels/commands/admin-delete-channel.js +141 -0
- package/dist/modules/communication_channels/commands/admin-delete-channel.js.map +7 -0
- package/dist/modules/communication_channels/commands/connect-credential-channel.js +25 -8
- package/dist/modules/communication_channels/commands/connect-credential-channel.js.map +2 -2
- package/dist/modules/communication_channels/commands/deliver-outbound-message.js +2 -2
- package/dist/modules/communication_channels/commands/deliver-outbound-message.js.map +2 -2
- package/dist/modules/communication_channels/commands/push-register.js +1 -1
- package/dist/modules/communication_channels/commands/push-register.js.map +2 -2
- package/dist/modules/communication_channels/commands/push-unregister.js +4 -3
- package/dist/modules/communication_channels/commands/push-unregister.js.map +2 -2
- package/dist/modules/communication_channels/data/entities.js +4 -0
- package/dist/modules/communication_channels/data/entities.js.map +2 -2
- package/dist/modules/communication_channels/data/validators.js +2 -1
- package/dist/modules/communication_channels/data/validators.js.map +2 -2
- package/dist/modules/communication_channels/lib/access-control.js +11 -1
- package/dist/modules/communication_channels/lib/access-control.js.map +2 -2
- package/dist/modules/communication_channels/lib/connect-channel.js +20 -12
- package/dist/modules/communication_channels/lib/connect-channel.js.map +2 -2
- package/dist/modules/communication_channels/lib/push-adapter.js +68 -0
- package/dist/modules/communication_channels/lib/push-adapter.js.map +7 -0
- package/dist/modules/communication_channels/lib/push-capabilities.js +31 -0
- package/dist/modules/communication_channels/lib/push-capabilities.js.map +7 -0
- package/dist/modules/communication_channels/lib/push-connect-error.js +20 -0
- package/dist/modules/communication_channels/lib/push-connect-error.js.map +7 -0
- package/dist/modules/communication_channels/lib/push-credential-errors.js +41 -0
- package/dist/modules/communication_channels/lib/push-credential-errors.js.map +7 -0
- package/dist/modules/communication_channels/lib/push-envelope.js +46 -0
- package/dist/modules/communication_channels/lib/push-envelope.js.map +7 -0
- package/dist/modules/communication_channels/lib/refcounted-client-cache.js +64 -0
- package/dist/modules/communication_channels/lib/refcounted-client-cache.js.map +7 -0
- package/dist/modules/communication_channels/migrations/Migration20260703123630_communication_channels.js +13 -0
- package/dist/modules/communication_channels/migrations/Migration20260703123630_communication_channels.js.map +7 -0
- package/dist/modules/communication_channels/notifications.js +4 -0
- package/dist/modules/communication_channels/notifications.js.map +2 -2
- package/dist/modules/communication_channels/setup.js +2 -0
- package/dist/modules/communication_channels/setup.js.map +2 -2
- package/dist/modules/configs/lib/upgrade-actions.js +21 -0
- package/dist/modules/configs/lib/upgrade-actions.js.map +2 -2
- package/dist/modules/customer_accounts/notifications.js +12 -0
- package/dist/modules/customer_accounts/notifications.js.map +2 -2
- package/dist/modules/customers/notifications.js +4 -0
- package/dist/modules/customers/notifications.js.map +2 -2
- package/dist/modules/devices/acl.js +11 -0
- package/dist/modules/devices/acl.js.map +7 -0
- package/dist/modules/devices/api/[id]/route.js +167 -0
- package/dist/modules/devices/api/[id]/route.js.map +7 -0
- package/dist/modules/devices/api/admin/devices/[id]/route.js +219 -0
- package/dist/modules/devices/api/admin/devices/[id]/route.js.map +7 -0
- package/dist/modules/devices/api/admin/devices/route.js +140 -0
- package/dist/modules/devices/api/admin/devices/route.js.map +7 -0
- package/dist/modules/devices/api/auth.js +9 -0
- package/dist/modules/devices/api/auth.js.map +7 -0
- package/dist/modules/devices/api/deviceList.js +53 -0
- package/dist/modules/devices/api/deviceList.js.map +7 -0
- package/dist/modules/devices/api/deviceOps.js +118 -0
- package/dist/modules/devices/api/deviceOps.js.map +7 -0
- package/dist/modules/devices/api/openapi.js +19 -0
- package/dist/modules/devices/api/openapi.js.map +7 -0
- package/dist/modules/devices/api/route.js +143 -0
- package/dist/modules/devices/api/route.js.map +7 -0
- package/dist/modules/devices/backend/devices/[id]/page.js +135 -0
- package/dist/modules/devices/backend/devices/[id]/page.js.map +7 -0
- package/dist/modules/devices/backend/devices/[id]/page.meta.js +16 -0
- package/dist/modules/devices/backend/devices/[id]/page.meta.js.map +7 -0
- package/dist/modules/devices/backend/devices/create/page.js +68 -0
- package/dist/modules/devices/backend/devices/create/page.js.map +7 -0
- package/dist/modules/devices/backend/devices/create/page.meta.js +16 -0
- package/dist/modules/devices/backend/devices/create/page.meta.js.map +7 -0
- package/dist/modules/devices/backend/devices/page.js +235 -0
- package/dist/modules/devices/backend/devices/page.js.map +7 -0
- package/dist/modules/devices/backend/devices/page.meta.js +23 -0
- package/dist/modules/devices/backend/devices/page.meta.js.map +7 -0
- package/dist/modules/devices/commands/deactivate.js +107 -0
- package/dist/modules/devices/commands/deactivate.js.map +7 -0
- package/dist/modules/devices/commands/index.js +4 -0
- package/dist/modules/devices/commands/index.js.map +7 -0
- package/dist/modules/devices/commands/register.js +183 -0
- package/dist/modules/devices/commands/register.js.map +7 -0
- package/dist/modules/devices/commands/shared.js +74 -0
- package/dist/modules/devices/commands/shared.js.map +7 -0
- package/dist/modules/devices/commands/update.js +126 -0
- package/dist/modules/devices/commands/update.js.map +7 -0
- package/dist/modules/devices/data/entities.js +83 -0
- package/dist/modules/devices/data/entities.js.map +7 -0
- package/dist/modules/devices/data/validators.js +49 -0
- package/dist/modules/devices/data/validators.js.map +7 -0
- package/dist/modules/devices/di.js +11 -0
- package/dist/modules/devices/di.js.map +7 -0
- package/dist/modules/devices/encryption.js +12 -0
- package/dist/modules/devices/encryption.js.map +7 -0
- package/dist/modules/devices/events.js +19 -0
- package/dist/modules/devices/events.js.map +7 -0
- package/dist/modules/devices/index.js +17 -0
- package/dist/modules/devices/index.js.map +7 -0
- package/dist/modules/devices/lib/operationMetadata.js +20 -0
- package/dist/modules/devices/lib/operationMetadata.js.map +7 -0
- package/dist/modules/devices/migrations/Migration20260602120000.js +15 -0
- package/dist/modules/devices/migrations/Migration20260602120000.js.map +7 -0
- package/dist/modules/devices/migrations/Migration20260630120000.js +15 -0
- package/dist/modules/devices/migrations/Migration20260630120000.js.map +7 -0
- package/dist/modules/devices/migrations/Migration20260701120000.js +13 -0
- package/dist/modules/devices/migrations/Migration20260701120000.js.map +7 -0
- package/dist/modules/devices/migrations/Migration20260721120000.js +15 -0
- package/dist/modules/devices/migrations/Migration20260721120000.js.map +7 -0
- package/dist/modules/devices/setup.js +13 -0
- package/dist/modules/devices/setup.js.map +7 -0
- package/dist/modules/entities/cli.js +8 -3
- package/dist/modules/entities/cli.js.map +2 -2
- package/dist/modules/entities/migrations/Migration20260722120000.js +28 -0
- package/dist/modules/entities/migrations/Migration20260722120000.js.map +7 -0
- package/dist/modules/inbox_ops/notifications.js +2 -0
- package/dist/modules/inbox_ops/notifications.js.map +2 -2
- package/dist/modules/messages/notifications.js +2 -0
- package/dist/modules/messages/notifications.js.map +2 -2
- package/dist/modules/notifications/acl.js +3 -1
- package/dist/modules/notifications/acl.js.map +2 -2
- package/dist/modules/notifications/api/admin/preferences/route.js +167 -0
- package/dist/modules/notifications/api/admin/preferences/route.js.map +7 -0
- package/dist/modules/notifications/api/channels/route.js +54 -0
- package/dist/modules/notifications/api/channels/route.js.map +7 -0
- package/dist/modules/notifications/api/preferences/route.js +126 -0
- package/dist/modules/notifications/api/preferences/route.js.map +7 -0
- package/dist/modules/notifications/api/route.js +8 -1
- package/dist/modules/notifications/api/route.js.map +2 -2
- package/dist/modules/notifications/api/types/[id]/channels/[channel]/route.js +187 -0
- package/dist/modules/notifications/api/types/[id]/channels/[channel]/route.js.map +7 -0
- package/dist/modules/notifications/api/types/route.js +225 -0
- package/dist/modules/notifications/api/types/route.js.map +7 -0
- package/dist/modules/notifications/api/unread-count/route.js +5 -1
- package/dist/modules/notifications/api/unread-count/route.js.map +2 -2
- package/dist/modules/notifications/backend/notifications/user-preferences/page.js +10 -0
- package/dist/modules/notifications/backend/notifications/user-preferences/page.js.map +7 -0
- package/dist/modules/notifications/backend/notifications/user-preferences/page.meta.js +28 -0
- package/dist/modules/notifications/backend/notifications/user-preferences/page.meta.js.map +7 -0
- package/dist/modules/notifications/backend/profile/notification-preferences/page.js +10 -0
- package/dist/modules/notifications/backend/profile/notification-preferences/page.js.map +7 -0
- package/dist/modules/notifications/backend/profile/notification-preferences/page.meta.js +33 -0
- package/dist/modules/notifications/backend/profile/notification-preferences/page.meta.js.map +7 -0
- package/dist/modules/notifications/data/entities.js +128 -1
- package/dist/modules/notifications/data/entities.js.map +2 -2
- package/dist/modules/notifications/data/validators.js +95 -2
- package/dist/modules/notifications/data/validators.js.map +2 -2
- package/dist/modules/notifications/di.js +7 -0
- package/dist/modules/notifications/di.js.map +2 -2
- package/dist/modules/notifications/events.js +17 -0
- package/dist/modules/notifications/events.js.map +2 -2
- package/dist/modules/notifications/frontend/NotificationPreferenceMatrix.js +190 -0
- package/dist/modules/notifications/frontend/NotificationPreferenceMatrix.js.map +7 -0
- package/dist/modules/notifications/frontend/NotificationPreferencesPageClient.js +124 -0
- package/dist/modules/notifications/frontend/NotificationPreferencesPageClient.js.map +7 -0
- package/dist/modules/notifications/frontend/NotificationSettingsPageClient.js +166 -1
- package/dist/modules/notifications/frontend/NotificationSettingsPageClient.js.map +2 -2
- package/dist/modules/notifications/frontend/NotificationUserPreferencesAdminPageClient.js +172 -0
- package/dist/modules/notifications/frontend/NotificationUserPreferencesAdminPageClient.js.map +7 -0
- package/dist/modules/notifications/generators.js +63 -0
- package/dist/modules/notifications/generators.js.map +7 -0
- package/dist/modules/notifications/lib/delivery-strategies-registry.js +19 -0
- package/dist/modules/notifications/lib/delivery-strategies-registry.js.map +7 -0
- package/dist/modules/notifications/lib/deliveryStrategies.js.map +2 -2
- package/dist/modules/notifications/lib/derive-category.js +8 -0
- package/dist/modules/notifications/lib/derive-category.js.map +7 -0
- package/dist/modules/notifications/lib/notification-channel-registry.js +35 -0
- package/dist/modules/notifications/lib/notification-channel-registry.js.map +7 -0
- package/dist/modules/notifications/lib/notification-type-registry.js +87 -0
- package/dist/modules/notifications/lib/notification-type-registry.js.map +7 -0
- package/dist/modules/notifications/lib/notificationCopy.js +14 -0
- package/dist/modules/notifications/lib/notificationCopy.js.map +7 -0
- package/dist/modules/notifications/lib/notificationFactory.js +4 -1
- package/dist/modules/notifications/lib/notificationFactory.js.map +2 -2
- package/dist/modules/notifications/lib/notificationMapper.js +2 -0
- package/dist/modules/notifications/lib/notificationMapper.js.map +2 -2
- package/dist/modules/notifications/lib/notificationPreferenceService.js +83 -0
- package/dist/modules/notifications/lib/notificationPreferenceService.js.map +7 -0
- package/dist/modules/notifications/lib/notificationService.js +83 -28
- package/dist/modules/notifications/lib/notificationService.js.map +2 -2
- package/dist/modules/notifications/lib/notificationVisibility.js +24 -0
- package/dist/modules/notifications/lib/notificationVisibility.js.map +7 -0
- package/dist/modules/notifications/lib/routeHelpers.js +11 -1
- package/dist/modules/notifications/lib/routeHelpers.js.map +2 -2
- package/dist/modules/notifications/lib/shouldDeliver.js +46 -0
- package/dist/modules/notifications/lib/shouldDeliver.js.map +7 -0
- package/dist/modules/notifications/lib/strategies/email-delivery-strategy.js +54 -0
- package/dist/modules/notifications/lib/strategies/email-delivery-strategy.js.map +7 -0
- package/dist/modules/notifications/lib/strategies/in-app-delivery-strategy.js +12 -0
- package/dist/modules/notifications/lib/strategies/in-app-delivery-strategy.js.map +7 -0
- package/dist/modules/notifications/lib/typeCatalogue.js +71 -0
- package/dist/modules/notifications/lib/typeCatalogue.js.map +7 -0
- package/dist/modules/notifications/lib/typeChannelSettings.js +12 -0
- package/dist/modules/notifications/lib/typeChannelSettings.js.map +7 -0
- package/dist/modules/notifications/lib/typeOverrides.js +19 -0
- package/dist/modules/notifications/lib/typeOverrides.js.map +7 -0
- package/dist/modules/notifications/migrations/Migration20260625122947_notifications.js +14 -0
- package/dist/modules/notifications/migrations/Migration20260625122947_notifications.js.map +7 -0
- package/dist/modules/notifications/migrations/Migration20260626120500_notifications_push_payload.js +15 -0
- package/dist/modules/notifications/migrations/Migration20260626120500_notifications_push_payload.js.map +7 -0
- package/dist/modules/notifications/migrations/Migration20260626130000_notifications_non_opt_out.js +13 -0
- package/dist/modules/notifications/migrations/Migration20260626130000_notifications_non_opt_out.js.map +7 -0
- package/dist/modules/notifications/migrations/Migration20260626140000_notifications_type_category_silent.js +15 -0
- package/dist/modules/notifications/migrations/Migration20260626140000_notifications_type_category_silent.js.map +7 -0
- package/dist/modules/notifications/migrations/Migration20260706120000_notifications_channels.js +13 -0
- package/dist/modules/notifications/migrations/Migration20260706120000_notifications_channels.js.map +7 -0
- package/dist/modules/notifications/migrations/Migration20260716123121_notifications.js +14 -0
- package/dist/modules/notifications/migrations/Migration20260716123121_notifications.js.map +7 -0
- package/dist/modules/notifications/notification-channels.js +26 -0
- package/dist/modules/notifications/notification-channels.js.map +7 -0
- package/dist/modules/notifications/notifications.delivery-strategies.js +12 -0
- package/dist/modules/notifications/notifications.delivery-strategies.js.map +7 -0
- package/dist/modules/notifications/setup.js +16 -1
- package/dist/modules/notifications/setup.js.map +2 -2
- package/dist/modules/notifications/subscribers/deliver-notification.js +66 -57
- package/dist/modules/notifications/subscribers/deliver-notification.js.map +2 -2
- package/dist/modules/notifications/subscribers/sync-notification-types.js +16 -0
- package/dist/modules/notifications/subscribers/sync-notification-types.js.map +7 -0
- package/dist/modules/notifications/widgets/injection/profile-preferences-menu/widget.js +23 -0
- package/dist/modules/notifications/widgets/injection/profile-preferences-menu/widget.js.map +7 -0
- package/dist/modules/notifications/widgets/injection-table.js +14 -0
- package/dist/modules/notifications/widgets/injection-table.js.map +7 -0
- package/dist/modules/push_notifications/acl.js +13 -0
- package/dist/modules/push_notifications/acl.js.map +7 -0
- package/dist/modules/push_notifications/api/custom-send/route.js +141 -0
- package/dist/modules/push_notifications/api/custom-send/route.js.map +7 -0
- package/dist/modules/push_notifications/api/deliveries/[id]/route.js +110 -0
- package/dist/modules/push_notifications/api/deliveries/[id]/route.js.map +7 -0
- package/dist/modules/push_notifications/api/deliveries/route.js +56 -0
- package/dist/modules/push_notifications/api/deliveries/route.js.map +7 -0
- package/dist/modules/push_notifications/api/openapi.js +19 -0
- package/dist/modules/push_notifications/api/openapi.js.map +7 -0
- package/dist/modules/push_notifications/backend/push_notifications/[id]/page.js +103 -0
- package/dist/modules/push_notifications/backend/push_notifications/[id]/page.js.map +7 -0
- package/dist/modules/push_notifications/backend/push_notifications/[id]/page.meta.js +13 -0
- package/dist/modules/push_notifications/backend/push_notifications/[id]/page.meta.js.map +7 -0
- package/dist/modules/push_notifications/backend/push_notifications/page.js +213 -0
- package/dist/modules/push_notifications/backend/push_notifications/page.js.map +7 -0
- package/dist/modules/push_notifications/backend/push_notifications/page.meta.js +23 -0
- package/dist/modules/push_notifications/backend/push_notifications/page.meta.js.map +7 -0
- package/dist/modules/push_notifications/backend/push_notifications/send/page.js +245 -0
- package/dist/modules/push_notifications/backend/push_notifications/send/page.js.map +7 -0
- package/dist/modules/push_notifications/backend/push_notifications/send/page.meta.js +26 -0
- package/dist/modules/push_notifications/backend/push_notifications/send/page.meta.js.map +7 -0
- package/dist/modules/push_notifications/data/entities.js +92 -0
- package/dist/modules/push_notifications/data/entities.js.map +7 -0
- package/dist/modules/push_notifications/data/extensions.js +23 -0
- package/dist/modules/push_notifications/data/extensions.js.map +7 -0
- package/dist/modules/push_notifications/data/validators.js +89 -0
- package/dist/modules/push_notifications/data/validators.js.map +7 -0
- package/dist/modules/push_notifications/di.js +17 -0
- package/dist/modules/push_notifications/di.js.map +7 -0
- package/dist/modules/push_notifications/events.js +24 -0
- package/dist/modules/push_notifications/events.js.map +7 -0
- package/dist/modules/push_notifications/index.js +16 -0
- package/dist/modules/push_notifications/index.js.map +7 -0
- package/dist/modules/push_notifications/lib/fake-provider-recorder.js +80 -0
- package/dist/modules/push_notifications/lib/fake-provider-recorder.js.map +7 -0
- package/dist/modules/push_notifications/lib/push-delivery-strategy.js +54 -0
- package/dist/modules/push_notifications/lib/push-delivery-strategy.js.map +7 -0
- package/dist/modules/push_notifications/lib/push-delivery.js +297 -0
- package/dist/modules/push_notifications/lib/push-delivery.js.map +7 -0
- package/dist/modules/push_notifications/lib/push-fanout.js +138 -0
- package/dist/modules/push_notifications/lib/push-fanout.js.map +7 -0
- package/dist/modules/push_notifications/lib/push-health.js +32 -0
- package/dist/modules/push_notifications/lib/push-health.js.map +7 -0
- package/dist/modules/push_notifications/lib/push-reaper.js +87 -0
- package/dist/modules/push_notifications/lib/push-reaper.js.map +7 -0
- package/dist/modules/push_notifications/lib/push-receipt-reaper.js +136 -0
- package/dist/modules/push_notifications/lib/push-receipt-reaper.js.map +7 -0
- package/dist/modules/push_notifications/lib/push-stub-adapter.js +63 -0
- package/dist/modules/push_notifications/lib/push-stub-adapter.js.map +7 -0
- package/dist/modules/push_notifications/lib/queue.js +53 -0
- package/dist/modules/push_notifications/lib/queue.js.map +7 -0
- package/dist/modules/push_notifications/lib/reclaim-window.js +13 -0
- package/dist/modules/push_notifications/lib/reclaim-window.js.map +7 -0
- package/dist/modules/push_notifications/lib/send-custom-push.js +48 -0
- package/dist/modules/push_notifications/lib/send-custom-push.js.map +7 -0
- package/dist/modules/push_notifications/migrations/Migration20260625150049_push_notifications.js +16 -0
- package/dist/modules/push_notifications/migrations/Migration20260625150049_push_notifications.js.map +7 -0
- package/dist/modules/push_notifications/migrations/Migration20260626120000_push_notifications_silent.js +13 -0
- package/dist/modules/push_notifications/migrations/Migration20260626120000_push_notifications_silent.js.map +7 -0
- package/dist/modules/push_notifications/notifications.delivery-strategies.js +8 -0
- package/dist/modules/push_notifications/notifications.delivery-strategies.js.map +7 -0
- package/dist/modules/push_notifications/notifications.js +40 -0
- package/dist/modules/push_notifications/notifications.js.map +7 -0
- package/dist/modules/push_notifications/setup.js +52 -0
- package/dist/modules/push_notifications/setup.js.map +7 -0
- package/dist/modules/push_notifications/workers/reclaim-stuck.worker.js +57 -0
- package/dist/modules/push_notifications/workers/reclaim-stuck.worker.js.map +7 -0
- package/dist/modules/push_notifications/workers/send-push.worker.js +27 -0
- package/dist/modules/push_notifications/workers/send-push.worker.js.map +7 -0
- package/dist/modules/sales/notifications.js +8 -0
- package/dist/modules/sales/notifications.js.map +2 -2
- package/dist/modules/staff/notifications.js +6 -0
- package/dist/modules/staff/notifications.js.map +2 -2
- package/dist/modules/workflows/notifications.js +2 -0
- package/dist/modules/workflows/notifications.js.map +2 -2
- package/generated/entities/notification/index.ts +3 -0
- package/generated/entities/notification_preference/index.ts +8 -0
- package/generated/entities/notification_type/index.ts +9 -0
- package/generated/entities/notification_type_override/index.ts +7 -0
- package/generated/entities/push_notification_delivery/index.ts +19 -0
- package/generated/entities/user_device/index.ts +16 -0
- package/generated/entities.ids.generated.ts +12 -1
- package/generated/entity-fields-registry.ts +72 -0
- package/package.json +7 -7
- package/src/helpers/integration/api.ts +2 -1
- package/src/helpers/integration/appRoot.ts +13 -0
- package/src/helpers/integration/dbFixtures.ts +1 -5
- package/src/helpers/integration/pushFake.ts +219 -0
- package/src/modules/auth/i18n/de.json +1 -0
- package/src/modules/auth/i18n/en.json +1 -0
- package/src/modules/auth/i18n/es.json +1 -0
- package/src/modules/auth/i18n/ko.json +1 -0
- package/src/modules/auth/i18n/pl.json +1 -0
- package/src/modules/auth/notifications.ts +16 -0
- package/src/modules/business_rules/i18n/de.json +2 -1
- package/src/modules/business_rules/i18n/en.json +2 -1
- package/src/modules/business_rules/i18n/es.json +2 -1
- package/src/modules/business_rules/i18n/ko.json +2 -1
- package/src/modules/business_rules/i18n/pl.json +2 -1
- package/src/modules/business_rules/notifications.ts +2 -0
- package/src/modules/catalog/i18n/de.json +2 -1
- package/src/modules/catalog/i18n/en.json +2 -1
- package/src/modules/catalog/i18n/es.json +2 -1
- package/src/modules/catalog/i18n/ko.json +2 -1
- package/src/modules/catalog/i18n/pl.json +2 -1
- package/src/modules/catalog/notifications.ts +2 -0
- package/src/modules/communication_channels/acl.ts +9 -0
- package/src/modules/communication_channels/api/delete/admin/channels/[id]/route.ts +168 -0
- package/src/modules/communication_channels/api/get/channels/[id]/health/route.ts +6 -2
- package/src/modules/communication_channels/api/get/channels/[id]/route.ts +6 -2
- package/src/modules/communication_channels/api/get/channels/route.ts +2 -1
- package/src/modules/communication_channels/api/post/channels/[id]/test-send/route.ts +16 -5
- package/src/modules/communication_channels/api/post/channels/connect/credentials/route.ts +37 -1
- package/src/modules/communication_channels/api/post/channels/connect/tenant-credentials/route.ts +175 -0
- package/src/modules/communication_channels/backend/communication_channels/channels/page.tsx +11 -1
- package/src/modules/communication_channels/commands/admin-delete-channel.ts +203 -0
- package/src/modules/communication_channels/commands/connect-credential-channel.ts +63 -15
- package/src/modules/communication_channels/commands/deliver-outbound-message.ts +10 -2
- package/src/modules/communication_channels/commands/push-register.ts +7 -1
- package/src/modules/communication_channels/commands/push-unregister.ts +14 -3
- package/src/modules/communication_channels/data/entities.ts +10 -0
- package/src/modules/communication_channels/data/validators.ts +1 -0
- package/src/modules/communication_channels/i18n/de.json +35 -1
- package/src/modules/communication_channels/i18n/en.json +35 -1
- package/src/modules/communication_channels/i18n/es.json +35 -1
- package/src/modules/communication_channels/i18n/ko.json +35 -1
- package/src/modules/communication_channels/i18n/pl.json +35 -1
- package/src/modules/communication_channels/lib/access-control.ts +42 -0
- package/src/modules/communication_channels/lib/adapter.ts +25 -0
- package/src/modules/communication_channels/lib/connect-channel.ts +61 -26
- package/src/modules/communication_channels/lib/push-adapter.ts +139 -0
- package/src/modules/communication_channels/lib/push-capabilities.ts +42 -0
- package/src/modules/communication_channels/lib/push-connect-error.ts +52 -0
- package/src/modules/communication_channels/lib/push-credential-errors.ts +58 -0
- package/src/modules/communication_channels/lib/push-envelope.ts +104 -0
- package/src/modules/communication_channels/lib/refcounted-client-cache.ts +123 -0
- package/src/modules/communication_channels/migrations/.snapshot-open-mercato.json +9 -0
- package/src/modules/communication_channels/migrations/Migration20260703123630_communication_channels.ts +20 -0
- package/src/modules/communication_channels/notifications.ts +4 -0
- package/src/modules/communication_channels/setup.ts +2 -0
- package/src/modules/configs/i18n/de.json +5 -1
- package/src/modules/configs/i18n/en.json +5 -1
- package/src/modules/configs/i18n/es.json +5 -1
- package/src/modules/configs/i18n/ko.json +5 -1
- package/src/modules/configs/i18n/pl.json +5 -1
- package/src/modules/configs/lib/upgrade-actions.ts +21 -0
- package/src/modules/customer_accounts/i18n/de.json +2 -1
- package/src/modules/customer_accounts/i18n/en.json +2 -1
- package/src/modules/customer_accounts/i18n/es.json +2 -1
- package/src/modules/customer_accounts/i18n/ko.json +2 -1
- package/src/modules/customer_accounts/i18n/pl.json +2 -1
- package/src/modules/customer_accounts/notifications.ts +12 -0
- package/src/modules/customers/i18n/de.json +2 -1
- package/src/modules/customers/i18n/en.json +2 -1
- package/src/modules/customers/i18n/es.json +2 -1
- package/src/modules/customers/i18n/ko.json +2 -1
- package/src/modules/customers/i18n/pl.json +2 -1
- package/src/modules/customers/notifications.ts +4 -0
- package/src/modules/devices/AGENTS.md +101 -0
- package/src/modules/devices/acl.ts +7 -0
- package/src/modules/devices/api/[id]/route.ts +180 -0
- package/src/modules/devices/api/admin/devices/[id]/route.ts +235 -0
- package/src/modules/devices/api/admin/devices/route.ts +160 -0
- package/src/modules/devices/api/auth.ts +13 -0
- package/src/modules/devices/api/deviceList.ts +54 -0
- package/src/modules/devices/api/deviceOps.ts +186 -0
- package/src/modules/devices/api/openapi.ts +23 -0
- package/src/modules/devices/api/route.ts +165 -0
- package/src/modules/devices/backend/devices/[id]/page.meta.ts +12 -0
- package/src/modules/devices/backend/devices/[id]/page.tsx +164 -0
- package/src/modules/devices/backend/devices/create/page.meta.ts +12 -0
- package/src/modules/devices/backend/devices/create/page.tsx +81 -0
- package/src/modules/devices/backend/devices/page.meta.ts +21 -0
- package/src/modules/devices/backend/devices/page.tsx +259 -0
- package/src/modules/devices/commands/deactivate.ts +126 -0
- package/src/modules/devices/commands/index.ts +3 -0
- package/src/modules/devices/commands/register.ts +199 -0
- package/src/modules/devices/commands/shared.ts +119 -0
- package/src/modules/devices/commands/update.ts +142 -0
- package/src/modules/devices/data/entities.ts +79 -0
- package/src/modules/devices/data/validators.ts +65 -0
- package/src/modules/devices/di.ts +9 -0
- package/src/modules/devices/encryption.ts +15 -0
- package/src/modules/devices/events.ts +16 -0
- package/src/modules/devices/i18n/de.json +45 -0
- package/src/modules/devices/i18n/en.json +45 -0
- package/src/modules/devices/i18n/es.json +45 -0
- package/src/modules/devices/i18n/ko.json +45 -0
- package/src/modules/devices/i18n/pl.json +45 -0
- package/src/modules/devices/index.ts +15 -0
- package/src/modules/devices/lib/operationMetadata.ts +35 -0
- package/src/modules/devices/migrations/.snapshot-open-mercato.json +200 -0
- package/src/modules/devices/migrations/Migration20260602120000.ts +15 -0
- package/src/modules/devices/migrations/Migration20260630120000.ts +20 -0
- package/src/modules/devices/migrations/Migration20260701120000.ts +13 -0
- package/src/modules/devices/migrations/Migration20260721120000.ts +18 -0
- package/src/modules/devices/setup.ts +11 -0
- package/src/modules/entities/cli.ts +16 -2
- package/src/modules/entities/migrations/Migration20260722120000.ts +38 -0
- package/src/modules/inbox_ops/i18n/de.json +2 -1
- package/src/modules/inbox_ops/i18n/en.json +2 -1
- package/src/modules/inbox_ops/i18n/es.json +2 -1
- package/src/modules/inbox_ops/i18n/ko.json +2 -1
- package/src/modules/inbox_ops/i18n/pl.json +2 -1
- package/src/modules/inbox_ops/notifications.ts +2 -0
- package/src/modules/messages/i18n/de.json +2 -1
- package/src/modules/messages/i18n/en.json +2 -1
- package/src/modules/messages/i18n/es.json +2 -1
- package/src/modules/messages/i18n/ko.json +2 -1
- package/src/modules/messages/i18n/pl.json +2 -1
- package/src/modules/messages/notifications.ts +2 -0
- package/src/modules/notifications/AGENTS.md +54 -0
- package/src/modules/notifications/acl.ts +2 -0
- package/src/modules/notifications/api/admin/preferences/route.ts +193 -0
- package/src/modules/notifications/api/channels/route.ts +54 -0
- package/src/modules/notifications/api/preferences/route.ts +131 -0
- package/src/modules/notifications/api/route.ts +8 -1
- package/src/modules/notifications/api/types/[id]/channels/[channel]/route.ts +226 -0
- package/src/modules/notifications/api/types/route.ts +239 -0
- package/src/modules/notifications/api/unread-count/route.ts +5 -1
- package/src/modules/notifications/backend/notifications/user-preferences/page.meta.ts +26 -0
- package/src/modules/notifications/backend/notifications/user-preferences/page.tsx +12 -0
- package/src/modules/notifications/backend/profile/notification-preferences/page.meta.ts +31 -0
- package/src/modules/notifications/backend/profile/notification-preferences/page.tsx +12 -0
- package/src/modules/notifications/data/entities.ts +144 -0
- package/src/modules/notifications/data/validators.ts +116 -0
- package/src/modules/notifications/di.ts +7 -0
- package/src/modules/notifications/events.ts +23 -0
- package/src/modules/notifications/frontend/NotificationPreferenceMatrix.tsx +287 -0
- package/src/modules/notifications/frontend/NotificationPreferencesPageClient.tsx +155 -0
- package/src/modules/notifications/frontend/NotificationSettingsPageClient.tsx +273 -2
- package/src/modules/notifications/frontend/NotificationUserPreferencesAdminPageClient.tsx +214 -0
- package/src/modules/notifications/generators.ts +82 -0
- package/src/modules/notifications/i18n/de.json +43 -0
- package/src/modules/notifications/i18n/en.json +43 -0
- package/src/modules/notifications/i18n/es.json +43 -0
- package/src/modules/notifications/i18n/ko.json +43 -0
- package/src/modules/notifications/i18n/pl.json +44 -1
- package/src/modules/notifications/lib/delivery-strategies-registry.ts +30 -0
- package/src/modules/notifications/lib/deliveryStrategies.ts +40 -4
- package/src/modules/notifications/lib/derive-category.ts +15 -0
- package/src/modules/notifications/lib/notification-channel-registry.ts +59 -0
- package/src/modules/notifications/lib/notification-type-registry.ts +182 -0
- package/src/modules/notifications/lib/notificationCopy.ts +34 -0
- package/src/modules/notifications/lib/notificationFactory.ts +5 -1
- package/src/modules/notifications/lib/notificationMapper.ts +2 -0
- package/src/modules/notifications/lib/notificationPreferenceService.ts +138 -0
- package/src/modules/notifications/lib/notificationService.ts +129 -25
- package/src/modules/notifications/lib/notificationVisibility.ts +48 -0
- package/src/modules/notifications/lib/routeHelpers.ts +14 -1
- package/src/modules/notifications/lib/shouldDeliver.ts +112 -0
- package/src/modules/notifications/lib/strategies/email-delivery-strategy.ts +63 -0
- package/src/modules/notifications/lib/strategies/in-app-delivery-strategy.ts +21 -0
- package/src/modules/notifications/lib/typeCatalogue.ts +141 -0
- package/src/modules/notifications/lib/typeChannelSettings.ts +29 -0
- package/src/modules/notifications/lib/typeOverrides.ts +46 -0
- package/src/modules/notifications/migrations/.snapshot-open-mercato.json +874 -100
- package/src/modules/notifications/migrations/Migration20260625122947_notifications.ts +14 -0
- package/src/modules/notifications/migrations/Migration20260626120500_notifications_push_payload.ts +15 -0
- package/src/modules/notifications/migrations/Migration20260626130000_notifications_non_opt_out.ts +13 -0
- package/src/modules/notifications/migrations/Migration20260626140000_notifications_type_category_silent.ts +15 -0
- package/src/modules/notifications/migrations/Migration20260706120000_notifications_channels.ts +13 -0
- package/src/modules/notifications/migrations/Migration20260716123121_notifications.ts +14 -0
- package/src/modules/notifications/notification-channels.ts +30 -0
- package/src/modules/notifications/notifications.delivery-strategies.ts +15 -0
- package/src/modules/notifications/setup.ts +23 -1
- package/src/modules/notifications/subscribers/deliver-notification.ts +105 -71
- package/src/modules/notifications/subscribers/sync-notification-types.ts +18 -0
- package/src/modules/notifications/widgets/injection/profile-preferences-menu/widget.ts +35 -0
- package/src/modules/notifications/widgets/injection-table.ts +18 -0
- package/src/modules/push_notifications/AGENTS.md +92 -0
- package/src/modules/push_notifications/acl.ts +9 -0
- package/src/modules/push_notifications/api/custom-send/route.ts +175 -0
- package/src/modules/push_notifications/api/deliveries/[id]/route.ts +122 -0
- package/src/modules/push_notifications/api/deliveries/route.ts +58 -0
- package/src/modules/push_notifications/api/openapi.ts +22 -0
- package/src/modules/push_notifications/backend/push_notifications/[id]/page.meta.ts +9 -0
- package/src/modules/push_notifications/backend/push_notifications/[id]/page.tsx +149 -0
- package/src/modules/push_notifications/backend/push_notifications/page.meta.ts +21 -0
- package/src/modules/push_notifications/backend/push_notifications/page.tsx +239 -0
- package/src/modules/push_notifications/backend/push_notifications/send/page.meta.ts +24 -0
- package/src/modules/push_notifications/backend/push_notifications/send/page.tsx +327 -0
- package/src/modules/push_notifications/data/entities.ts +111 -0
- package/src/modules/push_notifications/data/extensions.ts +29 -0
- package/src/modules/push_notifications/data/validators.ts +102 -0
- package/src/modules/push_notifications/di.ts +20 -0
- package/src/modules/push_notifications/events.ts +21 -0
- package/src/modules/push_notifications/i18n/de.json +79 -0
- package/src/modules/push_notifications/i18n/en.json +79 -0
- package/src/modules/push_notifications/i18n/es.json +79 -0
- package/src/modules/push_notifications/i18n/ko.json +79 -0
- package/src/modules/push_notifications/i18n/pl.json +79 -0
- package/src/modules/push_notifications/index.ts +15 -0
- package/src/modules/push_notifications/lib/fake-provider-recorder.ts +154 -0
- package/src/modules/push_notifications/lib/push-delivery-strategy.ts +90 -0
- package/src/modules/push_notifications/lib/push-delivery.ts +455 -0
- package/src/modules/push_notifications/lib/push-fanout.ts +237 -0
- package/src/modules/push_notifications/lib/push-health.ts +47 -0
- package/src/modules/push_notifications/lib/push-reaper.ts +140 -0
- package/src/modules/push_notifications/lib/push-receipt-reaper.ts +210 -0
- package/src/modules/push_notifications/lib/push-stub-adapter.ts +80 -0
- package/src/modules/push_notifications/lib/queue.ts +74 -0
- package/src/modules/push_notifications/lib/reclaim-window.ts +16 -0
- package/src/modules/push_notifications/lib/send-custom-push.ts +100 -0
- package/src/modules/push_notifications/migrations/.snapshot-open-mercato.json +386 -0
- package/src/modules/push_notifications/migrations/Migration20260625150049_push_notifications.ts +16 -0
- package/src/modules/push_notifications/migrations/Migration20260626120000_push_notifications_silent.ts +13 -0
- package/src/modules/push_notifications/notifications.delivery-strategies.ts +8 -0
- package/src/modules/push_notifications/notifications.ts +50 -0
- package/src/modules/push_notifications/setup.ts +92 -0
- package/src/modules/push_notifications/workers/reclaim-stuck.worker.ts +78 -0
- package/src/modules/push_notifications/workers/send-push.worker.ts +34 -0
- package/src/modules/sales/i18n/de.json +1 -0
- package/src/modules/sales/i18n/en.json +1 -0
- package/src/modules/sales/i18n/es.json +1 -0
- package/src/modules/sales/i18n/ko.json +1 -0
- package/src/modules/sales/i18n/pl.json +1 -0
- package/src/modules/sales/notifications.ts +8 -0
- package/src/modules/staff/i18n/de.json +1 -0
- package/src/modules/staff/i18n/en.json +1 -0
- package/src/modules/staff/i18n/es.json +1 -0
- package/src/modules/staff/i18n/ko.json +1 -0
- package/src/modules/staff/i18n/pl.json +1 -0
- package/src/modules/staff/notifications.ts +6 -0
- package/src/modules/workflows/i18n/de.json +1 -0
- package/src/modules/workflows/i18n/en.json +1 -0
- package/src/modules/workflows/i18n/es.json +1 -0
- package/src/modules/workflows/i18n/ko.json +1 -0
- package/src/modules/workflows/i18n/pl.json +1 -0
- package/src/modules/workflows/notifications.ts +2 -0
|
@@ -0,0 +1,239 @@
|
|
|
1
|
+
"use client"
|
|
2
|
+
import * as React from 'react'
|
|
3
|
+
import Link from 'next/link'
|
|
4
|
+
import { Page, PageBody } from '@open-mercato/ui/backend/Page'
|
|
5
|
+
import { DataTable } from '@open-mercato/ui/backend/DataTable'
|
|
6
|
+
import type { LegacyColumnDef as ColumnDef } from '@tanstack/react-table/legacy'
|
|
7
|
+
import { StatusBadge, type StatusMap } from '@open-mercato/ui/primitives/status-badge'
|
|
8
|
+
import { apiCall } from '@open-mercato/ui/backend/utils/apiCall'
|
|
9
|
+
import { flash } from '@open-mercato/ui/backend/FlashMessages'
|
|
10
|
+
import { useOrganizationScopeVersion } from '@open-mercato/shared/lib/frontend/useOrganizationScope'
|
|
11
|
+
import { useT } from '@open-mercato/shared/lib/i18n/context'
|
|
12
|
+
import type { FilterDef, FilterValues } from '@open-mercato/ui/backend/FilterBar'
|
|
13
|
+
|
|
14
|
+
type PushDeliveryStatus = 'pending' | 'sending' | 'sent' | 'failed' | 'skipped' | 'expired'
|
|
15
|
+
|
|
16
|
+
type Row = {
|
|
17
|
+
id: string
|
|
18
|
+
notification_type_id: string
|
|
19
|
+
user_id: string
|
|
20
|
+
provider: string
|
|
21
|
+
token_snapshot: string
|
|
22
|
+
status: PushDeliveryStatus
|
|
23
|
+
attempts: number
|
|
24
|
+
last_error: string | null
|
|
25
|
+
created_at: string | null
|
|
26
|
+
sent_at: string | null
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
type ResponsePayload = {
|
|
30
|
+
items: Row[]
|
|
31
|
+
total: number
|
|
32
|
+
page?: number
|
|
33
|
+
pageSize?: number
|
|
34
|
+
totalPages: number
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
const statusVariant: StatusMap<PushDeliveryStatus> = {
|
|
38
|
+
pending: 'info',
|
|
39
|
+
sending: 'info',
|
|
40
|
+
sent: 'success',
|
|
41
|
+
failed: 'error',
|
|
42
|
+
skipped: 'neutral',
|
|
43
|
+
expired: 'warning',
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
function formatDate(value: string | null, t: (key: string) => string) {
|
|
47
|
+
if (!value) return t('push_notifications.deliveries.noValue')
|
|
48
|
+
try {
|
|
49
|
+
const date = new Date(value)
|
|
50
|
+
if (Number.isNaN(date.getTime())) return t('push_notifications.deliveries.noValue')
|
|
51
|
+
return date.toLocaleString()
|
|
52
|
+
} catch {
|
|
53
|
+
return t('push_notifications.deliveries.noValue')
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
export default function PushDeliveriesListPage() {
|
|
58
|
+
const [rows, setRows] = React.useState<Row[]>([])
|
|
59
|
+
const [page, setPage] = React.useState(1)
|
|
60
|
+
const [total, setTotal] = React.useState(0)
|
|
61
|
+
const [totalPages, setTotalPages] = React.useState(1)
|
|
62
|
+
const [isLoading, setIsLoading] = React.useState(true)
|
|
63
|
+
const scopeVersion = useOrganizationScopeVersion()
|
|
64
|
+
const t = useT()
|
|
65
|
+
const [filterValues, setFilterValues] = React.useState<FilterValues>({})
|
|
66
|
+
const [userOptions, setUserOptions] = React.useState<{ value: string; label: string; description?: string | null }[]>([])
|
|
67
|
+
|
|
68
|
+
// Filter deliveries by recipient picked via name/email search instead of a raw UUID (mirrors the
|
|
69
|
+
// devices list). Admins without auth.users.list degrade gracefully to no options.
|
|
70
|
+
const loadUserOptions = React.useCallback(async (query?: string) => {
|
|
71
|
+
const params = new URLSearchParams()
|
|
72
|
+
params.set('page', '1')
|
|
73
|
+
params.set('pageSize', '20')
|
|
74
|
+
if (query && query.trim().length > 0) params.set('search', query.trim())
|
|
75
|
+
const call = await apiCall<{ items?: { id: string; name?: string | null; email?: string | null }[] }>(
|
|
76
|
+
`/api/auth/users?${params.toString()}`,
|
|
77
|
+
{ headers: { 'x-om-forbidden-redirect': '0' } },
|
|
78
|
+
{ fallback: null },
|
|
79
|
+
).catch(() => null)
|
|
80
|
+
if (!call || !call.ok) return []
|
|
81
|
+
const next = (call.result?.items ?? []).flatMap((item) => {
|
|
82
|
+
if (!item || typeof item.id !== 'string' || !item.id.trim()) return []
|
|
83
|
+
const name = typeof item.name === 'string' && item.name.trim() ? item.name.trim() : null
|
|
84
|
+
const email = typeof item.email === 'string' && item.email.trim() ? item.email.trim() : null
|
|
85
|
+
const label = name ?? email ?? item.id
|
|
86
|
+
return [{ value: item.id, label, description: email && email !== label ? email : null }]
|
|
87
|
+
})
|
|
88
|
+
setUserOptions((prev) => {
|
|
89
|
+
const map = new Map(prev.map((opt) => [opt.value, opt]))
|
|
90
|
+
for (const opt of next) map.set(opt.value, opt)
|
|
91
|
+
return Array.from(map.values())
|
|
92
|
+
})
|
|
93
|
+
return next
|
|
94
|
+
}, [])
|
|
95
|
+
|
|
96
|
+
React.useEffect(() => { void loadUserOptions() }, [loadUserOptions, scopeVersion])
|
|
97
|
+
|
|
98
|
+
// Reuse the picker cache to label the User column; rows whose owner isn't cached still show the id.
|
|
99
|
+
const userLabelById = React.useMemo(
|
|
100
|
+
() => new Map(userOptions.map((opt) => [opt.value, opt.label])),
|
|
101
|
+
[userOptions],
|
|
102
|
+
)
|
|
103
|
+
|
|
104
|
+
const filters = React.useMemo<FilterDef[]>(() => [
|
|
105
|
+
{
|
|
106
|
+
id: 'status',
|
|
107
|
+
label: t('push_notifications.deliveries.columns.status'),
|
|
108
|
+
type: 'select',
|
|
109
|
+
options: [
|
|
110
|
+
{ value: 'pending', label: t('push_notifications.deliveries.status.pending') },
|
|
111
|
+
{ value: 'sending', label: t('push_notifications.deliveries.status.sending') },
|
|
112
|
+
{ value: 'sent', label: t('push_notifications.deliveries.status.sent') },
|
|
113
|
+
{ value: 'failed', label: t('push_notifications.deliveries.status.failed') },
|
|
114
|
+
{ value: 'skipped', label: t('push_notifications.deliveries.status.skipped') },
|
|
115
|
+
{ value: 'expired', label: t('push_notifications.deliveries.status.expired') },
|
|
116
|
+
],
|
|
117
|
+
},
|
|
118
|
+
{
|
|
119
|
+
id: 'userId',
|
|
120
|
+
label: t('push_notifications.deliveries.columns.user'),
|
|
121
|
+
type: 'combobox',
|
|
122
|
+
options: userOptions,
|
|
123
|
+
loadOptions: loadUserOptions,
|
|
124
|
+
},
|
|
125
|
+
// A single created-at range picker (ISO `yyyy-MM-dd`) that maps to the ?from/?to query params.
|
|
126
|
+
{ id: 'createdRange', label: t('push_notifications.deliveries.filters.created'), type: 'dateRange' },
|
|
127
|
+
], [t, userOptions, loadUserOptions])
|
|
128
|
+
|
|
129
|
+
React.useEffect(() => {
|
|
130
|
+
let cancelled = false
|
|
131
|
+
async function load() {
|
|
132
|
+
setIsLoading(true)
|
|
133
|
+
try {
|
|
134
|
+
const params = new URLSearchParams()
|
|
135
|
+
params.set('page', String(page))
|
|
136
|
+
params.set('pageSize', '50')
|
|
137
|
+
const status = typeof filterValues.status === 'string' ? filterValues.status.trim() : ''
|
|
138
|
+
const userId = typeof filterValues.userId === 'string' ? filterValues.userId.trim() : ''
|
|
139
|
+
const createdRange = (filterValues.createdRange ?? {}) as { from?: string; to?: string }
|
|
140
|
+
const from = typeof createdRange.from === 'string' ? createdRange.from.trim() : ''
|
|
141
|
+
const to = typeof createdRange.to === 'string' ? createdRange.to.trim() : ''
|
|
142
|
+
if (status) params.set('status', status)
|
|
143
|
+
if (userId) params.set('userId', userId)
|
|
144
|
+
if (from) params.set('from', from)
|
|
145
|
+
if (to) params.set('to', to)
|
|
146
|
+
const fallback: ResponsePayload = { items: [], total: 0, page, totalPages: 1 }
|
|
147
|
+
const call = await apiCall<ResponsePayload>(`/api/push_notifications/deliveries?${params.toString()}`, undefined, { fallback })
|
|
148
|
+
if (!call.ok) {
|
|
149
|
+
const errorPayload = call.result as { error?: string } | undefined
|
|
150
|
+
const message = typeof errorPayload?.error === 'string' ? errorPayload.error : t('push_notifications.deliveries.error.loadFailed')
|
|
151
|
+
flash(message, 'error')
|
|
152
|
+
return
|
|
153
|
+
}
|
|
154
|
+
const payload = call.result ?? fallback
|
|
155
|
+
if (!cancelled) {
|
|
156
|
+
setRows(Array.isArray(payload.items) ? payload.items : [])
|
|
157
|
+
setTotal(payload.total || 0)
|
|
158
|
+
setTotalPages(payload.totalPages || 1)
|
|
159
|
+
}
|
|
160
|
+
} catch (error) {
|
|
161
|
+
if (!cancelled) {
|
|
162
|
+
const message = error instanceof Error ? error.message : t('push_notifications.deliveries.error.loadFailed')
|
|
163
|
+
flash(message, 'error')
|
|
164
|
+
}
|
|
165
|
+
} finally {
|
|
166
|
+
if (!cancelled) setIsLoading(false)
|
|
167
|
+
}
|
|
168
|
+
}
|
|
169
|
+
load()
|
|
170
|
+
return () => { cancelled = true }
|
|
171
|
+
}, [page, scopeVersion, filterValues, t])
|
|
172
|
+
|
|
173
|
+
const columns = React.useMemo<ColumnDef<Row>[]>(() => [
|
|
174
|
+
{
|
|
175
|
+
accessorKey: 'status',
|
|
176
|
+
header: t('push_notifications.deliveries.columns.status'),
|
|
177
|
+
cell: ({ row }) => (
|
|
178
|
+
<StatusBadge variant={statusVariant[row.original.status] ?? 'neutral'} dot>
|
|
179
|
+
{t(`push_notifications.deliveries.status.${row.original.status}`)}
|
|
180
|
+
</StatusBadge>
|
|
181
|
+
),
|
|
182
|
+
},
|
|
183
|
+
{ accessorKey: 'notification_type_id', header: t('push_notifications.deliveries.columns.type') },
|
|
184
|
+
{
|
|
185
|
+
accessorKey: 'user_id',
|
|
186
|
+
header: t('push_notifications.deliveries.columns.user'),
|
|
187
|
+
cell: ({ row }) => {
|
|
188
|
+
const userId = row.original.user_id
|
|
189
|
+
const label = userLabelById.get(userId)
|
|
190
|
+
return (
|
|
191
|
+
// Stop the click bubbling to the row, whose default action opens the delivery detail.
|
|
192
|
+
<Link
|
|
193
|
+
href={`/backend/users/${encodeURIComponent(userId)}/edit`}
|
|
194
|
+
className="text-primary hover:underline"
|
|
195
|
+
onClick={(e) => e.stopPropagation()}
|
|
196
|
+
>
|
|
197
|
+
{label ?? <code className="text-xs">{userId}</code>}
|
|
198
|
+
</Link>
|
|
199
|
+
)
|
|
200
|
+
},
|
|
201
|
+
},
|
|
202
|
+
{ accessorKey: 'provider', header: t('push_notifications.deliveries.columns.provider') },
|
|
203
|
+
{
|
|
204
|
+
accessorKey: 'attempts',
|
|
205
|
+
header: t('push_notifications.deliveries.columns.attempts'),
|
|
206
|
+
},
|
|
207
|
+
{
|
|
208
|
+
accessorKey: 'created_at',
|
|
209
|
+
header: t('push_notifications.deliveries.columns.created'),
|
|
210
|
+
cell: ({ row }) => formatDate(row.original.created_at, t),
|
|
211
|
+
},
|
|
212
|
+
{
|
|
213
|
+
accessorKey: 'sent_at',
|
|
214
|
+
header: t('push_notifications.deliveries.columns.sent'),
|
|
215
|
+
cell: ({ row }) => formatDate(row.original.sent_at, t),
|
|
216
|
+
},
|
|
217
|
+
], [t, userLabelById])
|
|
218
|
+
|
|
219
|
+
return (
|
|
220
|
+
<Page>
|
|
221
|
+
<PageBody>
|
|
222
|
+
<DataTable
|
|
223
|
+
title={t('push_notifications.deliveries.title')}
|
|
224
|
+
columns={columns}
|
|
225
|
+
data={rows}
|
|
226
|
+
filters={filters}
|
|
227
|
+
filterValues={filterValues}
|
|
228
|
+
onFiltersApply={(values) => { setFilterValues(values); setPage(1) }}
|
|
229
|
+
onFiltersClear={() => { setFilterValues({}); setPage(1) }}
|
|
230
|
+
perspective={{ tableId: 'push_notifications.deliveries' }}
|
|
231
|
+
onRowClick={(row) => { window.location.href = `/backend/push_notifications/${row.id}` }}
|
|
232
|
+
pagination={{ page, pageSize: 50, total, totalPages, onPageChange: setPage }}
|
|
233
|
+
isLoading={isLoading}
|
|
234
|
+
emptyState={t('push_notifications.deliveries.empty')}
|
|
235
|
+
/>
|
|
236
|
+
</PageBody>
|
|
237
|
+
</Page>
|
|
238
|
+
)
|
|
239
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import React from 'react'
|
|
2
|
+
|
|
3
|
+
const megaphoneIcon = React.createElement(
|
|
4
|
+
'svg',
|
|
5
|
+
{ width: 16, height: 16, viewBox: '0 0 24 24', fill: 'none', stroke: 'currentColor', strokeWidth: 2, strokeLinecap: 'round', strokeLinejoin: 'round' },
|
|
6
|
+
React.createElement('path', { d: 'm3 11 18-5v12L3 14v-3z' }),
|
|
7
|
+
React.createElement('path', { d: 'M11.6 16.8a3 3 0 1 1-5.8-1.6' }),
|
|
8
|
+
)
|
|
9
|
+
|
|
10
|
+
export const metadata = {
|
|
11
|
+
requireAuth: true,
|
|
12
|
+
requireFeatures: ['push_notifications.send_custom'],
|
|
13
|
+
pageTitle: 'Send Push',
|
|
14
|
+
pageTitleKey: 'push_notifications.send.pageTitle',
|
|
15
|
+
pageGroup: 'External systems',
|
|
16
|
+
pageGroupKey: 'backend.nav.externalSystems',
|
|
17
|
+
pageOrder: 55,
|
|
18
|
+
icon: megaphoneIcon,
|
|
19
|
+
pageContext: 'settings' as const,
|
|
20
|
+
breadcrumb: [
|
|
21
|
+
{ label: 'Push Deliveries', labelKey: 'push_notifications.deliveries.pageTitle', href: '/backend/push_notifications' },
|
|
22
|
+
{ label: 'Send Push', labelKey: 'push_notifications.send.pageTitle' },
|
|
23
|
+
],
|
|
24
|
+
} as const
|
|
@@ -0,0 +1,327 @@
|
|
|
1
|
+
"use client"
|
|
2
|
+
import * as React from 'react'
|
|
3
|
+
import Link from 'next/link'
|
|
4
|
+
import { useRouter } from 'next/navigation'
|
|
5
|
+
import { Plus, X } from 'lucide-react'
|
|
6
|
+
import { Page, PageBody } from '@open-mercato/ui/backend/Page'
|
|
7
|
+
import { CrudForm, type CrudField, type CrudFieldOption, type CrudCustomFieldRenderProps } from '@open-mercato/ui/backend/CrudForm'
|
|
8
|
+
import { apiCall, apiCallOrThrow } from '@open-mercato/ui/backend/utils/apiCall'
|
|
9
|
+
import { flash } from '@open-mercato/ui/backend/FlashMessages'
|
|
10
|
+
import { Select, SelectTrigger, SelectValue, SelectContent, SelectItem } from '@open-mercato/ui/primitives/select'
|
|
11
|
+
import { Input } from '@open-mercato/ui/primitives/input'
|
|
12
|
+
import { IconButton } from '@open-mercato/ui/primitives/icon-button'
|
|
13
|
+
import { Button } from '@open-mercato/ui/primitives/button'
|
|
14
|
+
import { useT } from '@open-mercato/shared/lib/i18n/context'
|
|
15
|
+
|
|
16
|
+
type KeyValue = { key: string; value: string }
|
|
17
|
+
|
|
18
|
+
type FormValues = {
|
|
19
|
+
userId: string
|
|
20
|
+
deviceId: string
|
|
21
|
+
mode: string
|
|
22
|
+
title: string
|
|
23
|
+
body: string
|
|
24
|
+
data: KeyValue[]
|
|
25
|
+
sound: string
|
|
26
|
+
badge: number | string
|
|
27
|
+
image: string
|
|
28
|
+
priority: string
|
|
29
|
+
channelId: string
|
|
30
|
+
// form-only helper (never sent): drives channelId visibility (hidden in silent / for an iOS target)
|
|
31
|
+
showChannelId: boolean
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
const DELIVERIES_HREF = '/backend/push_notifications'
|
|
35
|
+
const FORM_ID = 'push-custom-send-form'
|
|
36
|
+
// Radix Select forbids an empty-string item value, so "all devices" uses a sentinel that we map
|
|
37
|
+
// back to '' (the form value that means "fan out to every push-capable device").
|
|
38
|
+
const ALL_DEVICES = '__all__'
|
|
39
|
+
|
|
40
|
+
type DeviceOption = { id: string; label: string; platform: string }
|
|
41
|
+
// Reported up to the page so the (custom) submit button can disable when there is nothing to send to.
|
|
42
|
+
type DeviceState = { userId: string; count: number; loading: boolean }
|
|
43
|
+
|
|
44
|
+
// Dependent picker: loads the *selected recipient's* push-capable devices (admin devices API,
|
|
45
|
+
// filtered by userId) so an admin can target one device or all of them. Reads the live form values,
|
|
46
|
+
// so it re-loads whenever the recipient changes and clears a stale selection. It also derives
|
|
47
|
+
// `showChannelId` (Android channel id is Android-only + visible-only) so the channelId field can hide
|
|
48
|
+
// itself for a selected iOS device or in silent mode. Degrades to "All devices" when the admin lacks
|
|
49
|
+
// devices.admin or the recipient has no push-capable device.
|
|
50
|
+
function DeviceField({ value, setValue, setFormValue, values, onState }: CrudCustomFieldRenderProps & { onState?: (s: DeviceState) => void }) {
|
|
51
|
+
const t = useT()
|
|
52
|
+
const userId = typeof values?.userId === 'string' ? values.userId : ''
|
|
53
|
+
const mode = typeof values?.mode === 'string' ? values.mode : 'visible'
|
|
54
|
+
const selected = typeof value === 'string' && value ? value : ''
|
|
55
|
+
const [devices, setDevices] = React.useState<DeviceOption[]>([])
|
|
56
|
+
const [loading, setLoading] = React.useState(false)
|
|
57
|
+
|
|
58
|
+
// Report the recipient + push-capable device count up so the page can disable "Send" when there is
|
|
59
|
+
// nowhere to deliver (no recipient, or the recipient has zero push-capable devices).
|
|
60
|
+
React.useEffect(() => {
|
|
61
|
+
onState?.({ userId, count: devices.length, loading })
|
|
62
|
+
}, [userId, devices.length, loading, onState])
|
|
63
|
+
|
|
64
|
+
React.useEffect(() => {
|
|
65
|
+
if (!userId) {
|
|
66
|
+
setDevices([])
|
|
67
|
+
if (selected) setValue('')
|
|
68
|
+
return
|
|
69
|
+
}
|
|
70
|
+
let cancelled = false
|
|
71
|
+
setLoading(true)
|
|
72
|
+
const params = new URLSearchParams({ userId, pageSize: '50' })
|
|
73
|
+
apiCall<{ items?: Array<{ id: string; device_id: string; platform: string; push_provider?: string | null }> }>(
|
|
74
|
+
`/api/devices/admin/devices?${params.toString()}`,
|
|
75
|
+
{ headers: { 'x-om-forbidden-redirect': '0' } },
|
|
76
|
+
{ fallback: null },
|
|
77
|
+
)
|
|
78
|
+
.catch(() => null)
|
|
79
|
+
.then((call) => {
|
|
80
|
+
if (cancelled) return
|
|
81
|
+
const items = (call && call.ok ? call.result?.items : []) ?? []
|
|
82
|
+
const opts = items
|
|
83
|
+
.filter((d): d is { id: string; device_id: string; platform: string; push_provider?: string | null } =>
|
|
84
|
+
!!d && typeof d.id === 'string' && !!d.push_provider)
|
|
85
|
+
.map((d) => ({ id: d.id, label: `${d.device_id} · ${d.platform}${d.push_provider ? ` · ${d.push_provider}` : ''}`, platform: d.platform }))
|
|
86
|
+
setDevices(opts)
|
|
87
|
+
if (selected && !opts.some((o) => o.id === selected)) setValue('')
|
|
88
|
+
})
|
|
89
|
+
.finally(() => { if (!cancelled) setLoading(false) })
|
|
90
|
+
return () => { cancelled = true }
|
|
91
|
+
// Reload only when the recipient changes; `selected`/`setValue` are handled inside.
|
|
92
|
+
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
93
|
+
}, [userId])
|
|
94
|
+
|
|
95
|
+
// channelId is Android-only and irrelevant to silent pushes → hide it for a selected iOS device or
|
|
96
|
+
// in silent mode. Only write when the derived value actually changes (avoids a render loop).
|
|
97
|
+
const selectedPlatform = React.useMemo(() => devices.find((d) => d.id === selected)?.platform, [devices, selected])
|
|
98
|
+
React.useEffect(() => {
|
|
99
|
+
const show = mode !== 'silent' && selectedPlatform !== 'ios'
|
|
100
|
+
if (values?.showChannelId !== show) setFormValue?.('showChannelId', show)
|
|
101
|
+
}, [mode, selectedPlatform, values?.showChannelId, setFormValue])
|
|
102
|
+
|
|
103
|
+
return (
|
|
104
|
+
<div className="space-y-1">
|
|
105
|
+
<Select value={selected || ALL_DEVICES} onValueChange={(v) => setValue(v === ALL_DEVICES ? '' : v)} disabled={!userId}>
|
|
106
|
+
<SelectTrigger>
|
|
107
|
+
<SelectValue placeholder={`${t('push_notifications.send.deviceAll')} (${devices.length})`} />
|
|
108
|
+
</SelectTrigger>
|
|
109
|
+
<SelectContent>
|
|
110
|
+
<SelectItem value={ALL_DEVICES}>{`${t('push_notifications.send.deviceAll')} (${devices.length})`}</SelectItem>
|
|
111
|
+
{devices.map((d) => (
|
|
112
|
+
<SelectItem key={d.id} value={d.id}>{d.label}</SelectItem>
|
|
113
|
+
))}
|
|
114
|
+
</SelectContent>
|
|
115
|
+
</Select>
|
|
116
|
+
<p className={`text-xs ${userId && !loading && devices.length === 0 ? 'text-status-warning-text' : 'text-muted-foreground'}`}>
|
|
117
|
+
{!userId
|
|
118
|
+
? t('push_notifications.send.deviceSelectUserFirst')
|
|
119
|
+
: loading
|
|
120
|
+
? t('common.loading', 'Loading…')
|
|
121
|
+
: devices.length === 0
|
|
122
|
+
? t('push_notifications.send.deviceNone')
|
|
123
|
+
: t('push_notifications.send.deviceHint')}
|
|
124
|
+
</p>
|
|
125
|
+
</div>
|
|
126
|
+
)
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
// Arbitrary key/value payload delivered inside the push `data` map (the app reads it). Shown for both
|
|
130
|
+
// visible and silent sends — for silent it is the entire payload.
|
|
131
|
+
function DataField({ value, setValue }: CrudCustomFieldRenderProps) {
|
|
132
|
+
const t = useT()
|
|
133
|
+
const pairs: KeyValue[] = Array.isArray(value) ? (value as KeyValue[]) : []
|
|
134
|
+
const update = (next: KeyValue[]) => setValue(next)
|
|
135
|
+
return (
|
|
136
|
+
<div className="space-y-2">
|
|
137
|
+
{pairs.length === 0 ? (
|
|
138
|
+
<p className="text-xs text-muted-foreground">{t('push_notifications.send.dataEmpty')}</p>
|
|
139
|
+
) : null}
|
|
140
|
+
{pairs.map((pair, index) => (
|
|
141
|
+
<div key={index} className="flex items-center gap-2">
|
|
142
|
+
<Input
|
|
143
|
+
placeholder={t('push_notifications.send.dataKey')}
|
|
144
|
+
value={pair.key}
|
|
145
|
+
onChange={(e) => update(pairs.map((p, i) => (i === index ? { ...p, key: e.target.value } : p)))}
|
|
146
|
+
/>
|
|
147
|
+
<Input
|
|
148
|
+
placeholder={t('push_notifications.send.dataValue')}
|
|
149
|
+
value={pair.value}
|
|
150
|
+
onChange={(e) => update(pairs.map((p, i) => (i === index ? { ...p, value: e.target.value } : p)))}
|
|
151
|
+
/>
|
|
152
|
+
<IconButton
|
|
153
|
+
type="button"
|
|
154
|
+
variant="ghost"
|
|
155
|
+
aria-label={t('push_notifications.send.dataRemove')}
|
|
156
|
+
onClick={() => update(pairs.filter((_, i) => i !== index))}
|
|
157
|
+
>
|
|
158
|
+
<X className="h-4 w-4" />
|
|
159
|
+
</IconButton>
|
|
160
|
+
</div>
|
|
161
|
+
))}
|
|
162
|
+
<Button type="button" variant="outline" size="sm" onClick={() => update([...pairs, { key: '', value: '' }])}>
|
|
163
|
+
<Plus className="h-4 w-4 mr-1" />
|
|
164
|
+
{t('push_notifications.send.dataAdd')}
|
|
165
|
+
</Button>
|
|
166
|
+
</div>
|
|
167
|
+
)
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
export default function PushCustomSendPage() {
|
|
171
|
+
const router = useRouter()
|
|
172
|
+
const t = useT()
|
|
173
|
+
const [deviceState, setDeviceState] = React.useState<DeviceState>({ userId: '', count: 0, loading: false })
|
|
174
|
+
const [submitting, setSubmitting] = React.useState(false)
|
|
175
|
+
|
|
176
|
+
// Stable reporter for the device picker → bails when unchanged so it can't loop the render.
|
|
177
|
+
const reportDeviceState = React.useCallback((next: DeviceState) => {
|
|
178
|
+
setDeviceState((prev) =>
|
|
179
|
+
prev.userId === next.userId && prev.count === next.count && prev.loading === next.loading ? prev : next)
|
|
180
|
+
}, [])
|
|
181
|
+
|
|
182
|
+
// Recipient search by name/email via /api/auth/users (mirrors the devices list + admin
|
|
183
|
+
// notification-preferences picker). Return results only — the combobox retains them internally, so
|
|
184
|
+
// pushing them into state that `fields` depends on would re-render the whole form per keystroke.
|
|
185
|
+
const loadUserOptions = React.useCallback(async (query?: string): Promise<CrudFieldOption[]> => {
|
|
186
|
+
const params = new URLSearchParams()
|
|
187
|
+
params.set('page', '1')
|
|
188
|
+
params.set('pageSize', '20')
|
|
189
|
+
if (query && query.trim().length > 0) params.set('search', query.trim())
|
|
190
|
+
const call = await apiCall<{ items?: { id: string; name?: string | null; email?: string | null }[] }>(
|
|
191
|
+
`/api/auth/users?${params.toString()}`,
|
|
192
|
+
{ headers: { 'x-om-forbidden-redirect': '0' } },
|
|
193
|
+
{ fallback: null },
|
|
194
|
+
).catch(() => null)
|
|
195
|
+
if (!call || !call.ok) return []
|
|
196
|
+
return (call.result?.items ?? []).flatMap((item): CrudFieldOption[] => {
|
|
197
|
+
if (!item || typeof item.id !== 'string' || !item.id.trim()) return []
|
|
198
|
+
const name = typeof item.name === 'string' && item.name.trim() ? item.name.trim() : null
|
|
199
|
+
const email = typeof item.email === 'string' && item.email.trim() ? item.email.trim() : null
|
|
200
|
+
const label = name && email ? `${name} — ${email}` : email ?? name ?? item.id
|
|
201
|
+
return [{ value: item.id, label }]
|
|
202
|
+
})
|
|
203
|
+
}, [])
|
|
204
|
+
|
|
205
|
+
const visibleOnly = { field: 'mode', equals: 'visible' } as const
|
|
206
|
+
|
|
207
|
+
const fields = React.useMemo<CrudField[]>(() => [
|
|
208
|
+
{ id: 'userId', label: t('push_notifications.send.userId'), type: 'combobox', required: true, description: t('push_notifications.send.userIdHint'), loadOptions: loadUserOptions },
|
|
209
|
+
{ id: 'deviceId', label: t('push_notifications.send.device'), type: 'custom', component: (props) => <DeviceField {...props} onState={reportDeviceState} /> },
|
|
210
|
+
{
|
|
211
|
+
id: 'mode',
|
|
212
|
+
label: t('push_notifications.send.mode'),
|
|
213
|
+
type: 'select',
|
|
214
|
+
required: true,
|
|
215
|
+
description: t('push_notifications.send.modeHint'),
|
|
216
|
+
options: [
|
|
217
|
+
{ value: 'visible', label: t('push_notifications.send.modeVisible') },
|
|
218
|
+
{ value: 'silent', label: t('push_notifications.send.modeSilent') },
|
|
219
|
+
],
|
|
220
|
+
},
|
|
221
|
+
{ id: 'title', label: t('push_notifications.send.title'), type: 'text', required: true, visibleWhen: visibleOnly },
|
|
222
|
+
{ id: 'body', label: t('push_notifications.send.body'), type: 'textarea', visibleWhen: visibleOnly },
|
|
223
|
+
{ id: 'data', label: t('push_notifications.send.data'), type: 'custom', description: t('push_notifications.send.dataHint'), component: (props) => <DataField {...props} /> },
|
|
224
|
+
{ id: 'sound', label: t('push_notifications.send.sound'), type: 'text', visibleWhen: visibleOnly },
|
|
225
|
+
{ id: 'badge', label: t('push_notifications.send.badge'), type: 'number', visibleWhen: visibleOnly },
|
|
226
|
+
{ id: 'image', label: t('push_notifications.send.image'), type: 'text', visibleWhen: visibleOnly },
|
|
227
|
+
{
|
|
228
|
+
id: 'priority',
|
|
229
|
+
label: t('push_notifications.send.priority'),
|
|
230
|
+
type: 'select',
|
|
231
|
+
options: [
|
|
232
|
+
{ value: '', label: t('push_notifications.send.priorityDefault') },
|
|
233
|
+
{ value: 'high', label: t('push_notifications.send.priorityHigh') },
|
|
234
|
+
{ value: 'normal', label: t('push_notifications.send.priorityNormal') },
|
|
235
|
+
],
|
|
236
|
+
},
|
|
237
|
+
{ id: 'channelId', label: t('push_notifications.send.channelId'), type: 'text', visibleWhen: { field: 'showChannelId', equals: true } },
|
|
238
|
+
], [t, loadUserOptions, reportDeviceState])
|
|
239
|
+
|
|
240
|
+
// NOTE: intentionally a flat field list (no `groups`). CrudForm only applies `visibleWhen` in the
|
|
241
|
+
// ungrouped render path — grouped fields ignore it — and this form relies on mode/platform-driven
|
|
242
|
+
// field visibility (silent hides title/body/options; iOS hides channelId).
|
|
243
|
+
|
|
244
|
+
return (
|
|
245
|
+
<Page>
|
|
246
|
+
<PageBody>
|
|
247
|
+
<CrudForm<FormValues>
|
|
248
|
+
title={t('push_notifications.send.pageTitle')}
|
|
249
|
+
backHref={DELIVERIES_HREF}
|
|
250
|
+
formId={FORM_ID}
|
|
251
|
+
hideFooterActions
|
|
252
|
+
fields={fields}
|
|
253
|
+
initialValues={{ userId: '', deviceId: '', mode: 'visible', title: '', body: '', data: [], sound: '', badge: '', image: '', priority: '', channelId: '', showChannelId: true }}
|
|
254
|
+
submitLabel={t('push_notifications.send.submit')}
|
|
255
|
+
onSubmit={async (values) => {
|
|
256
|
+
setSubmitting(true)
|
|
257
|
+
try {
|
|
258
|
+
const silent = values.mode === 'silent'
|
|
259
|
+
const body = (values.body ?? '').trim()
|
|
260
|
+
|
|
261
|
+
const dataMap: Record<string, string> = {}
|
|
262
|
+
for (const pair of Array.isArray(values.data) ? values.data : []) {
|
|
263
|
+
const key = (pair?.key ?? '').trim()
|
|
264
|
+
if (key) dataMap[key] = `${pair?.value ?? ''}`
|
|
265
|
+
}
|
|
266
|
+
const hasData = Object.keys(dataMap).length > 0
|
|
267
|
+
|
|
268
|
+
// Options that only affect a visible banner are dropped for silent.
|
|
269
|
+
const pushOptions: Record<string, unknown> = {}
|
|
270
|
+
if (!silent) {
|
|
271
|
+
if (typeof values.sound === 'string' && values.sound.trim()) pushOptions.sound = values.sound.trim()
|
|
272
|
+
const badgeNum = typeof values.badge === 'number' ? values.badge : Number.parseInt(String(values.badge ?? ''), 10)
|
|
273
|
+
if (Number.isFinite(badgeNum) && badgeNum >= 0) pushOptions.badge = badgeNum
|
|
274
|
+
if (typeof values.image === 'string' && values.image.trim()) pushOptions.image = values.image.trim()
|
|
275
|
+
if (typeof values.channelId === 'string' && values.channelId.trim()) pushOptions.channelId = values.channelId.trim()
|
|
276
|
+
}
|
|
277
|
+
if (values.priority === 'high' || values.priority === 'normal') pushOptions.priority = values.priority
|
|
278
|
+
const hasOptions = Object.keys(pushOptions).length > 0
|
|
279
|
+
|
|
280
|
+
// Silent hides the title field; the API still needs one, so use a stable label for the log.
|
|
281
|
+
const title = silent ? (values.title ?? '').trim() || 'Silent push' : (values.title ?? '').trim()
|
|
282
|
+
|
|
283
|
+
await apiCallOrThrow('/api/push_notifications/custom-send', {
|
|
284
|
+
method: 'POST',
|
|
285
|
+
headers: { 'content-type': 'application/json' },
|
|
286
|
+
body: JSON.stringify({
|
|
287
|
+
recipientUserId: (values.userId ?? '').trim(),
|
|
288
|
+
deviceId: (values.deviceId ?? '').trim() || undefined,
|
|
289
|
+
title,
|
|
290
|
+
body: !silent && body.length > 0 ? body : undefined,
|
|
291
|
+
silent,
|
|
292
|
+
data: hasData ? dataMap : undefined,
|
|
293
|
+
pushOptions: hasOptions ? pushOptions : undefined,
|
|
294
|
+
}),
|
|
295
|
+
})
|
|
296
|
+
flash(t('push_notifications.send.success'), 'success')
|
|
297
|
+
router.push(DELIVERIES_HREF)
|
|
298
|
+
} finally {
|
|
299
|
+
setSubmitting(false)
|
|
300
|
+
}
|
|
301
|
+
}}
|
|
302
|
+
/>
|
|
303
|
+
<div className="mt-4 flex items-center justify-between gap-3">
|
|
304
|
+
<div className="text-xs">
|
|
305
|
+
{!deviceState.userId ? (
|
|
306
|
+
<span className="text-muted-foreground">{t('push_notifications.send.deviceSelectUserFirst')}</span>
|
|
307
|
+
) : deviceState.count === 0 && !deviceState.loading ? (
|
|
308
|
+
<span className="text-status-warning-text">{t('push_notifications.send.deviceNone')}</span>
|
|
309
|
+
) : null}
|
|
310
|
+
</div>
|
|
311
|
+
<div className="flex gap-2">
|
|
312
|
+
<Button asChild variant="outline">
|
|
313
|
+
<Link href={DELIVERIES_HREF}>{t('common.cancel', 'Cancel')}</Link>
|
|
314
|
+
</Button>
|
|
315
|
+
<Button
|
|
316
|
+
type="submit"
|
|
317
|
+
form={FORM_ID}
|
|
318
|
+
disabled={!deviceState.userId || deviceState.count === 0 || deviceState.loading || submitting}
|
|
319
|
+
>
|
|
320
|
+
{t('push_notifications.send.submit')}
|
|
321
|
+
</Button>
|
|
322
|
+
</div>
|
|
323
|
+
</div>
|
|
324
|
+
</PageBody>
|
|
325
|
+
</Page>
|
|
326
|
+
)
|
|
327
|
+
}
|