@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,164 @@
|
|
|
1
|
+
"use client"
|
|
2
|
+
import * as React from 'react'
|
|
3
|
+
import Link from 'next/link'
|
|
4
|
+
import { useRouter } from 'next/navigation'
|
|
5
|
+
import { Page, PageBody } from '@open-mercato/ui/backend/Page'
|
|
6
|
+
import { CrudForm, type CrudField, type CrudFormGroup } from '@open-mercato/ui/backend/CrudForm'
|
|
7
|
+
import { updateCrud } from '@open-mercato/ui/backend/utils/crud'
|
|
8
|
+
import { apiCall } from '@open-mercato/ui/backend/utils/apiCall'
|
|
9
|
+
import { flash } from '@open-mercato/ui/backend/FlashMessages'
|
|
10
|
+
import { LoadingMessage, ErrorMessage, RecordNotFoundState } from '@open-mercato/ui/backend/detail'
|
|
11
|
+
import { useT } from '@open-mercato/shared/lib/i18n/context'
|
|
12
|
+
|
|
13
|
+
type DeviceDetail = {
|
|
14
|
+
id: string
|
|
15
|
+
user_id: string
|
|
16
|
+
device_id: string
|
|
17
|
+
platform: string
|
|
18
|
+
client_app_version: string | null
|
|
19
|
+
os_version: string | null
|
|
20
|
+
push_provider: string | null
|
|
21
|
+
updated_at: string | null
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
type FormValues = {
|
|
25
|
+
clientAppVersion: string
|
|
26
|
+
osVersion: string
|
|
27
|
+
pushProvider: string
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
export default function DeviceAdminEditPage({ params }: { params?: { id?: string } }) {
|
|
31
|
+
const router = useRouter()
|
|
32
|
+
const t = useT()
|
|
33
|
+
const id = typeof params?.id === 'string' ? params.id : ''
|
|
34
|
+
const [device, setDevice] = React.useState<DeviceDetail | null>(null)
|
|
35
|
+
const [isLoading, setIsLoading] = React.useState(true)
|
|
36
|
+
const [error, setError] = React.useState<string | null>(null)
|
|
37
|
+
const [notFound, setNotFound] = React.useState(false)
|
|
38
|
+
const [userLabel, setUserLabel] = React.useState<string | null>(null)
|
|
39
|
+
|
|
40
|
+
React.useEffect(() => {
|
|
41
|
+
let cancelled = false
|
|
42
|
+
async function load() {
|
|
43
|
+
setIsLoading(true)
|
|
44
|
+
setError(null)
|
|
45
|
+
setNotFound(false)
|
|
46
|
+
const call = await apiCall<{ item?: DeviceDetail }>(
|
|
47
|
+
`/api/devices/admin/devices/${encodeURIComponent(id)}`,
|
|
48
|
+
undefined,
|
|
49
|
+
{ fallback: null },
|
|
50
|
+
)
|
|
51
|
+
if (cancelled) return
|
|
52
|
+
if (call.ok && call.result?.item) {
|
|
53
|
+
setDevice(call.result.item)
|
|
54
|
+
} else if (call.status === 404 || (call.ok && !call.result?.item)) {
|
|
55
|
+
setNotFound(true)
|
|
56
|
+
} else {
|
|
57
|
+
setError(t('devices.form.error.loadFailed'))
|
|
58
|
+
}
|
|
59
|
+
setIsLoading(false)
|
|
60
|
+
}
|
|
61
|
+
if (id) load()
|
|
62
|
+
return () => { cancelled = true }
|
|
63
|
+
}, [id, t])
|
|
64
|
+
|
|
65
|
+
// Resolve the owner's display name for a link to their profile. Devices admins may not hold
|
|
66
|
+
// auth.users.list, so fall back to the raw id (rendered without a link) instead of redirecting.
|
|
67
|
+
React.useEffect(() => {
|
|
68
|
+
const userId = device?.user_id
|
|
69
|
+
if (!userId) return
|
|
70
|
+
let cancelled = false
|
|
71
|
+
void (async () => {
|
|
72
|
+
const call = await apiCall<{ items?: { id: string; name?: string | null; email?: string | null }[] }>(
|
|
73
|
+
`/api/auth/users?id=${encodeURIComponent(userId)}`,
|
|
74
|
+
{ headers: { 'x-om-forbidden-redirect': '0' } },
|
|
75
|
+
{ fallback: null },
|
|
76
|
+
).catch(() => null)
|
|
77
|
+
if (cancelled || !call || !call.ok) return
|
|
78
|
+
const found = call.result?.items?.find((u) => u.id === userId)
|
|
79
|
+
const label = found?.name?.trim() || found?.email?.trim() || null
|
|
80
|
+
if (label) setUserLabel(label)
|
|
81
|
+
})()
|
|
82
|
+
return () => { cancelled = true }
|
|
83
|
+
}, [device?.user_id])
|
|
84
|
+
|
|
85
|
+
const fields = React.useMemo<CrudField[]>(() => [
|
|
86
|
+
{ id: 'clientAppVersion', label: t('devices.form.appVersion'), type: 'text' },
|
|
87
|
+
{ id: 'osVersion', label: t('devices.form.osVersion'), type: 'text' },
|
|
88
|
+
{ id: 'pushProvider', label: t('devices.form.pushProvider'), type: 'text' },
|
|
89
|
+
], [t])
|
|
90
|
+
|
|
91
|
+
const groups = React.useMemo<CrudFormGroup[]>(() => ([
|
|
92
|
+
{ id: 'details', title: t('devices.form.details'), column: 1, fields: ['clientAppVersion', 'osVersion', 'pushProvider'] },
|
|
93
|
+
]), [t])
|
|
94
|
+
|
|
95
|
+
if (isLoading) {
|
|
96
|
+
return <Page><PageBody><LoadingMessage label={t('common.loading')} /></PageBody></Page>
|
|
97
|
+
}
|
|
98
|
+
if (notFound) {
|
|
99
|
+
return (
|
|
100
|
+
<Page>
|
|
101
|
+
<PageBody>
|
|
102
|
+
<RecordNotFoundState
|
|
103
|
+
label={t('devices.errors.not_found')}
|
|
104
|
+
backHref="/backend/devices"
|
|
105
|
+
backLabel={t('devices.list.title')}
|
|
106
|
+
/>
|
|
107
|
+
</PageBody>
|
|
108
|
+
</Page>
|
|
109
|
+
)
|
|
110
|
+
}
|
|
111
|
+
if (error || !device) {
|
|
112
|
+
return <Page><PageBody><ErrorMessage label={error ?? t('devices.form.error.loadFailed')} /></PageBody></Page>
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
return (
|
|
116
|
+
<Page>
|
|
117
|
+
<PageBody>
|
|
118
|
+
<CrudForm<FormValues>
|
|
119
|
+
title={t('devices.form.editTitle')}
|
|
120
|
+
backHref="/backend/devices"
|
|
121
|
+
contentHeader={(
|
|
122
|
+
<dl className="grid grid-cols-1 gap-3 rounded-md border bg-muted p-4 text-sm sm:grid-cols-3">
|
|
123
|
+
<div>
|
|
124
|
+
<dt className="text-xs font-medium text-muted-foreground">{t('devices.form.deviceId')}</dt>
|
|
125
|
+
<dd className="mt-1"><code className="text-xs">{device.device_id}</code></dd>
|
|
126
|
+
</div>
|
|
127
|
+
<div>
|
|
128
|
+
<dt className="text-xs font-medium text-muted-foreground">{t('devices.form.platform')}</dt>
|
|
129
|
+
<dd className="mt-1">{device.platform}</dd>
|
|
130
|
+
</div>
|
|
131
|
+
<div>
|
|
132
|
+
<dt className="text-xs font-medium text-muted-foreground">{t('devices.form.userId')}</dt>
|
|
133
|
+
<dd className="mt-1">{userLabel ? (
|
|
134
|
+
<Link href={`/backend/users/${encodeURIComponent(device.user_id)}/edit`} className="text-primary hover:underline">{userLabel}</Link>
|
|
135
|
+
) : (
|
|
136
|
+
<code className="text-xs">{device.user_id}</code>
|
|
137
|
+
)}</dd>
|
|
138
|
+
</div>
|
|
139
|
+
</dl>
|
|
140
|
+
)}
|
|
141
|
+
fields={fields}
|
|
142
|
+
groups={groups}
|
|
143
|
+
optimisticLockUpdatedAt={device.updated_at}
|
|
144
|
+
initialValues={{
|
|
145
|
+
clientAppVersion: device.client_app_version ?? '',
|
|
146
|
+
osVersion: device.os_version ?? '',
|
|
147
|
+
pushProvider: device.push_provider ?? '',
|
|
148
|
+
}}
|
|
149
|
+
submitLabel={t('common.save')}
|
|
150
|
+
cancelHref="/backend/devices"
|
|
151
|
+
onSubmit={async (values) => {
|
|
152
|
+
await updateCrud(`devices/admin/devices/${encodeURIComponent(id)}`, {
|
|
153
|
+
clientAppVersion: values.clientAppVersion.trim() || null,
|
|
154
|
+
osVersion: values.osVersion.trim() || null,
|
|
155
|
+
pushProvider: values.pushProvider.trim() || null,
|
|
156
|
+
})
|
|
157
|
+
flash(t('devices.form.success.updated'), 'success')
|
|
158
|
+
router.push('/backend/devices')
|
|
159
|
+
}}
|
|
160
|
+
/>
|
|
161
|
+
</PageBody>
|
|
162
|
+
</Page>
|
|
163
|
+
)
|
|
164
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export const metadata = {
|
|
2
|
+
requireAuth: true,
|
|
3
|
+
requireFeatures: ['devices.admin'],
|
|
4
|
+
pageTitle: 'Register device',
|
|
5
|
+
pageTitleKey: 'devices.form.createTitle',
|
|
6
|
+
pageContext: 'settings' as const,
|
|
7
|
+
navHidden: true,
|
|
8
|
+
breadcrumb: [
|
|
9
|
+
{ label: 'Devices', labelKey: 'devices.nav.devices', href: '/backend/devices' },
|
|
10
|
+
{ label: 'Register device', labelKey: 'devices.form.createTitle' },
|
|
11
|
+
],
|
|
12
|
+
}
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
"use client"
|
|
2
|
+
import * as React from 'react'
|
|
3
|
+
import { useRouter } from 'next/navigation'
|
|
4
|
+
import { Page, PageBody } from '@open-mercato/ui/backend/Page'
|
|
5
|
+
import { CrudForm, type CrudField, type CrudFormGroup } from '@open-mercato/ui/backend/CrudForm'
|
|
6
|
+
import { createCrud } from '@open-mercato/ui/backend/utils/crud'
|
|
7
|
+
import { flash } from '@open-mercato/ui/backend/FlashMessages'
|
|
8
|
+
import { useT } from '@open-mercato/shared/lib/i18n/context'
|
|
9
|
+
|
|
10
|
+
type FormValues = {
|
|
11
|
+
userId: string
|
|
12
|
+
deviceId: string
|
|
13
|
+
platform: 'ios' | 'android' | 'web'
|
|
14
|
+
clientAppVersion: string
|
|
15
|
+
osVersion: string
|
|
16
|
+
pushToken: string
|
|
17
|
+
pushProvider: string
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
function trimmedOrUndefined(value: string): string | undefined {
|
|
21
|
+
const trimmed = value.trim()
|
|
22
|
+
return trimmed.length > 0 ? trimmed : undefined
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
export default function DeviceAdminCreatePage() {
|
|
26
|
+
const router = useRouter()
|
|
27
|
+
const t = useT()
|
|
28
|
+
|
|
29
|
+
const fields = React.useMemo<CrudField[]>(() => [
|
|
30
|
+
{ id: 'userId', label: t('devices.form.userId'), type: 'text', required: true, description: t('devices.form.userIdHint') },
|
|
31
|
+
{ id: 'deviceId', label: t('devices.form.deviceId'), type: 'text', required: true },
|
|
32
|
+
{
|
|
33
|
+
id: 'platform',
|
|
34
|
+
label: t('devices.form.platform'),
|
|
35
|
+
type: 'select',
|
|
36
|
+
required: true,
|
|
37
|
+
options: [
|
|
38
|
+
{ value: 'ios', label: 'iOS' },
|
|
39
|
+
{ value: 'android', label: 'Android' },
|
|
40
|
+
{ value: 'web', label: 'Web' },
|
|
41
|
+
],
|
|
42
|
+
},
|
|
43
|
+
{ id: 'clientAppVersion', label: t('devices.form.appVersion'), type: 'text' },
|
|
44
|
+
{ id: 'osVersion', label: t('devices.form.osVersion'), type: 'text' },
|
|
45
|
+
{ id: 'pushToken', label: t('devices.form.pushToken'), type: 'password', description: t('devices.form.pushTokenHint') },
|
|
46
|
+
{ id: 'pushProvider', label: t('devices.form.pushProvider'), type: 'text' },
|
|
47
|
+
], [t])
|
|
48
|
+
|
|
49
|
+
const groups = React.useMemo<CrudFormGroup[]>(() => ([
|
|
50
|
+
{ id: 'details', title: t('devices.form.details'), column: 1, fields: ['userId', 'deviceId', 'platform', 'clientAppVersion', 'osVersion', 'pushToken', 'pushProvider'] },
|
|
51
|
+
]), [t])
|
|
52
|
+
|
|
53
|
+
return (
|
|
54
|
+
<Page>
|
|
55
|
+
<PageBody>
|
|
56
|
+
<CrudForm<FormValues>
|
|
57
|
+
title={t('devices.form.createTitle')}
|
|
58
|
+
backHref="/backend/devices"
|
|
59
|
+
fields={fields}
|
|
60
|
+
groups={groups}
|
|
61
|
+
initialValues={{ userId: '', deviceId: '', platform: 'ios', clientAppVersion: '', osVersion: '', pushToken: '', pushProvider: '' }}
|
|
62
|
+
submitLabel={t('common.create')}
|
|
63
|
+
cancelHref="/backend/devices"
|
|
64
|
+
onSubmit={async (values) => {
|
|
65
|
+
await createCrud('devices/admin/devices', {
|
|
66
|
+
userId: values.userId.trim(),
|
|
67
|
+
deviceId: values.deviceId.trim(),
|
|
68
|
+
platform: values.platform,
|
|
69
|
+
clientAppVersion: trimmedOrUndefined(values.clientAppVersion),
|
|
70
|
+
osVersion: trimmedOrUndefined(values.osVersion),
|
|
71
|
+
pushToken: trimmedOrUndefined(values.pushToken),
|
|
72
|
+
pushProvider: trimmedOrUndefined(values.pushProvider),
|
|
73
|
+
})
|
|
74
|
+
flash(t('devices.form.success.created'), 'success')
|
|
75
|
+
router.push('/backend/devices')
|
|
76
|
+
}}
|
|
77
|
+
/>
|
|
78
|
+
</PageBody>
|
|
79
|
+
</Page>
|
|
80
|
+
)
|
|
81
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import React from 'react'
|
|
2
|
+
|
|
3
|
+
const deviceIcon = React.createElement(
|
|
4
|
+
'svg',
|
|
5
|
+
{ width: 16, height: 16, viewBox: '0 0 24 24', fill: 'none', stroke: 'currentColor', strokeWidth: 2 },
|
|
6
|
+
React.createElement('rect', { x: 5, y: 2, width: 14, height: 20, rx: 2, ry: 2 }),
|
|
7
|
+
React.createElement('path', { d: 'M12 18h.01' }),
|
|
8
|
+
)
|
|
9
|
+
|
|
10
|
+
export const metadata = {
|
|
11
|
+
requireAuth: true,
|
|
12
|
+
requireFeatures: ['devices.admin'],
|
|
13
|
+
pageTitle: 'Devices',
|
|
14
|
+
pageTitleKey: 'devices.nav.devices',
|
|
15
|
+
pageGroup: 'Auth',
|
|
16
|
+
pageGroupKey: 'settings.sections.auth',
|
|
17
|
+
pageOrder: 4,
|
|
18
|
+
icon: deviceIcon,
|
|
19
|
+
pageContext: 'settings' as const,
|
|
20
|
+
breadcrumb: [{ label: 'Devices', labelKey: 'devices.nav.devices' }],
|
|
21
|
+
}
|
|
@@ -0,0 +1,259 @@
|
|
|
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 { Button } from '@open-mercato/ui/primitives/button'
|
|
8
|
+
import { RowActions } from '@open-mercato/ui/backend/RowActions'
|
|
9
|
+
import { apiCall } from '@open-mercato/ui/backend/utils/apiCall'
|
|
10
|
+
import { flash } from '@open-mercato/ui/backend/FlashMessages'
|
|
11
|
+
import { useOrganizationScopeVersion } from '@open-mercato/shared/lib/frontend/useOrganizationScope'
|
|
12
|
+
import { useT } from '@open-mercato/shared/lib/i18n/context'
|
|
13
|
+
import { useConfirmDialog } from '@open-mercato/ui/backend/confirm-dialog'
|
|
14
|
+
import type { FilterDef, FilterValues } from '@open-mercato/ui/backend/FilterBar'
|
|
15
|
+
|
|
16
|
+
type Row = {
|
|
17
|
+
id: string
|
|
18
|
+
user_id: string
|
|
19
|
+
device_id: string
|
|
20
|
+
platform: string
|
|
21
|
+
client_app_version: string | null
|
|
22
|
+
os_version: string | null
|
|
23
|
+
push_provider: string | null
|
|
24
|
+
push_token_updated_at: string | null
|
|
25
|
+
last_seen_at: string | null
|
|
26
|
+
created_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
|
+
function formatDate(value: string | null, t: (key: string) => string) {
|
|
38
|
+
if (!value) return t('devices.list.noValue')
|
|
39
|
+
try {
|
|
40
|
+
const date = new Date(value)
|
|
41
|
+
if (Number.isNaN(date.getTime())) return t('devices.list.noValue')
|
|
42
|
+
return date.toLocaleString()
|
|
43
|
+
} catch {
|
|
44
|
+
return t('devices.list.noValue')
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
export default function DevicesAdminListPage() {
|
|
49
|
+
const [rows, setRows] = React.useState<Row[]>([])
|
|
50
|
+
const [page, setPage] = React.useState(1)
|
|
51
|
+
const [total, setTotal] = React.useState(0)
|
|
52
|
+
const [totalPages, setTotalPages] = React.useState(1)
|
|
53
|
+
const [isLoading, setIsLoading] = React.useState(true)
|
|
54
|
+
const [reloadToken, setReloadToken] = React.useState(0)
|
|
55
|
+
const scopeVersion = useOrganizationScopeVersion()
|
|
56
|
+
const t = useT()
|
|
57
|
+
const { confirm, ConfirmDialogElement } = useConfirmDialog()
|
|
58
|
+
const [filterValues, setFilterValues] = React.useState<FilterValues>({})
|
|
59
|
+
const [userOptions, setUserOptions] = React.useState<{ value: string; label: string; description?: string | null }[]>([])
|
|
60
|
+
|
|
61
|
+
// Devices admins may not hold auth.users.list; degrade gracefully (no options) instead of redirecting.
|
|
62
|
+
const loadUserOptions = React.useCallback(async (query?: string) => {
|
|
63
|
+
const params = new URLSearchParams()
|
|
64
|
+
params.set('page', '1')
|
|
65
|
+
params.set('pageSize', '20')
|
|
66
|
+
if (query && query.trim().length > 0) params.set('search', query.trim())
|
|
67
|
+
const call = await apiCall<{ items?: { id: string; name?: string | null; email?: string | null }[] }>(
|
|
68
|
+
`/api/auth/users?${params.toString()}`,
|
|
69
|
+
{ headers: { 'x-om-forbidden-redirect': '0' } },
|
|
70
|
+
{ fallback: null },
|
|
71
|
+
).catch(() => null)
|
|
72
|
+
if (!call || !call.ok) return []
|
|
73
|
+
const next = (call.result?.items ?? []).flatMap((item) => {
|
|
74
|
+
if (!item || typeof item.id !== 'string' || !item.id.trim()) return []
|
|
75
|
+
const name = typeof item.name === 'string' && item.name.trim() ? item.name.trim() : null
|
|
76
|
+
const email = typeof item.email === 'string' && item.email.trim() ? item.email.trim() : null
|
|
77
|
+
const label = name ?? email ?? item.id
|
|
78
|
+
return [{ value: item.id, label, description: email && email !== label ? email : null }]
|
|
79
|
+
})
|
|
80
|
+
setUserOptions((prev) => {
|
|
81
|
+
const map = new Map(prev.map((opt) => [opt.value, opt]))
|
|
82
|
+
for (const opt of next) map.set(opt.value, opt)
|
|
83
|
+
return Array.from(map.values())
|
|
84
|
+
})
|
|
85
|
+
return next
|
|
86
|
+
}, [])
|
|
87
|
+
|
|
88
|
+
React.useEffect(() => { void loadUserOptions() }, [loadUserOptions, scopeVersion])
|
|
89
|
+
|
|
90
|
+
// Reuse the picker cache to label the User column; rows whose owner isn't cached still link by id.
|
|
91
|
+
const userLabelById = React.useMemo(
|
|
92
|
+
() => new Map(userOptions.map((opt) => [opt.value, opt.label])),
|
|
93
|
+
[userOptions],
|
|
94
|
+
)
|
|
95
|
+
|
|
96
|
+
const filters = React.useMemo<FilterDef[]>(() => [
|
|
97
|
+
{
|
|
98
|
+
id: 'platform',
|
|
99
|
+
label: t('devices.list.columns.platform'),
|
|
100
|
+
type: 'select',
|
|
101
|
+
options: [
|
|
102
|
+
{ value: 'ios', label: 'iOS' },
|
|
103
|
+
{ value: 'android', label: 'Android' },
|
|
104
|
+
{ value: 'web', label: 'Web' },
|
|
105
|
+
],
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
id: 'userId',
|
|
109
|
+
label: t('devices.list.columns.user'),
|
|
110
|
+
type: 'combobox',
|
|
111
|
+
options: userOptions,
|
|
112
|
+
loadOptions: loadUserOptions,
|
|
113
|
+
},
|
|
114
|
+
], [t, userOptions, loadUserOptions])
|
|
115
|
+
|
|
116
|
+
React.useEffect(() => {
|
|
117
|
+
let cancelled = false
|
|
118
|
+
async function load() {
|
|
119
|
+
setIsLoading(true)
|
|
120
|
+
try {
|
|
121
|
+
const params = new URLSearchParams()
|
|
122
|
+
params.set('page', String(page))
|
|
123
|
+
params.set('pageSize', '50')
|
|
124
|
+
const platform = typeof filterValues.platform === 'string' ? filterValues.platform.trim() : ''
|
|
125
|
+
const userId = typeof filterValues.userId === 'string' ? filterValues.userId.trim() : ''
|
|
126
|
+
if (platform) params.set('platform', platform)
|
|
127
|
+
if (userId) params.set('userId', userId)
|
|
128
|
+
const fallback: ResponsePayload = { items: [], total: 0, page, totalPages: 1 }
|
|
129
|
+
const call = await apiCall<ResponsePayload>(`/api/devices/admin/devices?${params.toString()}`, undefined, { fallback })
|
|
130
|
+
if (!call.ok) {
|
|
131
|
+
const errorPayload = call.result as { error?: string } | undefined
|
|
132
|
+
const message = typeof errorPayload?.error === 'string' ? errorPayload.error : t('devices.list.error.loadFailed')
|
|
133
|
+
flash(message, 'error')
|
|
134
|
+
return
|
|
135
|
+
}
|
|
136
|
+
const payload = call.result ?? fallback
|
|
137
|
+
if (!cancelled) {
|
|
138
|
+
setRows(Array.isArray(payload.items) ? payload.items : [])
|
|
139
|
+
setTotal(payload.total || 0)
|
|
140
|
+
setTotalPages(payload.totalPages || 1)
|
|
141
|
+
}
|
|
142
|
+
} catch (error) {
|
|
143
|
+
if (!cancelled) {
|
|
144
|
+
const message = error instanceof Error ? error.message : t('devices.list.error.loadFailed')
|
|
145
|
+
flash(message, 'error')
|
|
146
|
+
}
|
|
147
|
+
} finally {
|
|
148
|
+
if (!cancelled) setIsLoading(false)
|
|
149
|
+
}
|
|
150
|
+
}
|
|
151
|
+
load()
|
|
152
|
+
return () => { cancelled = true }
|
|
153
|
+
}, [page, reloadToken, scopeVersion, filterValues, t])
|
|
154
|
+
|
|
155
|
+
const handleDeactivate = React.useCallback(async (row: Row) => {
|
|
156
|
+
const confirmed = await confirm({
|
|
157
|
+
title: t('devices.list.confirmDeactivate'),
|
|
158
|
+
variant: 'destructive',
|
|
159
|
+
})
|
|
160
|
+
if (!confirmed) return
|
|
161
|
+
try {
|
|
162
|
+
// optimistic-lock-exempt: device deactivate is an idempotent soft-delete of a registry row, not a concurrent field edit
|
|
163
|
+
const call = await apiCall<{ error?: string }>(
|
|
164
|
+
`/api/devices/admin/devices/${encodeURIComponent(row.id)}`,
|
|
165
|
+
{ method: 'DELETE' },
|
|
166
|
+
{ fallback: null },
|
|
167
|
+
)
|
|
168
|
+
if (!call.ok) {
|
|
169
|
+
const errorPayload = call.result as { error?: string } | undefined
|
|
170
|
+
const message = typeof errorPayload?.error === 'string' ? errorPayload.error : t('devices.list.error.deactivateFailed')
|
|
171
|
+
flash(message, 'error')
|
|
172
|
+
return
|
|
173
|
+
}
|
|
174
|
+
flash(t('devices.list.success.deactivated'), 'success')
|
|
175
|
+
setReloadToken((token) => token + 1)
|
|
176
|
+
} catch (error) {
|
|
177
|
+
const message = error instanceof Error ? error.message : t('devices.list.error.deactivateFailed')
|
|
178
|
+
flash(message, 'error')
|
|
179
|
+
}
|
|
180
|
+
}, [confirm, t])
|
|
181
|
+
|
|
182
|
+
const columns = React.useMemo<ColumnDef<Row>[]>(() => [
|
|
183
|
+
{
|
|
184
|
+
accessorKey: 'device_id',
|
|
185
|
+
header: t('devices.list.columns.device'),
|
|
186
|
+
cell: ({ row }) => <code className="text-xs">{row.original.device_id}</code>,
|
|
187
|
+
},
|
|
188
|
+
{ accessorKey: 'platform', header: t('devices.list.columns.platform') },
|
|
189
|
+
{
|
|
190
|
+
accessorKey: 'user_id',
|
|
191
|
+
header: t('devices.list.columns.user'),
|
|
192
|
+
cell: ({ row }) => {
|
|
193
|
+
const userId = row.original.user_id
|
|
194
|
+
const label = userLabelById.get(userId)
|
|
195
|
+
return (
|
|
196
|
+
// Stop the click bubbling to the row, whose default action navigates to the device edit page.
|
|
197
|
+
<Link
|
|
198
|
+
href={`/backend/users/${encodeURIComponent(userId)}/edit`}
|
|
199
|
+
className="text-primary hover:underline"
|
|
200
|
+
onClick={(e) => e.stopPropagation()}
|
|
201
|
+
>
|
|
202
|
+
{label ?? <code className="text-xs">{userId}</code>}
|
|
203
|
+
</Link>
|
|
204
|
+
)
|
|
205
|
+
},
|
|
206
|
+
},
|
|
207
|
+
{
|
|
208
|
+
accessorKey: 'client_app_version',
|
|
209
|
+
header: t('devices.list.columns.appVersion'),
|
|
210
|
+
cell: ({ row }) => row.original.client_app_version || t('devices.list.noValue'),
|
|
211
|
+
},
|
|
212
|
+
{
|
|
213
|
+
accessorKey: 'os_version',
|
|
214
|
+
header: t('devices.list.columns.osVersion'),
|
|
215
|
+
cell: ({ row }) => row.original.os_version || t('devices.list.noValue'),
|
|
216
|
+
},
|
|
217
|
+
{
|
|
218
|
+
accessorKey: 'push_provider',
|
|
219
|
+
header: t('devices.list.columns.pushProvider'),
|
|
220
|
+
cell: ({ row }) => row.original.push_provider || t('devices.list.noValue'),
|
|
221
|
+
},
|
|
222
|
+
{
|
|
223
|
+
accessorKey: 'last_seen_at',
|
|
224
|
+
header: t('devices.list.columns.lastSeen'),
|
|
225
|
+
cell: ({ row }) => formatDate(row.original.last_seen_at, t),
|
|
226
|
+
},
|
|
227
|
+
], [t, userLabelById])
|
|
228
|
+
|
|
229
|
+
return (
|
|
230
|
+
<Page>
|
|
231
|
+
<PageBody>
|
|
232
|
+
<DataTable
|
|
233
|
+
title={t('devices.list.title')}
|
|
234
|
+
actions={(
|
|
235
|
+
<Button asChild>
|
|
236
|
+
<Link href="/backend/devices/create">{t('devices.list.actions.register')}</Link>
|
|
237
|
+
</Button>
|
|
238
|
+
)}
|
|
239
|
+
columns={columns}
|
|
240
|
+
data={rows}
|
|
241
|
+
filters={filters}
|
|
242
|
+
filterValues={filterValues}
|
|
243
|
+
onFiltersApply={(values) => { setFilterValues(values); setPage(1) }}
|
|
244
|
+
onFiltersClear={() => { setFilterValues({}); setPage(1) }}
|
|
245
|
+
perspective={{ tableId: 'devices.list' }}
|
|
246
|
+
rowActions={(row) => (
|
|
247
|
+
<RowActions items={[
|
|
248
|
+
{ id: 'edit', label: t('devices.list.actions.edit'), href: `/backend/devices/${row.id}` },
|
|
249
|
+
{ id: 'deactivate', label: t('devices.list.actions.deactivate'), destructive: true, onSelect: () => { void handleDeactivate(row) } },
|
|
250
|
+
]} />
|
|
251
|
+
)}
|
|
252
|
+
pagination={{ page, pageSize: 50, total, totalPages, onPageChange: setPage }}
|
|
253
|
+
isLoading={isLoading}
|
|
254
|
+
/>
|
|
255
|
+
</PageBody>
|
|
256
|
+
{ConfirmDialogElement}
|
|
257
|
+
</Page>
|
|
258
|
+
)
|
|
259
|
+
}
|
|
@@ -0,0 +1,126 @@
|
|
|
1
|
+
import type { EntityManager } from '@mikro-orm/postgresql'
|
|
2
|
+
import { registerCommand, type CommandHandler } from '@open-mercato/shared/lib/commands'
|
|
3
|
+
import { ensureOrganizationScope, ensureTenantScope } from '@open-mercato/shared/lib/commands/scope'
|
|
4
|
+
import { extractUndoPayload } from '@open-mercato/shared/lib/commands/undo'
|
|
5
|
+
import { emitCrudSideEffects, emitCrudUndoSideEffects } from '@open-mercato/shared/lib/commands/helpers'
|
|
6
|
+
import { withAtomicFlush } from '@open-mercato/shared/lib/commands/flush'
|
|
7
|
+
import { assertFound } from '@open-mercato/shared/lib/crud/errors'
|
|
8
|
+
import { findOneWithDecryption } from '@open-mercato/shared/lib/encryption/find'
|
|
9
|
+
import type { DataEngine } from '@open-mercato/shared/lib/data/engine'
|
|
10
|
+
import { UserDevice } from '../data/entities'
|
|
11
|
+
import { deactivateDeviceCommandSchema, type DeactivateDeviceCommandInput } from '../data/validators'
|
|
12
|
+
import { emitDevicesEvent } from '../events'
|
|
13
|
+
import {
|
|
14
|
+
applySnapshot,
|
|
15
|
+
deviceEvents,
|
|
16
|
+
deviceIndexer,
|
|
17
|
+
serializeDevice,
|
|
18
|
+
type DeviceSnapshot,
|
|
19
|
+
type DeviceUndoPayload,
|
|
20
|
+
} from './shared'
|
|
21
|
+
|
|
22
|
+
const deactivateDeviceCommand: CommandHandler<DeactivateDeviceCommandInput, { id: string }> = {
|
|
23
|
+
id: 'devices.user_devices.deactivate',
|
|
24
|
+
async prepare(rawInput, ctx) {
|
|
25
|
+
const parsed = deactivateDeviceCommandSchema.parse(rawInput)
|
|
26
|
+
// Enforce tenant scope and constrain the snapshot lookup to the caller's tenant.
|
|
27
|
+
ensureTenantScope(ctx, parsed.tenantId)
|
|
28
|
+
const em = (ctx.container.resolve('em') as EntityManager).fork()
|
|
29
|
+
// No fallback decryption scope: `UserDevice` always carries its own organization_id, which
|
|
30
|
+
// `decryptEntitiesWithFallbackScope` resolves first — matching loadExistingDevice in shared.ts.
|
|
31
|
+
const device = await findOneWithDecryption(
|
|
32
|
+
em,
|
|
33
|
+
UserDevice,
|
|
34
|
+
{ id: parsed.id, tenantId: parsed.tenantId, deletedAt: null },
|
|
35
|
+
)
|
|
36
|
+
return device ? { before: serializeDevice(device) } : {}
|
|
37
|
+
},
|
|
38
|
+
async execute(rawInput, ctx) {
|
|
39
|
+
const parsed = deactivateDeviceCommandSchema.parse(rawInput)
|
|
40
|
+
const em = (ctx.container.resolve('em') as EntityManager).fork()
|
|
41
|
+
// Scope the load to the caller's tenant (mirroring `prepare`) instead of loading by id alone — a
|
|
42
|
+
// bare id lookup would let a cross-tenant id resolve a row before the post-load tenant check runs.
|
|
43
|
+
const device = assertFound(
|
|
44
|
+
await findOneWithDecryption(em, UserDevice, { id: parsed.id, tenantId: parsed.tenantId, deletedAt: null }),
|
|
45
|
+
'Device not found',
|
|
46
|
+
)
|
|
47
|
+
ensureTenantScope(ctx, device.tenantId)
|
|
48
|
+
// Enforce the ORGANIZATION scope the caller handed us instead of leaving it unread. Without this the
|
|
49
|
+
// org context threaded through the push "unregister null-org" path — and any org-scoped admin
|
|
50
|
+
// dispatch — is silently ignored, so a caller scoped to org A could deactivate an org-B device in
|
|
51
|
+
// the same tenant. Guard on a non-null org: tenant-scoped devices (org = null) have nothing to
|
|
52
|
+
// constrain, and the system/worker path passes `selectedOrganizationId = device.organizationId`,
|
|
53
|
+
// which `ensureOrganizationScope` accepts.
|
|
54
|
+
if (device.organizationId) ensureOrganizationScope(ctx, device.organizationId)
|
|
55
|
+
|
|
56
|
+
await withAtomicFlush(em, [() => { device.deletedAt = new Date() }], { transaction: true })
|
|
57
|
+
|
|
58
|
+
const de = ctx.container.resolve('dataEngine') as DataEngine
|
|
59
|
+
await emitCrudSideEffects({
|
|
60
|
+
dataEngine: de,
|
|
61
|
+
action: 'deleted',
|
|
62
|
+
entity: device,
|
|
63
|
+
identifiers: {
|
|
64
|
+
id: device.id,
|
|
65
|
+
tenantId: device.tenantId,
|
|
66
|
+
organizationId: device.organizationId ?? null,
|
|
67
|
+
},
|
|
68
|
+
indexer: deviceIndexer,
|
|
69
|
+
events: deviceEvents,
|
|
70
|
+
})
|
|
71
|
+
await emitDevicesEvent(
|
|
72
|
+
'devices.user_device.deactivated',
|
|
73
|
+
{
|
|
74
|
+
id: device.id,
|
|
75
|
+
tenantId: device.tenantId,
|
|
76
|
+
organizationId: device.organizationId ?? null,
|
|
77
|
+
userId: device.userId,
|
|
78
|
+
deviceId: device.deviceId,
|
|
79
|
+
},
|
|
80
|
+
{ persistent: true },
|
|
81
|
+
)
|
|
82
|
+
|
|
83
|
+
return { id: device.id }
|
|
84
|
+
},
|
|
85
|
+
buildLog: async ({ snapshots }) => {
|
|
86
|
+
const before = (snapshots.before as DeviceSnapshot | undefined) ?? null
|
|
87
|
+
if (!before) return null
|
|
88
|
+
return {
|
|
89
|
+
actionLabel: 'Deactivate device',
|
|
90
|
+
resourceKind: 'devices.user_device',
|
|
91
|
+
resourceId: before.id,
|
|
92
|
+
tenantId: before.tenantId,
|
|
93
|
+
organizationId: before.organizationId,
|
|
94
|
+
snapshotBefore: before,
|
|
95
|
+
payload: {
|
|
96
|
+
undo: { before } satisfies DeviceUndoPayload,
|
|
97
|
+
},
|
|
98
|
+
}
|
|
99
|
+
},
|
|
100
|
+
undo: async ({ logEntry, ctx }) => {
|
|
101
|
+
const payload = extractUndoPayload<DeviceUndoPayload>(logEntry)
|
|
102
|
+
const before = payload?.before
|
|
103
|
+
if (!before) return
|
|
104
|
+
const em = (ctx.container.resolve('em') as EntityManager).fork()
|
|
105
|
+
const device = await findOneWithDecryption(em, UserDevice, { id: before.id })
|
|
106
|
+
if (!device) return
|
|
107
|
+
|
|
108
|
+
await withAtomicFlush(em, [() => applySnapshot(device, before)], { transaction: true })
|
|
109
|
+
|
|
110
|
+
const de = ctx.container.resolve('dataEngine') as DataEngine
|
|
111
|
+
await emitCrudUndoSideEffects({
|
|
112
|
+
dataEngine: de,
|
|
113
|
+
action: 'created',
|
|
114
|
+
entity: device,
|
|
115
|
+
identifiers: {
|
|
116
|
+
id: device.id,
|
|
117
|
+
tenantId: device.tenantId,
|
|
118
|
+
organizationId: device.organizationId ?? null,
|
|
119
|
+
},
|
|
120
|
+
indexer: deviceIndexer,
|
|
121
|
+
events: deviceEvents,
|
|
122
|
+
})
|
|
123
|
+
},
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
registerCommand(deactivateDeviceCommand)
|