blob: 4fbbd1a8f0382728670785e72f3dbd1c0d29a1c7 [file] [log] [blame]
svishnev8f133302018-08-06 23:08:39 +03001/*!
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
17import React from 'react';
18import PropTypes from 'prop-types';
19import i18n from 'nfvo-utils/i18n/i18n.js';
20import Button from 'sdc-ui/lib/react/Button.js';
svishnev8f133302018-08-06 23:08:39 +030021
22const ModalButtons = ({
23 isFormValid,
24 isReadOnlyMode,
25 onSubmit,
26 selectedLimit,
27 onCancel,
28 className
29}) => (
Einav Weiss Keidar1801b242018-08-13 16:19:46 +030030 <div className={`${className}`}>
svishnev8f133302018-08-06 23:08:39 +030031 {!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 Keidar1801b242018-08-13 16:19:46 +030046 </div>
svishnev8f133302018-08-06 23:08:39 +030047);
48
49ModalButtons.propTypes = {
Einav Weiss Keidar1801b242018-08-13 16:19:46 +030050 isFormValid: PropTypes.bool,
svishnev8f133302018-08-06 23:08:39 +030051 isReadOnlyMode: PropTypes.bool,
52 onSubmit: PropTypes.func,
53 selectedLimit: PropTypes.string,
54 onCancel: PropTypes.func,
55 className: PropTypes.string
56};
57
58export default ModalButtons;