@asteby/metacore-runtime-react 36.1.0 → 37.0.1

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.
@@ -64,6 +64,7 @@ import { toast } from 'sonner'
64
64
  import { Progress } from './dialogs/_primitives'
65
65
  import { useMetadataCache } from './metadata-cache'
66
66
  import { useApi, useCurrentBranch } from './api-context'
67
+ import { useRealtimeDefault, useRealtimeTick } from './realtime-context'
67
68
  import type { ColumnFilterConfig, GetDynamicColumns } from './dynamic-columns-shim'
68
69
  import { defaultGetDynamicColumns, DATE_CELL_TYPES, aggregateOf, formatAggregateTotal } from './dynamic-columns'
69
70
  import { useFacetLoaders, isLongTextColumn } from './use-facet-loaders'
@@ -176,6 +177,17 @@ export interface DynamicTableProps {
176
177
  /** Hide the export action on this view. See `hideImport`. */
177
178
  hideExport?: boolean
178
179
  hiddenColumns?: string[]
180
+ /**
181
+ * Row-action ALLOWLIST for this table instance, by action key (manifest
182
+ * v3 NavItem.actions, carried through the host's nav item for this route).
183
+ * When set, only these row actions render — even though the model may
184
+ * declare more. Lets two views of the SAME model differ: a generic list
185
+ * keeps every action, while a purpose-built screen (e.g. a credit-approval
186
+ * queue) shows only authorize_credit/reject_credit instead of every action
187
+ * SalesOrder declares (Generar factura, Cancelar, etc. included).
188
+ * Undefined → every row action the model declares (unchanged default).
189
+ */
190
+ allowedActionKeys?: string[]
179
191
  onAction?: (action: string, row: any) => void
180
192
  /**
181
193
  * Called when the user clicks anywhere on a data row (not on a checkbox,
@@ -185,6 +197,13 @@ export interface DynamicTableProps {
185
197
  */
186
198
  onRowClick?: (row: any) => void
187
199
  refreshTrigger?: any
200
+ /**
201
+ * Refetch when the host's realtime client reports a data event for this
202
+ * model (created/updated/deleted by anyone in the org, or a `resync`).
203
+ * Off by default; `<RealtimeProvider defaultRealtime>` turns it on for
204
+ * every table, and an explicit prop always wins. No-op without a client.
205
+ */
206
+ realtime?: boolean
188
207
  defaultFilters?: Record<string, any>
189
208
  extraColumns?: ColumnDef<any>[]
190
209
  /**
@@ -238,9 +257,11 @@ export function DynamicTable({
238
257
  hideImport,
239
258
  hideExport,
240
259
  hiddenColumns = [],
260
+ allowedActionKeys,
241
261
  onAction,
242
262
  onRowClick,
243
263
  refreshTrigger,
264
+ realtime: realtimeProp,
244
265
  defaultFilters,
245
266
  extraColumns = [],
246
267
  getDynamicColumns = defaultGetDynamicColumns,
@@ -255,6 +276,13 @@ export function DynamicTable({
255
276
  const { t, i18n } = useTranslation()
256
277
  const api = useApi()
257
278
  const currentBranch = useCurrentBranch()
279
+ // Realtime refetch (opt-in): a debounced counter that bumps on every
280
+ // DATA_EVENT for this model and rides the same deps as `refreshTrigger`.
281
+ const realtimeDefault = useRealtimeDefault()
282
+ const realtimeTick = useRealtimeTick({
283
+ models: [model],
284
+ enabled: realtimeProp ?? realtimeDefault,
285
+ })
258
286
 
259
287
  const prevBranchId = useRef(currentBranch?.id)
260
288
 
@@ -742,7 +770,8 @@ export function DynamicTable({
742
770
  } finally {
743
771
  setLoadingData(false)
744
772
  }
745
- }, [model, metadata, pagination, buildFilterParams, refreshTrigger, endpoint, currentBranch?.id, api, enableUrlSync])
773
+ // eslint-disable-next-line react-hooks/exhaustive-deps
774
+ }, [model, metadata, pagination, buildFilterParams, refreshTrigger, realtimeTick, endpoint, currentBranch?.id, api, enableUrlSync])
746
775
 
747
776
  // Columns whose metadata opts into a footer total (display_config.aggregate
748
777
  // → styleConfig.aggregate). When empty, no footer row is rendered and no
@@ -911,8 +940,9 @@ export function DynamicTable({
911
940
  // matching the classic path (fetchData carries refreshTrigger in its
912
941
  // deps). Without it the comment above lied: infinite lists silently
913
942
  // failed to reload after a create ("a veces no recarga la tabla").
943
+ // realtimeTick plays the same role for data events (see the `realtime` prop).
914
944
  // eslint-disable-next-line react-hooks/exhaustive-deps
915
- }, [infiniteScroll, metadata, filterSignature, refreshTrigger])
945
+ }, [infiniteScroll, metadata, filterSignature, refreshTrigger, realtimeTick])
916
946
 
917
947
  const handleRefresh = useCallback(() => {
918
948
  // Infinite mode owns its own list: refresh reloads page 1 and drops the
@@ -1124,15 +1154,27 @@ export function DynamicTable({
1124
1154
  // Row-action column only renders per-row actions. Table-level placements
1125
1155
  // ("table"/"create") are surfaced by <ModelActionToolbar> at the page
1126
1156
  // level, so strip them here to avoid a meaningless per-row button.
1127
- const rowMetadata = viewMetadata.actions?.some((a) => a.placement === 'table' || a.placement === 'create')
1128
- ? { ...viewMetadata, actions: viewMetadata.actions.filter((a) => !a.placement || a.placement === 'row') }
1129
- : viewMetadata
1157
+ // `allowedActionKeys`, when given, further narrows the row set to a
1158
+ // per-VIEW allowlist two nav entries on the same model (a generic
1159
+ // list vs. a purpose-built approval queue) can then show different
1160
+ // actions instead of every action the model declares.
1161
+ const rowMetadata = (() => {
1162
+ let actions = viewMetadata.actions
1163
+ if (actions?.some((a) => a.placement === 'table' || a.placement === 'create')) {
1164
+ actions = actions.filter((a) => !a.placement || a.placement === 'row')
1165
+ }
1166
+ if (allowedActionKeys && actions) {
1167
+ const allowed = new Set(allowedActionKeys)
1168
+ actions = actions.filter((a) => allowed.has(a.key))
1169
+ }
1170
+ return actions === viewMetadata.actions ? viewMetadata : { ...viewMetadata, actions }
1171
+ })()
1130
1172
  const baseColumns = getDynamicColumns(rowMetadata, handleInternalAction, t, i18n.language, columnFilterConfigs, timeZone, currency)
1131
1173
  const filteredBase = baseColumns.filter((col: ColumnDef<any>) => !hiddenColumns.includes(col.id as string))
1132
1174
  const actionsCol = filteredBase.find((c: ColumnDef<any>) => c.id === 'actions')
1133
1175
  const otherCols = filteredBase.filter((c: ColumnDef<any>) => c.id !== 'actions')
1134
1176
  return [...otherCols, ...extraColumns, ...(actionsCol ? [actionsCol] : [])]
1135
- }, [viewMetadata, handleInternalAction, hiddenColumns, extraColumns, t, i18n.language, columnFilterConfigs, getDynamicColumns, timeZone, currency])
1177
+ }, [viewMetadata, handleInternalAction, hiddenColumns, allowedActionKeys, extraColumns, t, i18n.language, columnFilterConfigs, getDynamicColumns, timeZone, currency])
1136
1178
 
1137
1179
  const filters = useMemo(() => [], [])
1138
1180
 
package/src/index.ts CHANGED
@@ -213,6 +213,21 @@ export * from './print-document-button'
213
213
  export * from './use-org-document-templates'
214
214
  export * from './document-template-editor'
215
215
  export * from './metadata-cache'
216
+ export {
217
+ RealtimeProvider,
218
+ useRealtimeClient,
219
+ useRealtimeDefault,
220
+ useRealtime,
221
+ useRealtimeStatus,
222
+ useRealtimeInvalidate,
223
+ useRealtimeTick,
224
+ queryKeyMatchesEvent,
225
+ type RealtimeContextValue,
226
+ type RealtimeProviderProps,
227
+ type UseRealtimeOptions,
228
+ type UseRealtimeInvalidateOptions,
229
+ type UseRealtimeTickOptions,
230
+ } from './realtime-context'
216
231
  export {
217
232
  ADDON_MANIFEST_CHANGED_TYPE,
218
233
  wireHotSwapInvalidation,
@@ -250,7 +265,8 @@ export {
250
265
  resolveRelationLabel,
251
266
  type DynamicColumnsHelpers,
252
267
  } from './dynamic-columns'
253
- export { humanizeToken } from './dynamic-columns-helpers'
268
+ export { humanizeToken, translateMetadataLabel } from './dynamic-columns-helpers'
269
+ export type { MetadataTranslator } from './dynamic-columns-helpers'
254
270
  export {
255
271
  UrlChip,
256
272
  FileChip,
@@ -0,0 +1,248 @@
1
+ // realtime-context — React surface over the host's RealtimeAPI
2
+ // (`@asteby/metacore-sdk`): a provider the host mounts once, `useRealtime`
3
+ // for handlers, `useRealtimeInvalidate` to refresh react-query caches, and
4
+ // `useRealtimeTick` — the opt-in refetch signal `DynamicTable` /
5
+ // `DynamicKanban` consume through their `realtime` prop.
6
+ //
7
+ // Module-federation note: a federated addon may run its OWN copy of this
8
+ // module, in which case React context from the host is invisible to it. Every
9
+ // hook therefore accepts an explicit `client` (pass `host.realtime` or
10
+ // `api.realtime`) that wins over the context — the plain object crosses the
11
+ // federation boundary, the context does not.
12
+ //
13
+ // react-query: `useRealtimeInvalidate` uses `useQueryClient()` so it always
14
+ // targets the QueryClient the host mounted (single instance per page).
15
+ import { createContext, useCallback, useContext, useEffect, useMemo, useRef, useState } from 'react'
16
+ import type { QueryKey } from '@tanstack/react-query'
17
+ import { useQueryClient } from '@tanstack/react-query'
18
+ import type {
19
+ DataEvent,
20
+ DataEventAction,
21
+ DataEventHandler,
22
+ RealtimeAPI,
23
+ RealtimeStatus,
24
+ RealtimeSubscribeOptions,
25
+ } from '@asteby/metacore-sdk'
26
+
27
+ export interface RealtimeContextValue {
28
+ /** Host-provided client, or null when the host has no realtime. */
29
+ client: RealtimeAPI | null
30
+ /**
31
+ * When true, `DynamicTable` / `DynamicKanban` refetch on data events
32
+ * unless a component passes `realtime={false}`. Default false (opt-in).
33
+ */
34
+ defaultRealtime: boolean
35
+ }
36
+
37
+ const RealtimeContext = createContext<RealtimeContextValue>({ client: null, defaultRealtime: false })
38
+
39
+ export interface RealtimeProviderProps {
40
+ client: RealtimeAPI | null | undefined
41
+ /** Turn realtime refetch on for every dynamic table/kanban below. Default false. */
42
+ defaultRealtime?: boolean
43
+ children: React.ReactNode
44
+ }
45
+
46
+ /**
47
+ * Mount once, inside the host's WebSocket provider and QueryClientProvider.
48
+ * `client` may be null while the host is still connecting — hooks become
49
+ * no-ops and re-subscribe when a client appears.
50
+ */
51
+ export function RealtimeProvider({ client, defaultRealtime = false, children }: RealtimeProviderProps) {
52
+ const value = useMemo<RealtimeContextValue>(
53
+ () => ({ client: client ?? null, defaultRealtime }),
54
+ [client, defaultRealtime],
55
+ )
56
+ return <RealtimeContext.Provider value={value}>{children}</RealtimeContext.Provider>
57
+ }
58
+
59
+ /** The host realtime client from context (null when none is mounted). */
60
+ export function useRealtimeClient(explicit?: RealtimeAPI | null): RealtimeAPI | null {
61
+ const ctx = useContext(RealtimeContext)
62
+ return explicit ?? ctx.client
63
+ }
64
+
65
+ /** Whether dynamic components should refetch on data events by default. */
66
+ export function useRealtimeDefault(): boolean {
67
+ return useContext(RealtimeContext).defaultRealtime
68
+ }
69
+
70
+ export interface UseRealtimeOptions extends RealtimeSubscribeOptions {
71
+ /** Pass `host.realtime` / `api.realtime` to bypass the context. */
72
+ client?: RealtimeAPI | null
73
+ /** Set false to pause the subscription without unmounting. Default true. */
74
+ enabled?: boolean
75
+ }
76
+
77
+ /**
78
+ * Subscribe to data events for the given models. The handler is kept in a
79
+ * ref so callers don't need to memoise it; the subscription is torn down on
80
+ * unmount and re-created when models/events/client change.
81
+ *
82
+ * useRealtime({ models: ['SalesOrder'], client: host.realtime }, (e) => {
83
+ * if (e.action === 'resync' || e.id === currentId) refetch()
84
+ * })
85
+ */
86
+ export function useRealtime(options: UseRealtimeOptions, handler: DataEventHandler): void {
87
+ const client = useRealtimeClient(options.client)
88
+ const handlerRef = useRef(handler)
89
+ handlerRef.current = handler
90
+ const enabled = options.enabled ?? true
91
+ const modelsKey = (options.models ?? []).map((m) => m.trim().toLowerCase()).sort().join('|')
92
+ const eventsKey = (options.events ?? []).slice().sort().join('|')
93
+
94
+ useEffect(() => {
95
+ if (!client || !enabled || !modelsKey) return
96
+ const models = modelsKey.split('|')
97
+ const events = eventsKey ? (eventsKey.split('|') as DataEventAction[]) : undefined
98
+ let off: () => void = () => {}
99
+ try {
100
+ off = client.subscribe({ models, events }, (event) => handlerRef.current(event))
101
+ } catch {
102
+ /* a host client must not throw, but never take the page down */
103
+ }
104
+ return off
105
+ }, [client, enabled, modelsKey, eventsKey])
106
+ }
107
+
108
+ /** Live status of the realtime client ('closed' when none). */
109
+ export function useRealtimeStatus(explicit?: RealtimeAPI | null): RealtimeStatus {
110
+ const client = useRealtimeClient(explicit)
111
+ const [status, setStatus] = useState<RealtimeStatus>(() => client?.status() ?? 'closed')
112
+ useEffect(() => {
113
+ if (!client) {
114
+ setStatus('closed')
115
+ return
116
+ }
117
+ setStatus(client.status())
118
+ if (!client.onStatus) return
119
+ return client.onStatus(setStatus)
120
+ }, [client])
121
+ return status
122
+ }
123
+
124
+ /** Default matcher: any string segment of the query key (case-insensitive)
125
+ * equals the event's model, table or `addon.model`, or contains the model
126
+ * as a path segment (`/data/sales_orders`). */
127
+ export function queryKeyMatchesEvent(queryKey: QueryKey, event: DataEvent): boolean {
128
+ const needles = [event.model, event.table ?? '', `${event.addon}.${event.model}`]
129
+ .map((s) => s.toLowerCase())
130
+ .filter(Boolean)
131
+ const parts = flattenKey(queryKey)
132
+ for (const part of parts) {
133
+ const p = part.toLowerCase()
134
+ for (const n of needles) {
135
+ if (p === n) return true
136
+ // '/data/sales_orders?x=1' or 'pos/SalesOrder' style segments.
137
+ const segs = p.split(/[/?&=]/)
138
+ if (segs.includes(n)) return true
139
+ }
140
+ }
141
+ return false
142
+ }
143
+
144
+ function flattenKey(key: QueryKey, out: string[] = [], depth = 0): string[] {
145
+ if (depth > 4) return out
146
+ for (const item of key as unknown[]) {
147
+ if (typeof item === 'string') out.push(item)
148
+ else if (Array.isArray(item)) flattenKey(item as QueryKey, out, depth + 1)
149
+ else if (item && typeof item === 'object') {
150
+ for (const v of Object.values(item as Record<string, unknown>)) {
151
+ if (typeof v === 'string') out.push(v)
152
+ }
153
+ }
154
+ }
155
+ return out
156
+ }
157
+
158
+ export interface UseRealtimeInvalidateOptions extends UseRealtimeOptions {
159
+ /** Override which queries a given event invalidates. Default: `queryKeyMatchesEvent`. */
160
+ match?: (queryKey: QueryKey, event: DataEvent) => boolean
161
+ /** Coalesce bursts before invalidating (ms). Default 250. */
162
+ debounceMs?: number
163
+ /** Observe each event after it was scheduled for invalidation. */
164
+ onEvent?: DataEventHandler
165
+ }
166
+
167
+ /**
168
+ * Invalidate every react-query query whose key mentions the event's model /
169
+ * table (see `queryKeyMatchesEvent`). Uses the host's QueryClient. Bursts
170
+ * are debounced so a coalesced frame storm becomes a single refetch round.
171
+ *
172
+ * useRealtimeInvalidate({ models: ['SalesOrder', 'sales_order_items'], client: host.realtime })
173
+ */
174
+ export function useRealtimeInvalidate(options: UseRealtimeInvalidateOptions): void {
175
+ const queryClient = useQueryClient()
176
+ const { match = queryKeyMatchesEvent, debounceMs = 250, onEvent } = options
177
+ const pendingRef = useRef<DataEvent[]>([])
178
+ const timerRef = useRef<ReturnType<typeof setTimeout> | null>(null)
179
+ const matchRef = useRef(match)
180
+ matchRef.current = match
181
+ const onEventRef = useRef(onEvent)
182
+ onEventRef.current = onEvent
183
+
184
+ const flush = useCallback(() => {
185
+ timerRef.current = null
186
+ const batch = pendingRef.current
187
+ pendingRef.current = []
188
+ if (batch.length === 0) return
189
+ void queryClient.invalidateQueries({
190
+ predicate: (query) => batch.some((event) => matchRef.current(query.queryKey, event)),
191
+ })
192
+ }, [queryClient])
193
+
194
+ useRealtime(options, (event) => {
195
+ pendingRef.current.push(event)
196
+ onEventRef.current?.(event)
197
+ if (timerRef.current) return
198
+ timerRef.current = setTimeout(flush, debounceMs)
199
+ })
200
+
201
+ useEffect(
202
+ () => () => {
203
+ if (timerRef.current) clearTimeout(timerRef.current)
204
+ },
205
+ [],
206
+ )
207
+ }
208
+
209
+ export interface UseRealtimeTickOptions {
210
+ /** Models/tables to watch. */
211
+ models: string[]
212
+ /** Explicit client (federated addons). */
213
+ client?: RealtimeAPI | null
214
+ /** Master switch — the caller resolves prop vs provider default. */
215
+ enabled: boolean
216
+ /** Coalesce bursts before ticking (ms). Default 300. */
217
+ debounceMs?: number
218
+ }
219
+
220
+ /**
221
+ * A counter that increments (debounced) whenever a data event lands for one
222
+ * of `models`. Fold it into a refetch effect's dependencies — that is exactly
223
+ * what `DynamicTable` / `DynamicKanban` do behind their `realtime` prop.
224
+ */
225
+ export function useRealtimeTick(options: UseRealtimeTickOptions): number {
226
+ const [tick, setTick] = useState(0)
227
+ const timerRef = useRef<ReturnType<typeof setTimeout> | null>(null)
228
+ const debounceMs = options.debounceMs ?? 300
229
+
230
+ useRealtime(
231
+ { models: options.models, client: options.client, enabled: options.enabled },
232
+ () => {
233
+ if (timerRef.current) return
234
+ timerRef.current = setTimeout(() => {
235
+ timerRef.current = null
236
+ setTick((t) => t + 1)
237
+ }, debounceMs)
238
+ },
239
+ )
240
+
241
+ useEffect(
242
+ () => () => {
243
+ if (timerRef.current) clearTimeout(timerRef.current)
244
+ },
245
+ [],
246
+ )
247
+ return tick
248
+ }