@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,103 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
3
|
+
import * as React from "react";
|
|
4
|
+
import { Page, PageBody } from "@open-mercato/ui/backend/Page";
|
|
5
|
+
import { LoadingMessage, ErrorMessage, RecordNotFoundState } from "@open-mercato/ui/backend/detail";
|
|
6
|
+
import { FormHeader } from "@open-mercato/ui/backend/forms";
|
|
7
|
+
import { JsonDisplay } from "@open-mercato/ui/backend/JsonDisplay";
|
|
8
|
+
import { StatusBadge } from "@open-mercato/ui/primitives/status-badge";
|
|
9
|
+
import { apiCall } from "@open-mercato/ui/backend/utils/apiCall";
|
|
10
|
+
import { useT } from "@open-mercato/shared/lib/i18n/context";
|
|
11
|
+
const statusVariant = {
|
|
12
|
+
pending: "info",
|
|
13
|
+
sending: "info",
|
|
14
|
+
sent: "success",
|
|
15
|
+
failed: "error",
|
|
16
|
+
skipped: "neutral",
|
|
17
|
+
expired: "warning"
|
|
18
|
+
};
|
|
19
|
+
function DetailRow({ label, children }) {
|
|
20
|
+
return /* @__PURE__ */ jsxs("div", { children: [
|
|
21
|
+
/* @__PURE__ */ jsx("dt", { className: "text-sm font-medium text-muted-foreground", children: label }),
|
|
22
|
+
/* @__PURE__ */ jsx("dd", { className: "mt-1 text-sm text-foreground", children })
|
|
23
|
+
] });
|
|
24
|
+
}
|
|
25
|
+
function PushDeliveryDetailPage({ params }) {
|
|
26
|
+
const id = typeof params?.id === "string" ? params.id : "";
|
|
27
|
+
const t = useT();
|
|
28
|
+
const [item, setItem] = React.useState(null);
|
|
29
|
+
const [isLoading, setIsLoading] = React.useState(true);
|
|
30
|
+
const [error, setError] = React.useState(null);
|
|
31
|
+
const [notFound, setNotFound] = React.useState(false);
|
|
32
|
+
React.useEffect(() => {
|
|
33
|
+
let cancelled = false;
|
|
34
|
+
async function load() {
|
|
35
|
+
setIsLoading(true);
|
|
36
|
+
setError(null);
|
|
37
|
+
setNotFound(false);
|
|
38
|
+
const call = await apiCall(
|
|
39
|
+
`/api/push_notifications/deliveries/${encodeURIComponent(id)}`,
|
|
40
|
+
void 0,
|
|
41
|
+
{ fallback: null }
|
|
42
|
+
).catch(() => null);
|
|
43
|
+
if (cancelled) return;
|
|
44
|
+
if (!call || !call.ok) {
|
|
45
|
+
if (call?.status === 404) setNotFound(true);
|
|
46
|
+
else setError(call?.result?.error ?? t("push_notifications.deliveries.error.loadFailed"));
|
|
47
|
+
setIsLoading(false);
|
|
48
|
+
return;
|
|
49
|
+
}
|
|
50
|
+
setItem(call.result?.item ?? null);
|
|
51
|
+
setNotFound(!call.result?.item);
|
|
52
|
+
setIsLoading(false);
|
|
53
|
+
}
|
|
54
|
+
if (id) load();
|
|
55
|
+
return () => {
|
|
56
|
+
cancelled = true;
|
|
57
|
+
};
|
|
58
|
+
}, [id, t]);
|
|
59
|
+
return /* @__PURE__ */ jsx(Page, { children: /* @__PURE__ */ jsx(PageBody, { children: isLoading ? /* @__PURE__ */ jsx(LoadingMessage, { label: t("push_notifications.deliveries.detail.loading") }) : notFound ? /* @__PURE__ */ jsx(
|
|
60
|
+
RecordNotFoundState,
|
|
61
|
+
{
|
|
62
|
+
label: t("push_notifications.errors.not_found"),
|
|
63
|
+
backHref: "/backend/push_notifications",
|
|
64
|
+
backLabel: t("push_notifications.deliveries.title")
|
|
65
|
+
}
|
|
66
|
+
) : error ? /* @__PURE__ */ jsx(ErrorMessage, { label: error }) : item ? /* @__PURE__ */ jsxs("div", { className: "flex flex-col gap-6", children: [
|
|
67
|
+
/* @__PURE__ */ jsx(
|
|
68
|
+
FormHeader,
|
|
69
|
+
{
|
|
70
|
+
mode: "detail",
|
|
71
|
+
backHref: "/backend/push_notifications",
|
|
72
|
+
backLabel: t("push_notifications.deliveries.title"),
|
|
73
|
+
entityTypeLabel: t("push_notifications.deliveries.detail.pageTitle"),
|
|
74
|
+
title: item.notification_type_id,
|
|
75
|
+
statusBadge: /* @__PURE__ */ jsx(StatusBadge, { variant: statusVariant[item.status] ?? "neutral", dot: true, children: t(`push_notifications.deliveries.status.${item.status}`) })
|
|
76
|
+
}
|
|
77
|
+
),
|
|
78
|
+
/* @__PURE__ */ jsx("section", { className: "rounded-lg border bg-card p-6", children: /* @__PURE__ */ jsxs("dl", { className: "grid grid-cols-1 gap-4 sm:grid-cols-2 lg:grid-cols-3", children: [
|
|
79
|
+
/* @__PURE__ */ jsx(DetailRow, { label: t("push_notifications.deliveries.columns.type"), children: item.notification_type_id }),
|
|
80
|
+
/* @__PURE__ */ jsx(DetailRow, { label: t("push_notifications.deliveries.columns.provider"), children: item.provider }),
|
|
81
|
+
/* @__PURE__ */ jsx(DetailRow, { label: t("push_notifications.deliveries.columns.attempts"), children: item.attempts }),
|
|
82
|
+
/* @__PURE__ */ jsx(DetailRow, { label: t("push_notifications.deliveries.columns.user"), children: /* @__PURE__ */ jsx("code", { className: "font-mono text-xs break-all", children: item.user_id }) }),
|
|
83
|
+
/* @__PURE__ */ jsx(DetailRow, { label: t("push_notifications.deliveries.detail.device"), children: /* @__PURE__ */ jsx("code", { className: "font-mono text-xs break-all", children: item.user_device_id }) }),
|
|
84
|
+
/* @__PURE__ */ jsx(DetailRow, { label: t("push_notifications.deliveries.detail.tokenSnapshot"), children: /* @__PURE__ */ jsxs("code", { className: "font-mono text-xs", children: [
|
|
85
|
+
"\u2026",
|
|
86
|
+
item.token_snapshot
|
|
87
|
+
] }) }),
|
|
88
|
+
/* @__PURE__ */ jsx(DetailRow, { label: t("push_notifications.deliveries.columns.created"), children: item.created_at ? new Date(item.created_at).toLocaleString() : "\u2014" }),
|
|
89
|
+
/* @__PURE__ */ jsx(DetailRow, { label: t("push_notifications.deliveries.columns.sent"), children: item.sent_at ? new Date(item.sent_at).toLocaleString() : "\u2014" }),
|
|
90
|
+
/* @__PURE__ */ jsx(DetailRow, { label: t("push_notifications.deliveries.detail.nextRetry"), children: item.next_retry_at ? new Date(item.next_retry_at).toLocaleString() : "\u2014" })
|
|
91
|
+
] }) }),
|
|
92
|
+
item.last_error ? /* @__PURE__ */ jsxs("section", { className: "rounded-lg border border-status-error-border bg-status-error-bg p-6", children: [
|
|
93
|
+
/* @__PURE__ */ jsx("h2", { className: "mb-2 text-sm font-medium text-status-error-text", children: t("push_notifications.deliveries.detail.lastError") }),
|
|
94
|
+
/* @__PURE__ */ jsx("pre", { className: "overflow-x-auto whitespace-pre-wrap text-xs text-status-error-text", children: item.last_error })
|
|
95
|
+
] }) : null,
|
|
96
|
+
/* @__PURE__ */ jsx(JsonDisplay, { data: item.payload ?? {}, title: t("push_notifications.deliveries.detail.payload") }),
|
|
97
|
+
/* @__PURE__ */ jsx(JsonDisplay, { data: item.provider_response ?? {}, title: t("push_notifications.deliveries.detail.providerResponse") })
|
|
98
|
+
] }) : null }) });
|
|
99
|
+
}
|
|
100
|
+
export {
|
|
101
|
+
PushDeliveryDetailPage as default
|
|
102
|
+
};
|
|
103
|
+
//# sourceMappingURL=page.js.map
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["../../../../../../src/modules/push_notifications/backend/push_notifications/%5Bid%5D/page.tsx"],
|
|
4
|
+
"sourcesContent": ["\"use client\"\nimport * as React from 'react'\nimport { Page, PageBody } from '@open-mercato/ui/backend/Page'\nimport { LoadingMessage, ErrorMessage, RecordNotFoundState } from '@open-mercato/ui/backend/detail'\nimport { FormHeader } from '@open-mercato/ui/backend/forms'\nimport { JsonDisplay } from '@open-mercato/ui/backend/JsonDisplay'\nimport { StatusBadge, type StatusMap } from '@open-mercato/ui/primitives/status-badge'\nimport { apiCall } from '@open-mercato/ui/backend/utils/apiCall'\nimport { useT } from '@open-mercato/shared/lib/i18n/context'\n\ntype PushDeliveryStatus = 'pending' | 'sending' | 'sent' | 'failed' | 'skipped' | 'expired'\n\ntype DeliveryDetail = {\n id: string\n notification_id: string | null\n notification_type_id: string\n user_device_id: string\n user_id: string\n provider: string\n token_snapshot: string\n status: PushDeliveryStatus\n attempts: number\n last_error: string | null\n payload: Record<string, unknown> | null\n provider_response: Record<string, unknown> | null\n created_at: string | null\n sent_at: string | null\n next_retry_at: string | null\n updated_at: string | null\n}\n\nconst statusVariant: StatusMap<PushDeliveryStatus> = {\n pending: 'info',\n sending: 'info',\n sent: 'success',\n failed: 'error',\n skipped: 'neutral',\n expired: 'warning',\n}\n\nfunction DetailRow({ label, children }: { label: string; children: React.ReactNode }) {\n return (\n <div>\n <dt className=\"text-sm font-medium text-muted-foreground\">{label}</dt>\n <dd className=\"mt-1 text-sm text-foreground\">{children}</dd>\n </div>\n )\n}\n\nexport default function PushDeliveryDetailPage({ params }: { params?: { id?: string } }) {\n const id = typeof params?.id === 'string' ? params.id : ''\n const t = useT()\n const [item, setItem] = React.useState<DeliveryDetail | null>(null)\n const [isLoading, setIsLoading] = React.useState(true)\n const [error, setError] = React.useState<string | null>(null)\n const [notFound, setNotFound] = React.useState(false)\n\n React.useEffect(() => {\n let cancelled = false\n async function load() {\n setIsLoading(true)\n setError(null)\n setNotFound(false)\n const call = await apiCall<{ item?: DeliveryDetail; error?: string }>(\n `/api/push_notifications/deliveries/${encodeURIComponent(id)}`,\n undefined,\n { fallback: null },\n ).catch(() => null)\n if (cancelled) return\n if (!call || !call.ok) {\n if (call?.status === 404) setNotFound(true)\n else setError((call?.result as { error?: string } | undefined)?.error ?? t('push_notifications.deliveries.error.loadFailed'))\n setIsLoading(false)\n return\n }\n setItem(call.result?.item ?? null)\n setNotFound(!call.result?.item)\n setIsLoading(false)\n }\n if (id) load()\n return () => { cancelled = true }\n }, [id, t])\n\n return (\n <Page>\n <PageBody>\n {isLoading ? (\n <LoadingMessage label={t('push_notifications.deliveries.detail.loading')} />\n ) : notFound ? (\n <RecordNotFoundState\n label={t('push_notifications.errors.not_found')}\n backHref=\"/backend/push_notifications\"\n backLabel={t('push_notifications.deliveries.title')}\n />\n ) : error ? (\n <ErrorMessage label={error} />\n ) : item ? (\n <div className=\"flex flex-col gap-6\">\n <FormHeader\n mode=\"detail\"\n backHref=\"/backend/push_notifications\"\n backLabel={t('push_notifications.deliveries.title')}\n entityTypeLabel={t('push_notifications.deliveries.detail.pageTitle')}\n title={item.notification_type_id}\n statusBadge={(\n <StatusBadge variant={statusVariant[item.status] ?? 'neutral'} dot>\n {t(`push_notifications.deliveries.status.${item.status}`)}\n </StatusBadge>\n )}\n />\n <section className=\"rounded-lg border bg-card p-6\">\n <dl className=\"grid grid-cols-1 gap-4 sm:grid-cols-2 lg:grid-cols-3\">\n <DetailRow label={t('push_notifications.deliveries.columns.type')}>{item.notification_type_id}</DetailRow>\n <DetailRow label={t('push_notifications.deliveries.columns.provider')}>{item.provider}</DetailRow>\n <DetailRow label={t('push_notifications.deliveries.columns.attempts')}>{item.attempts}</DetailRow>\n <DetailRow label={t('push_notifications.deliveries.columns.user')}>\n <code className=\"font-mono text-xs break-all\">{item.user_id}</code>\n </DetailRow>\n <DetailRow label={t('push_notifications.deliveries.detail.device')}>\n <code className=\"font-mono text-xs break-all\">{item.user_device_id}</code>\n </DetailRow>\n <DetailRow label={t('push_notifications.deliveries.detail.tokenSnapshot')}>\n <code className=\"font-mono text-xs\">\u2026{item.token_snapshot}</code>\n </DetailRow>\n <DetailRow label={t('push_notifications.deliveries.columns.created')}>\n {item.created_at ? new Date(item.created_at).toLocaleString() : '\u2014'}\n </DetailRow>\n <DetailRow label={t('push_notifications.deliveries.columns.sent')}>\n {item.sent_at ? new Date(item.sent_at).toLocaleString() : '\u2014'}\n </DetailRow>\n <DetailRow label={t('push_notifications.deliveries.detail.nextRetry')}>\n {item.next_retry_at ? new Date(item.next_retry_at).toLocaleString() : '\u2014'}\n </DetailRow>\n </dl>\n </section>\n {item.last_error ? (\n <section className=\"rounded-lg border border-status-error-border bg-status-error-bg p-6\">\n <h2 className=\"mb-2 text-sm font-medium text-status-error-text\">{t('push_notifications.deliveries.detail.lastError')}</h2>\n <pre className=\"overflow-x-auto whitespace-pre-wrap text-xs text-status-error-text\">{item.last_error}</pre>\n </section>\n ) : null}\n <JsonDisplay data={item.payload ?? {}} title={t('push_notifications.deliveries.detail.payload')} />\n <JsonDisplay data={item.provider_response ?? {}} title={t('push_notifications.deliveries.detail.providerResponse')} />\n </div>\n ) : null}\n </PageBody>\n </Page>\n )\n}\n"],
|
|
5
|
+
"mappings": "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",
|
|
6
|
+
"names": []
|
|
7
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
const metadata = {
|
|
2
|
+
requireAuth: true,
|
|
3
|
+
requireFeatures: ["push_notifications.view_deliveries"],
|
|
4
|
+
pageTitle: "Push Delivery",
|
|
5
|
+
pageTitleKey: "push_notifications.deliveries.detail.pageTitle",
|
|
6
|
+
pageContext: "settings",
|
|
7
|
+
navHidden: true,
|
|
8
|
+
breadcrumb: [{ label: "Push Deliveries", labelKey: "push_notifications.deliveries.pageTitle", href: "/backend/push_notifications" }]
|
|
9
|
+
};
|
|
10
|
+
export {
|
|
11
|
+
metadata
|
|
12
|
+
};
|
|
13
|
+
//# sourceMappingURL=page.meta.js.map
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["../../../../../../src/modules/push_notifications/backend/push_notifications/%5Bid%5D/page.meta.ts"],
|
|
4
|
+
"sourcesContent": ["export const metadata = {\n requireAuth: true,\n requireFeatures: ['push_notifications.view_deliveries'],\n pageTitle: 'Push Delivery',\n pageTitleKey: 'push_notifications.deliveries.detail.pageTitle',\n pageContext: 'settings' as const,\n navHidden: true,\n breadcrumb: [{ label: 'Push Deliveries', labelKey: 'push_notifications.deliveries.pageTitle', href: '/backend/push_notifications' }],\n} as const\n"],
|
|
5
|
+
"mappings": "AAAO,MAAM,WAAW;AAAA,EACtB,aAAa;AAAA,EACb,iBAAiB,CAAC,oCAAoC;AAAA,EACtD,WAAW;AAAA,EACX,cAAc;AAAA,EACd,aAAa;AAAA,EACb,WAAW;AAAA,EACX,YAAY,CAAC,EAAE,OAAO,mBAAmB,UAAU,2CAA2C,MAAM,8BAA8B,CAAC;AACrI;",
|
|
6
|
+
"names": []
|
|
7
|
+
}
|
|
@@ -0,0 +1,213 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import { jsx } from "react/jsx-runtime";
|
|
3
|
+
import * as React from "react";
|
|
4
|
+
import Link from "next/link";
|
|
5
|
+
import { Page, PageBody } from "@open-mercato/ui/backend/Page";
|
|
6
|
+
import { DataTable } from "@open-mercato/ui/backend/DataTable";
|
|
7
|
+
import { StatusBadge } 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
|
+
const statusVariant = {
|
|
13
|
+
pending: "info",
|
|
14
|
+
sending: "info",
|
|
15
|
+
sent: "success",
|
|
16
|
+
failed: "error",
|
|
17
|
+
skipped: "neutral",
|
|
18
|
+
expired: "warning"
|
|
19
|
+
};
|
|
20
|
+
function formatDate(value, t) {
|
|
21
|
+
if (!value) return t("push_notifications.deliveries.noValue");
|
|
22
|
+
try {
|
|
23
|
+
const date = new Date(value);
|
|
24
|
+
if (Number.isNaN(date.getTime())) return t("push_notifications.deliveries.noValue");
|
|
25
|
+
return date.toLocaleString();
|
|
26
|
+
} catch {
|
|
27
|
+
return t("push_notifications.deliveries.noValue");
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
function PushDeliveriesListPage() {
|
|
31
|
+
const [rows, setRows] = React.useState([]);
|
|
32
|
+
const [page, setPage] = React.useState(1);
|
|
33
|
+
const [total, setTotal] = React.useState(0);
|
|
34
|
+
const [totalPages, setTotalPages] = React.useState(1);
|
|
35
|
+
const [isLoading, setIsLoading] = React.useState(true);
|
|
36
|
+
const scopeVersion = useOrganizationScopeVersion();
|
|
37
|
+
const t = useT();
|
|
38
|
+
const [filterValues, setFilterValues] = React.useState({});
|
|
39
|
+
const [userOptions, setUserOptions] = React.useState([]);
|
|
40
|
+
const loadUserOptions = React.useCallback(async (query) => {
|
|
41
|
+
const params = new URLSearchParams();
|
|
42
|
+
params.set("page", "1");
|
|
43
|
+
params.set("pageSize", "20");
|
|
44
|
+
if (query && query.trim().length > 0) params.set("search", query.trim());
|
|
45
|
+
const call = await apiCall(
|
|
46
|
+
`/api/auth/users?${params.toString()}`,
|
|
47
|
+
{ headers: { "x-om-forbidden-redirect": "0" } },
|
|
48
|
+
{ fallback: null }
|
|
49
|
+
).catch(() => null);
|
|
50
|
+
if (!call || !call.ok) return [];
|
|
51
|
+
const next = (call.result?.items ?? []).flatMap((item) => {
|
|
52
|
+
if (!item || typeof item.id !== "string" || !item.id.trim()) return [];
|
|
53
|
+
const name = typeof item.name === "string" && item.name.trim() ? item.name.trim() : null;
|
|
54
|
+
const email = typeof item.email === "string" && item.email.trim() ? item.email.trim() : null;
|
|
55
|
+
const label = name ?? email ?? item.id;
|
|
56
|
+
return [{ value: item.id, label, description: email && email !== label ? email : null }];
|
|
57
|
+
});
|
|
58
|
+
setUserOptions((prev) => {
|
|
59
|
+
const map = new Map(prev.map((opt) => [opt.value, opt]));
|
|
60
|
+
for (const opt of next) map.set(opt.value, opt);
|
|
61
|
+
return Array.from(map.values());
|
|
62
|
+
});
|
|
63
|
+
return next;
|
|
64
|
+
}, []);
|
|
65
|
+
React.useEffect(() => {
|
|
66
|
+
void loadUserOptions();
|
|
67
|
+
}, [loadUserOptions, scopeVersion]);
|
|
68
|
+
const userLabelById = React.useMemo(
|
|
69
|
+
() => new Map(userOptions.map((opt) => [opt.value, opt.label])),
|
|
70
|
+
[userOptions]
|
|
71
|
+
);
|
|
72
|
+
const filters = React.useMemo(() => [
|
|
73
|
+
{
|
|
74
|
+
id: "status",
|
|
75
|
+
label: t("push_notifications.deliveries.columns.status"),
|
|
76
|
+
type: "select",
|
|
77
|
+
options: [
|
|
78
|
+
{ value: "pending", label: t("push_notifications.deliveries.status.pending") },
|
|
79
|
+
{ value: "sending", label: t("push_notifications.deliveries.status.sending") },
|
|
80
|
+
{ value: "sent", label: t("push_notifications.deliveries.status.sent") },
|
|
81
|
+
{ value: "failed", label: t("push_notifications.deliveries.status.failed") },
|
|
82
|
+
{ value: "skipped", label: t("push_notifications.deliveries.status.skipped") },
|
|
83
|
+
{ value: "expired", label: t("push_notifications.deliveries.status.expired") }
|
|
84
|
+
]
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
id: "userId",
|
|
88
|
+
label: t("push_notifications.deliveries.columns.user"),
|
|
89
|
+
type: "combobox",
|
|
90
|
+
options: userOptions,
|
|
91
|
+
loadOptions: loadUserOptions
|
|
92
|
+
},
|
|
93
|
+
// A single created-at range picker (ISO `yyyy-MM-dd`) that maps to the ?from/?to query params.
|
|
94
|
+
{ id: "createdRange", label: t("push_notifications.deliveries.filters.created"), type: "dateRange" }
|
|
95
|
+
], [t, userOptions, loadUserOptions]);
|
|
96
|
+
React.useEffect(() => {
|
|
97
|
+
let cancelled = false;
|
|
98
|
+
async function load() {
|
|
99
|
+
setIsLoading(true);
|
|
100
|
+
try {
|
|
101
|
+
const params = new URLSearchParams();
|
|
102
|
+
params.set("page", String(page));
|
|
103
|
+
params.set("pageSize", "50");
|
|
104
|
+
const status = typeof filterValues.status === "string" ? filterValues.status.trim() : "";
|
|
105
|
+
const userId = typeof filterValues.userId === "string" ? filterValues.userId.trim() : "";
|
|
106
|
+
const createdRange = filterValues.createdRange ?? {};
|
|
107
|
+
const from = typeof createdRange.from === "string" ? createdRange.from.trim() : "";
|
|
108
|
+
const to = typeof createdRange.to === "string" ? createdRange.to.trim() : "";
|
|
109
|
+
if (status) params.set("status", status);
|
|
110
|
+
if (userId) params.set("userId", userId);
|
|
111
|
+
if (from) params.set("from", from);
|
|
112
|
+
if (to) params.set("to", to);
|
|
113
|
+
const fallback = { items: [], total: 0, page, totalPages: 1 };
|
|
114
|
+
const call = await apiCall(`/api/push_notifications/deliveries?${params.toString()}`, void 0, { fallback });
|
|
115
|
+
if (!call.ok) {
|
|
116
|
+
const errorPayload = call.result;
|
|
117
|
+
const message = typeof errorPayload?.error === "string" ? errorPayload.error : t("push_notifications.deliveries.error.loadFailed");
|
|
118
|
+
flash(message, "error");
|
|
119
|
+
return;
|
|
120
|
+
}
|
|
121
|
+
const payload = call.result ?? fallback;
|
|
122
|
+
if (!cancelled) {
|
|
123
|
+
setRows(Array.isArray(payload.items) ? payload.items : []);
|
|
124
|
+
setTotal(payload.total || 0);
|
|
125
|
+
setTotalPages(payload.totalPages || 1);
|
|
126
|
+
}
|
|
127
|
+
} catch (error) {
|
|
128
|
+
if (!cancelled) {
|
|
129
|
+
const message = error instanceof Error ? error.message : t("push_notifications.deliveries.error.loadFailed");
|
|
130
|
+
flash(message, "error");
|
|
131
|
+
}
|
|
132
|
+
} finally {
|
|
133
|
+
if (!cancelled) setIsLoading(false);
|
|
134
|
+
}
|
|
135
|
+
}
|
|
136
|
+
load();
|
|
137
|
+
return () => {
|
|
138
|
+
cancelled = true;
|
|
139
|
+
};
|
|
140
|
+
}, [page, scopeVersion, filterValues, t]);
|
|
141
|
+
const columns = React.useMemo(() => [
|
|
142
|
+
{
|
|
143
|
+
accessorKey: "status",
|
|
144
|
+
header: t("push_notifications.deliveries.columns.status"),
|
|
145
|
+
cell: ({ row }) => /* @__PURE__ */ jsx(StatusBadge, { variant: statusVariant[row.original.status] ?? "neutral", dot: true, children: t(`push_notifications.deliveries.status.${row.original.status}`) })
|
|
146
|
+
},
|
|
147
|
+
{ accessorKey: "notification_type_id", header: t("push_notifications.deliveries.columns.type") },
|
|
148
|
+
{
|
|
149
|
+
accessorKey: "user_id",
|
|
150
|
+
header: t("push_notifications.deliveries.columns.user"),
|
|
151
|
+
cell: ({ row }) => {
|
|
152
|
+
const userId = row.original.user_id;
|
|
153
|
+
const label = userLabelById.get(userId);
|
|
154
|
+
return (
|
|
155
|
+
// Stop the click bubbling to the row, whose default action opens the delivery detail.
|
|
156
|
+
/* @__PURE__ */ jsx(
|
|
157
|
+
Link,
|
|
158
|
+
{
|
|
159
|
+
href: `/backend/users/${encodeURIComponent(userId)}/edit`,
|
|
160
|
+
className: "text-primary hover:underline",
|
|
161
|
+
onClick: (e) => e.stopPropagation(),
|
|
162
|
+
children: label ?? /* @__PURE__ */ jsx("code", { className: "text-xs", children: userId })
|
|
163
|
+
}
|
|
164
|
+
)
|
|
165
|
+
);
|
|
166
|
+
}
|
|
167
|
+
},
|
|
168
|
+
{ accessorKey: "provider", header: t("push_notifications.deliveries.columns.provider") },
|
|
169
|
+
{
|
|
170
|
+
accessorKey: "attempts",
|
|
171
|
+
header: t("push_notifications.deliveries.columns.attempts")
|
|
172
|
+
},
|
|
173
|
+
{
|
|
174
|
+
accessorKey: "created_at",
|
|
175
|
+
header: t("push_notifications.deliveries.columns.created"),
|
|
176
|
+
cell: ({ row }) => formatDate(row.original.created_at, t)
|
|
177
|
+
},
|
|
178
|
+
{
|
|
179
|
+
accessorKey: "sent_at",
|
|
180
|
+
header: t("push_notifications.deliveries.columns.sent"),
|
|
181
|
+
cell: ({ row }) => formatDate(row.original.sent_at, t)
|
|
182
|
+
}
|
|
183
|
+
], [t, userLabelById]);
|
|
184
|
+
return /* @__PURE__ */ jsx(Page, { children: /* @__PURE__ */ jsx(PageBody, { children: /* @__PURE__ */ jsx(
|
|
185
|
+
DataTable,
|
|
186
|
+
{
|
|
187
|
+
title: t("push_notifications.deliveries.title"),
|
|
188
|
+
columns,
|
|
189
|
+
data: rows,
|
|
190
|
+
filters,
|
|
191
|
+
filterValues,
|
|
192
|
+
onFiltersApply: (values) => {
|
|
193
|
+
setFilterValues(values);
|
|
194
|
+
setPage(1);
|
|
195
|
+
},
|
|
196
|
+
onFiltersClear: () => {
|
|
197
|
+
setFilterValues({});
|
|
198
|
+
setPage(1);
|
|
199
|
+
},
|
|
200
|
+
perspective: { tableId: "push_notifications.deliveries" },
|
|
201
|
+
onRowClick: (row) => {
|
|
202
|
+
window.location.href = `/backend/push_notifications/${row.id}`;
|
|
203
|
+
},
|
|
204
|
+
pagination: { page, pageSize: 50, total, totalPages, onPageChange: setPage },
|
|
205
|
+
isLoading,
|
|
206
|
+
emptyState: t("push_notifications.deliveries.empty")
|
|
207
|
+
}
|
|
208
|
+
) }) });
|
|
209
|
+
}
|
|
210
|
+
export {
|
|
211
|
+
PushDeliveriesListPage as default
|
|
212
|
+
};
|
|
213
|
+
//# sourceMappingURL=page.js.map
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["../../../../../src/modules/push_notifications/backend/push_notifications/page.tsx"],
|
|
4
|
+
"sourcesContent": ["\"use client\"\nimport * as React from 'react'\nimport Link from 'next/link'\nimport { Page, PageBody } from '@open-mercato/ui/backend/Page'\nimport { DataTable } from '@open-mercato/ui/backend/DataTable'\nimport type { LegacyColumnDef as ColumnDef } from '@tanstack/react-table/legacy'\nimport { StatusBadge, type StatusMap } from '@open-mercato/ui/primitives/status-badge'\nimport { apiCall } from '@open-mercato/ui/backend/utils/apiCall'\nimport { flash } from '@open-mercato/ui/backend/FlashMessages'\nimport { useOrganizationScopeVersion } from '@open-mercato/shared/lib/frontend/useOrganizationScope'\nimport { useT } from '@open-mercato/shared/lib/i18n/context'\nimport type { FilterDef, FilterValues } from '@open-mercato/ui/backend/FilterBar'\n\ntype PushDeliveryStatus = 'pending' | 'sending' | 'sent' | 'failed' | 'skipped' | 'expired'\n\ntype Row = {\n id: string\n notification_type_id: string\n user_id: string\n provider: string\n token_snapshot: string\n status: PushDeliveryStatus\n attempts: number\n last_error: string | null\n created_at: string | null\n sent_at: string | null\n}\n\ntype ResponsePayload = {\n items: Row[]\n total: number\n page?: number\n pageSize?: number\n totalPages: number\n}\n\nconst statusVariant: StatusMap<PushDeliveryStatus> = {\n pending: 'info',\n sending: 'info',\n sent: 'success',\n failed: 'error',\n skipped: 'neutral',\n expired: 'warning',\n}\n\nfunction formatDate(value: string | null, t: (key: string) => string) {\n if (!value) return t('push_notifications.deliveries.noValue')\n try {\n const date = new Date(value)\n if (Number.isNaN(date.getTime())) return t('push_notifications.deliveries.noValue')\n return date.toLocaleString()\n } catch {\n return t('push_notifications.deliveries.noValue')\n }\n}\n\nexport default function PushDeliveriesListPage() {\n const [rows, setRows] = React.useState<Row[]>([])\n const [page, setPage] = React.useState(1)\n const [total, setTotal] = React.useState(0)\n const [totalPages, setTotalPages] = React.useState(1)\n const [isLoading, setIsLoading] = React.useState(true)\n const scopeVersion = useOrganizationScopeVersion()\n const t = useT()\n const [filterValues, setFilterValues] = React.useState<FilterValues>({})\n const [userOptions, setUserOptions] = React.useState<{ value: string; label: string; description?: string | null }[]>([])\n\n // Filter deliveries by recipient picked via name/email search instead of a raw UUID (mirrors the\n // devices list). Admins without auth.users.list degrade gracefully to no options.\n const loadUserOptions = React.useCallback(async (query?: string) => {\n const params = new URLSearchParams()\n params.set('page', '1')\n params.set('pageSize', '20')\n if (query && query.trim().length > 0) params.set('search', query.trim())\n const call = await apiCall<{ items?: { id: string; name?: string | null; email?: string | null }[] }>(\n `/api/auth/users?${params.toString()}`,\n { headers: { 'x-om-forbidden-redirect': '0' } },\n { fallback: null },\n ).catch(() => null)\n if (!call || !call.ok) return []\n const next = (call.result?.items ?? []).flatMap((item) => {\n if (!item || typeof item.id !== 'string' || !item.id.trim()) return []\n const name = typeof item.name === 'string' && item.name.trim() ? item.name.trim() : null\n const email = typeof item.email === 'string' && item.email.trim() ? item.email.trim() : null\n const label = name ?? email ?? item.id\n return [{ value: item.id, label, description: email && email !== label ? email : null }]\n })\n setUserOptions((prev) => {\n const map = new Map(prev.map((opt) => [opt.value, opt]))\n for (const opt of next) map.set(opt.value, opt)\n return Array.from(map.values())\n })\n return next\n }, [])\n\n React.useEffect(() => { void loadUserOptions() }, [loadUserOptions, scopeVersion])\n\n // Reuse the picker cache to label the User column; rows whose owner isn't cached still show the id.\n const userLabelById = React.useMemo(\n () => new Map(userOptions.map((opt) => [opt.value, opt.label])),\n [userOptions],\n )\n\n const filters = React.useMemo<FilterDef[]>(() => [\n {\n id: 'status',\n label: t('push_notifications.deliveries.columns.status'),\n type: 'select',\n options: [\n { value: 'pending', label: t('push_notifications.deliveries.status.pending') },\n { value: 'sending', label: t('push_notifications.deliveries.status.sending') },\n { value: 'sent', label: t('push_notifications.deliveries.status.sent') },\n { value: 'failed', label: t('push_notifications.deliveries.status.failed') },\n { value: 'skipped', label: t('push_notifications.deliveries.status.skipped') },\n { value: 'expired', label: t('push_notifications.deliveries.status.expired') },\n ],\n },\n {\n id: 'userId',\n label: t('push_notifications.deliveries.columns.user'),\n type: 'combobox',\n options: userOptions,\n loadOptions: loadUserOptions,\n },\n // A single created-at range picker (ISO `yyyy-MM-dd`) that maps to the ?from/?to query params.\n { id: 'createdRange', label: t('push_notifications.deliveries.filters.created'), type: 'dateRange' },\n ], [t, userOptions, loadUserOptions])\n\n React.useEffect(() => {\n let cancelled = false\n async function load() {\n setIsLoading(true)\n try {\n const params = new URLSearchParams()\n params.set('page', String(page))\n params.set('pageSize', '50')\n const status = typeof filterValues.status === 'string' ? filterValues.status.trim() : ''\n const userId = typeof filterValues.userId === 'string' ? filterValues.userId.trim() : ''\n const createdRange = (filterValues.createdRange ?? {}) as { from?: string; to?: string }\n const from = typeof createdRange.from === 'string' ? createdRange.from.trim() : ''\n const to = typeof createdRange.to === 'string' ? createdRange.to.trim() : ''\n if (status) params.set('status', status)\n if (userId) params.set('userId', userId)\n if (from) params.set('from', from)\n if (to) params.set('to', to)\n const fallback: ResponsePayload = { items: [], total: 0, page, totalPages: 1 }\n const call = await apiCall<ResponsePayload>(`/api/push_notifications/deliveries?${params.toString()}`, undefined, { fallback })\n if (!call.ok) {\n const errorPayload = call.result as { error?: string } | undefined\n const message = typeof errorPayload?.error === 'string' ? errorPayload.error : t('push_notifications.deliveries.error.loadFailed')\n flash(message, 'error')\n return\n }\n const payload = call.result ?? fallback\n if (!cancelled) {\n setRows(Array.isArray(payload.items) ? payload.items : [])\n setTotal(payload.total || 0)\n setTotalPages(payload.totalPages || 1)\n }\n } catch (error) {\n if (!cancelled) {\n const message = error instanceof Error ? error.message : t('push_notifications.deliveries.error.loadFailed')\n flash(message, 'error')\n }\n } finally {\n if (!cancelled) setIsLoading(false)\n }\n }\n load()\n return () => { cancelled = true }\n }, [page, scopeVersion, filterValues, t])\n\n const columns = React.useMemo<ColumnDef<Row>[]>(() => [\n {\n accessorKey: 'status',\n header: t('push_notifications.deliveries.columns.status'),\n cell: ({ row }) => (\n <StatusBadge variant={statusVariant[row.original.status] ?? 'neutral'} dot>\n {t(`push_notifications.deliveries.status.${row.original.status}`)}\n </StatusBadge>\n ),\n },\n { accessorKey: 'notification_type_id', header: t('push_notifications.deliveries.columns.type') },\n {\n accessorKey: 'user_id',\n header: t('push_notifications.deliveries.columns.user'),\n cell: ({ row }) => {\n const userId = row.original.user_id\n const label = userLabelById.get(userId)\n return (\n // Stop the click bubbling to the row, whose default action opens the delivery detail.\n <Link\n href={`/backend/users/${encodeURIComponent(userId)}/edit`}\n className=\"text-primary hover:underline\"\n onClick={(e) => e.stopPropagation()}\n >\n {label ?? <code className=\"text-xs\">{userId}</code>}\n </Link>\n )\n },\n },\n { accessorKey: 'provider', header: t('push_notifications.deliveries.columns.provider') },\n {\n accessorKey: 'attempts',\n header: t('push_notifications.deliveries.columns.attempts'),\n },\n {\n accessorKey: 'created_at',\n header: t('push_notifications.deliveries.columns.created'),\n cell: ({ row }) => formatDate(row.original.created_at, t),\n },\n {\n accessorKey: 'sent_at',\n header: t('push_notifications.deliveries.columns.sent'),\n cell: ({ row }) => formatDate(row.original.sent_at, t),\n },\n ], [t, userLabelById])\n\n return (\n <Page>\n <PageBody>\n <DataTable\n title={t('push_notifications.deliveries.title')}\n columns={columns}\n data={rows}\n filters={filters}\n filterValues={filterValues}\n onFiltersApply={(values) => { setFilterValues(values); setPage(1) }}\n onFiltersClear={() => { setFilterValues({}); setPage(1) }}\n perspective={{ tableId: 'push_notifications.deliveries' }}\n onRowClick={(row) => { window.location.href = `/backend/push_notifications/${row.id}` }}\n pagination={{ page, pageSize: 50, total, totalPages, onPageChange: setPage }}\n isLoading={isLoading}\n emptyState={t('push_notifications.deliveries.empty')}\n />\n </PageBody>\n </Page>\n )\n}\n"],
|
|
5
|
+
"mappings": "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",
|
|
6
|
+
"names": []
|
|
7
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
const sendIcon = React.createElement(
|
|
3
|
+
"svg",
|
|
4
|
+
{ width: 16, height: 16, viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: 2, strokeLinecap: "round", strokeLinejoin: "round" },
|
|
5
|
+
React.createElement("line", { x1: 22, y1: 2, x2: 11, y2: 13 }),
|
|
6
|
+
React.createElement("polygon", { points: "22 2 15 22 11 13 2 9 22 2" })
|
|
7
|
+
);
|
|
8
|
+
const metadata = {
|
|
9
|
+
requireAuth: true,
|
|
10
|
+
requireFeatures: ["push_notifications.view_deliveries"],
|
|
11
|
+
pageTitle: "Push Deliveries",
|
|
12
|
+
pageTitleKey: "push_notifications.deliveries.pageTitle",
|
|
13
|
+
pageGroup: "External systems",
|
|
14
|
+
pageGroupKey: "backend.nav.externalSystems",
|
|
15
|
+
pageOrder: 54,
|
|
16
|
+
icon: sendIcon,
|
|
17
|
+
pageContext: "settings",
|
|
18
|
+
breadcrumb: [{ label: "Push Deliveries", labelKey: "push_notifications.deliveries.pageTitle" }]
|
|
19
|
+
};
|
|
20
|
+
export {
|
|
21
|
+
metadata
|
|
22
|
+
};
|
|
23
|
+
//# sourceMappingURL=page.meta.js.map
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["../../../../../src/modules/push_notifications/backend/push_notifications/page.meta.ts"],
|
|
4
|
+
"sourcesContent": ["import React from 'react'\n\nconst sendIcon = React.createElement(\n 'svg',\n { width: 16, height: 16, viewBox: '0 0 24 24', fill: 'none', stroke: 'currentColor', strokeWidth: 2, strokeLinecap: 'round', strokeLinejoin: 'round' },\n React.createElement('line', { x1: 22, y1: 2, x2: 11, y2: 13 }),\n React.createElement('polygon', { points: '22 2 15 22 11 13 2 9 22 2' }),\n)\n\nexport const metadata = {\n requireAuth: true,\n requireFeatures: ['push_notifications.view_deliveries'],\n pageTitle: 'Push Deliveries',\n pageTitleKey: 'push_notifications.deliveries.pageTitle',\n pageGroup: 'External systems',\n pageGroupKey: 'backend.nav.externalSystems',\n pageOrder: 54,\n icon: sendIcon,\n pageContext: 'settings' as const,\n breadcrumb: [{ label: 'Push Deliveries', labelKey: 'push_notifications.deliveries.pageTitle' }],\n} as const\n"],
|
|
5
|
+
"mappings": "AAAA,OAAO,WAAW;AAElB,MAAM,WAAW,MAAM;AAAA,EACrB;AAAA,EACA,EAAE,OAAO,IAAI,QAAQ,IAAI,SAAS,aAAa,MAAM,QAAQ,QAAQ,gBAAgB,aAAa,GAAG,eAAe,SAAS,gBAAgB,QAAQ;AAAA,EACrJ,MAAM,cAAc,QAAQ,EAAE,IAAI,IAAI,IAAI,GAAG,IAAI,IAAI,IAAI,GAAG,CAAC;AAAA,EAC7D,MAAM,cAAc,WAAW,EAAE,QAAQ,4BAA4B,CAAC;AACxE;AAEO,MAAM,WAAW;AAAA,EACtB,aAAa;AAAA,EACb,iBAAiB,CAAC,oCAAoC;AAAA,EACtD,WAAW;AAAA,EACX,cAAc;AAAA,EACd,WAAW;AAAA,EACX,cAAc;AAAA,EACd,WAAW;AAAA,EACX,MAAM;AAAA,EACN,aAAa;AAAA,EACb,YAAY,CAAC,EAAE,OAAO,mBAAmB,UAAU,0CAA0C,CAAC;AAChG;",
|
|
6
|
+
"names": []
|
|
7
|
+
}
|