2019-05-27 16:19:39 +00:00
|
|
|
import React from 'react';
|
|
|
|
import PropTypes from 'prop-types';
|
|
|
|
|
|
|
|
import { SendButton, AudioButton } from './buttons';
|
|
|
|
|
|
|
|
const RightButtons = React.memo(({
|
2019-12-04 16:39:53 +00:00
|
|
|
theme, showSend, submit, recordAudioMessage
|
2019-05-27 16:19:39 +00:00
|
|
|
}) => {
|
|
|
|
if (showSend) {
|
2019-12-04 16:39:53 +00:00
|
|
|
return <SendButton theme={theme} onPress={submit} />;
|
2019-05-27 16:19:39 +00:00
|
|
|
}
|
2019-12-04 16:39:53 +00:00
|
|
|
return <AudioButton theme={theme} onPress={recordAudioMessage} />;
|
2019-05-27 16:19:39 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
RightButtons.propTypes = {
|
2019-12-04 16:39:53 +00:00
|
|
|
theme: PropTypes.string,
|
2019-05-27 16:19:39 +00:00
|
|
|
showSend: PropTypes.bool,
|
|
|
|
submit: PropTypes.func.isRequired,
|
|
|
|
recordAudioMessage: PropTypes.func.isRequired
|
|
|
|
};
|
|
|
|
|
|
|
|
export default RightButtons;
|