Alexander Zinchuk 3afcde3217 Initial commit
2021-04-09 14:11:51 +03:00

36 lines
850 B
TypeScript

import React, { FC } from '../../../lib/teact/teact';
import { ApiKeyboardButton, ApiMessage } from '../../../api/types';
import Button from '../../ui/Button';
import './InlineButtons.scss';
type OwnProps = {
message: ApiMessage;
onClick: ({ button }: { button: ApiKeyboardButton }) => void;
};
const InlineButtons: FC<OwnProps> = ({ message, onClick }) => {
return (
<div className="InlineButtons">
{message.inlineButtons!.map((row) => (
<div className="row">
{row.map((button) => (
<Button
size="tiny"
ripple
disabled={button.type === 'NOT_SUPPORTED'}
onClick={() => onClick({ button })}
>
{button.text}
</Button>
))}
</div>
))}
</div>
);
};
export default InlineButtons;