svishnev | 8f13330 | 2018-08-06 23:08:39 +0300 | [diff] [blame] | 1 | /*! |
| 2 | * Copyright © 2016-2018 European Support Limited |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express |
| 13 | * or implied. See the License for the specific language governing |
| 14 | * permissions and limitations under the License. |
| 15 | */ |
| 16 | |
| 17 | import React from 'react'; |
| 18 | import PropTypes from 'prop-types'; |
| 19 | import i18n from 'nfvo-utils/i18n/i18n.js'; |
| 20 | import Button from 'sdc-ui/lib/react/Button.js'; |
svishnev | 8f13330 | 2018-08-06 23:08:39 +0300 | [diff] [blame] | 21 | |
| 22 | const ModalButtons = ({ |
| 23 | isFormValid, |
| 24 | isReadOnlyMode, |
| 25 | onSubmit, |
| 26 | selectedLimit, |
| 27 | onCancel, |
| 28 | className |
| 29 | }) => ( |
Einav Weiss Keidar | 1801b24 | 2018-08-13 16:19:46 +0300 | [diff] [blame^] | 30 | <div className={`${className}`}> |
svishnev | 8f13330 | 2018-08-06 23:08:39 +0300 | [diff] [blame] | 31 | {!selectedLimit && ( |
| 32 | <Button |
| 33 | btnType="primary" |
| 34 | disabled={!isFormValid || isReadOnlyMode} |
| 35 | onClick={() => onSubmit()} |
| 36 | type="reset"> |
| 37 | {i18n('Save')} |
| 38 | </Button> |
| 39 | )} |
| 40 | <Button |
| 41 | btnType={selectedLimit ? 'primary' : 'secondary'} |
| 42 | onClick={() => onCancel()} |
| 43 | type="reset"> |
| 44 | {i18n('Cancel')} |
| 45 | </Button> |
Einav Weiss Keidar | 1801b24 | 2018-08-13 16:19:46 +0300 | [diff] [blame^] | 46 | </div> |
svishnev | 8f13330 | 2018-08-06 23:08:39 +0300 | [diff] [blame] | 47 | ); |
| 48 | |
| 49 | ModalButtons.propTypes = { |
Einav Weiss Keidar | 1801b24 | 2018-08-13 16:19:46 +0300 | [diff] [blame^] | 50 | isFormValid: PropTypes.bool, |
svishnev | 8f13330 | 2018-08-06 23:08:39 +0300 | [diff] [blame] | 51 | isReadOnlyMode: PropTypes.bool, |
| 52 | onSubmit: PropTypes.func, |
| 53 | selectedLimit: PropTypes.string, |
| 54 | onCancel: PropTypes.func, |
| 55 | className: PropTypes.string |
| 56 | }; |
| 57 | |
| 58 | export default ModalButtons; |