Einav Weiss Keidar | 1801b24 | 2018-08-13 16:19:46 +0300 | [diff] [blame] | 1 | /* |
| 2 | * Copyright © 2016-2018 European Support Limited |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 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 | * |
Einav Weiss Keidar | 1801b24 | 2018-08-13 16:19:46 +0300 | [diff] [blame] | 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 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, |
Einav Weiss Keidar | 1801b24 | 2018-08-13 16:19:46 +0300 | [diff] [blame] | 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 15 | */ |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 16 | /** |
| 17 | * Holds the buttons for save/reset for forms. |
| 18 | * Used by the ValidationForm that changes the state of the buttons according to its own state. |
| 19 | * |
| 20 | * properties: |
| 21 | * labledButtons - whether or not to use labeled buttons or icons only |
| 22 | */ |
| 23 | import React from 'react'; |
talig | 8e9c065 | 2017-12-20 14:30:43 +0200 | [diff] [blame] | 24 | import PropTypes from 'prop-types'; |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 25 | import i18n from 'nfvo-utils/i18n/i18n.js'; |
Arielk | a51eac0 | 2019-07-07 12:56:11 +0300 | [diff] [blame] | 26 | import { Button, SVGIcon } from 'onap-ui-react'; |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 27 | |
| 28 | class ValidationButtons extends React.Component { |
Einav Weiss Keidar | 7fdf733 | 2018-03-20 14:45:40 +0200 | [diff] [blame] | 29 | static propTypes = { |
| 30 | labledButtons: PropTypes.bool.isRequired, |
| 31 | isReadOnlyMode: PropTypes.bool, |
| 32 | submitButtonText: PropTypes.string, |
| 33 | cancelButtonText: PropTypes.string |
| 34 | }; |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 35 | |
Einav Weiss Keidar | 7fdf733 | 2018-03-20 14:45:40 +0200 | [diff] [blame] | 36 | state = { |
| 37 | isValid: this.props.formValid |
| 38 | }; |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 39 | |
Einav Weiss Keidar | 7fdf733 | 2018-03-20 14:45:40 +0200 | [diff] [blame] | 40 | render() { |
| 41 | let submitBtn = this.props.labledButtons ? ( |
| 42 | this.props.submitButtonText ? ( |
| 43 | this.props.submitButtonText |
| 44 | ) : ( |
| 45 | i18n('Save') |
| 46 | ) |
| 47 | ) : ( |
| 48 | <SVGIcon className="check" name="check" /> |
| 49 | ); |
| 50 | let closeBtn = this.props.labledButtons ? ( |
| 51 | this.props.cancelButtonText ? ( |
| 52 | this.props.cancelButtonText |
| 53 | ) : ( |
| 54 | i18n('Cancel') |
| 55 | ) |
| 56 | ) : ( |
| 57 | <SVGIcon className="close" name="close" /> |
| 58 | ); |
Einav Weiss Keidar | 1801b24 | 2018-08-13 16:19:46 +0300 | [diff] [blame] | 59 | let className = 'validation-buttons'; |
| 60 | if (this.props.className) { |
| 61 | className += ' ' + this.props.className; |
| 62 | } |
Einav Weiss Keidar | 7fdf733 | 2018-03-20 14:45:40 +0200 | [diff] [blame] | 63 | return ( |
Einav Weiss Keidar | 1801b24 | 2018-08-13 16:19:46 +0300 | [diff] [blame] | 64 | <div className={className}> |
Einav Weiss Keidar | 7fdf733 | 2018-03-20 14:45:40 +0200 | [diff] [blame] | 65 | {!this.props.isReadOnlyMode ? ( |
| 66 | <div> |
| 67 | <Button |
| 68 | type="submit" |
svishnev | 04783c4 | 2018-04-17 11:32:22 +0300 | [diff] [blame] | 69 | btnType="primary" |
svishnev | 6553339 | 2018-04-23 10:10:51 +0300 | [diff] [blame] | 70 | size="default" |
Einav Weiss Keidar | 7fdf733 | 2018-03-20 14:45:40 +0200 | [diff] [blame] | 71 | data-test-id="form-submit-button" |
| 72 | disabled={!this.state.isValid}> |
| 73 | {submitBtn} |
| 74 | </Button> |
| 75 | <Button |
svishnev | 04783c4 | 2018-04-17 11:32:22 +0300 | [diff] [blame] | 76 | btnType="secondary" |
Einav Weiss Keidar | 7fdf733 | 2018-03-20 14:45:40 +0200 | [diff] [blame] | 77 | type="reset" |
| 78 | data-test-id="form-close-button"> |
| 79 | {closeBtn} |
| 80 | </Button> |
| 81 | </div> |
| 82 | ) : ( |
| 83 | <Button |
svishnev | 04783c4 | 2018-04-17 11:32:22 +0300 | [diff] [blame] | 84 | btnType="primary" |
Einav Weiss Keidar | 7fdf733 | 2018-03-20 14:45:40 +0200 | [diff] [blame] | 85 | type="reset" |
| 86 | data-test-id="form-close-button"> |
| 87 | {i18n('Close')} |
| 88 | </Button> |
| 89 | )} |
| 90 | </div> |
| 91 | ); |
| 92 | } |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 93 | } |
| 94 | export default ValidationButtons; |