const React = require('react'); const { _ } = require('lib/locale'); const { themeStyle } = require('lib/theme'); function DialogButtonRow(props) { const theme = themeStyle(props.themeId); const okButton_click = () => { if (props.onClick) props.onClick({ buttonName: 'ok' }); }; const cancelButton_click = () => { if (props.onClick) props.onClick({ buttonName: 'cancel' }); }; const onKeyDown = (event) => { if (event.keyCode === 13) { okButton_click(); } else if (event.keyCode === 27) { cancelButton_click(); } }; const buttonComps = []; if (props.okButtonShow !== false) { buttonComps.push( ); } if (props.cancelButtonShow !== false) { buttonComps.push( ); } return