35 lines
746 B
TypeScript
35 lines
746 B
TypeScript
import React from 'react';
|
|
|
|
import { messageBlockWithContext } from '../UIKit/MessageBlock';
|
|
import { IMessageBlocks } from './interfaces';
|
|
|
|
const Blocks = ({ blocks, id: mid, rid, blockAction }: IMessageBlocks) => {
|
|
if (blocks && blocks.length > 0) {
|
|
const appId = blocks[0]?.appId || '';
|
|
return React.createElement(
|
|
messageBlockWithContext({
|
|
action: async ({ actionId, value, blockId }: { actionId: string; value: string; blockId: string }) => {
|
|
if (blockAction) {
|
|
await blockAction({
|
|
actionId,
|
|
appId,
|
|
value,
|
|
blockId,
|
|
rid,
|
|
mid
|
|
});
|
|
}
|
|
},
|
|
appId,
|
|
rid
|
|
}),
|
|
{ blocks }
|
|
);
|
|
}
|
|
return null;
|
|
};
|
|
|
|
Blocks.displayName = 'MessageBlocks';
|
|
|
|
export default Blocks;
|