2021-09-13 20:41:05 +00:00
|
|
|
import React, { useState } from 'react';
|
|
|
|
import { BLOCK_CONTEXT } from '@rocket.chat/ui-kit';
|
|
|
|
|
|
|
|
import Button from '../Button';
|
|
|
|
import I18n from '../../i18n';
|
2022-03-16 19:07:49 +00:00
|
|
|
import { IActions } from './interfaces';
|
2021-09-13 20:41:05 +00:00
|
|
|
|
|
|
|
export const Actions = ({ blockId, appId, elements, parser, theme }: IActions) => {
|
2022-03-16 19:07:49 +00:00
|
|
|
const [showMoreVisible, setShowMoreVisible] = useState(() => elements && elements.length > 5);
|
|
|
|
const renderedElements = showMoreVisible ? elements?.slice(0, 5) : elements;
|
2021-09-13 20:41:05 +00:00
|
|
|
|
2022-03-16 19:07:49 +00:00
|
|
|
const Elements = () => (
|
|
|
|
<>{renderedElements?.map(element => parser?.renderActions({ blockId, appId, ...element }, BLOCK_CONTEXT.ACTION, parser))}</>
|
|
|
|
);
|
2021-09-13 20:41:05 +00:00
|
|
|
|
|
|
|
return (
|
|
|
|
<>
|
|
|
|
<Elements />
|
|
|
|
{showMoreVisible && <Button theme={theme} title={I18n.t('Show_more')} onPress={() => setShowMoreVisible(false)} />}
|
|
|
|
</>
|
|
|
|
);
|
|
|
|
};
|