Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions src/API.ts
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,9 @@ export interface StatisticsMemoization {
export interface ContributeAPIOptions<TAPI> {
includesNamespaces?: boolean
disableMonitoring?: boolean | (keyof TAPI)[]
functionInterceptors?: {
[K in keyof TAPI]: (func: TAPI[K]) => TAPI[K]
}
}

export type AnyFunction = (...args: any[]) => any
Expand Down
15 changes: 14 additions & 1 deletion src/appHost.ts
Original file line number Diff line number Diff line change
Expand Up @@ -777,11 +777,14 @@ miss: ${memoizedWithMissHit.miss}
}

const api = factory()
const interceptedAPI = apiOptions?.functionInterceptors
? interceptApiFunctions(api, apiOptions.functionInterceptors)
: api
const monitoredAPI = monitorAPI(
shell,
options,
normalizeApiName(slotKeyToName(key)),
api /*, trace, memoizedArr*/,
interceptedAPI /*, trace, memoizedArr*/,
apiOptions
)
const apiSlot = declareSlot<TAPI>(key)
Expand Down Expand Up @@ -847,4 +850,14 @@ miss: ${memoizedWithMissHit.miss}
function normalizeApiName(name: string) {
return name.charAt(0).toLowerCase() + name.substring(1).replace(new RegExp(' ', 'g'), '')
}

function interceptApiFunctions<TAPI>(api: TAPI, interceptors: ContributeAPIOptions<TAPI>['functionInterceptors']) {
let intercepted = {...api}
for (const key in intercepted) {
intercepted[key] = interceptors && interceptors[key]
? interceptors[key](intercepted[key])
: intercepted[key]
}
return intercepted
}
}