Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
const cellMessages = channels.pipe(
childOf(executeRequest),
share()
);
// All the payload streams, intended for one user
const payloadStream = cellMessages.pipe(payloads());
const cellAction$ = merge(
payloadStream.pipe(
map(payload => actions.acceptPayloadMessage({ id, payload, contentRef }))
),
// All actions for updating cell status
cellMessages.pipe(
kernelStatuses(),
map(status => actions.updateCellStatus({ id, status, contentRef }))
),
// Update the input numbering: `[ ]`
cellMessages.pipe(
executionCounts(),
map(ct => actions.updateCellExecutionCount({ id, value: ct, contentRef }))
),
// All actions for new outputs
cellMessages.pipe(
outputs(),
map(output => actions.appendOutput({ id, output, contentRef }))
),
// clear_output display message
any
>> = channels.pipe(childOf(executeRequest), share());
// All the payload streams, intended for one user
const payloadStream = cellMessages.pipe(payloads());
const cellAction$ = merge(
payloadStream.pipe(
map((payload: PayloadMessage) =>
actions.acceptPayloadMessage({ id, payload, contentRef })
)
),
// All actions for updating cell status
cellMessages.pipe(
kernelStatuses() as any,
map((status: string) =>
actions.updateCellStatus({ id, status, contentRef })
)
),
// Update the input numbering: `[ ]`
cellMessages.pipe(
executionCounts() as any,
map((ct: number) =>
actions.updateCellExecutionCount({ id, value: ct, contentRef })
)
),
// All actions for new outputs
cellMessages.pipe(
outputs() as any,
any
>> = channels.pipe(childOf(executeRequest), share());
// All the payload streams, intended for one user
const payloadStream = cellMessages.pipe(payloads());
const cellAction$ = merge(
payloadStream.pipe(
map((payload: PayloadMessage) =>
actions.acceptPayloadMessage({ id, payload, contentRef })
)
),
// All actions for updating cell status
cellMessages.pipe(
kernelStatuses() as any,
map((status: string) =>
actions.updateCellStatus({ id, status, contentRef })
)
),
// Update the input numbering: `[ ]`
cellMessages.pipe(
executionCounts() as any,
map((ct: number) =>
actions.updateCellExecutionCount({ id, value: ct, contentRef })
)
),
// All actions for new outputs
cellMessages.pipe(
outputs() as any,