Create wt-odlux directory
[ccsdk/features.git] / sdnr / wt-odlux / odlux / apps / connectApp / src / components / refreshNetworkElementsDialog.tsx
1 /**
2  * ============LICENSE_START========================================================================
3  * ONAP : ccsdk feature sdnr wt odlux
4  * =================================================================================================
5  * Copyright (C) 2019 highstreet technologies GmbH Intellectual Property. All rights reserved.
6  * =================================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
8  * in compliance with the License. You may obtain a copy of the License at
9  *
10  * http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software distributed under the License
13  * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
14  * or implied. See the License for the specific language governing permissions and limitations under
15  * the License.
16  * ============LICENSE_END==========================================================================
17  */
18 import React from 'react';
19
20 import Button from '@mui/material/Button';
21 import Dialog from '@mui/material/Dialog';
22 import DialogActions from '@mui/material/DialogActions';
23 import DialogContent from '@mui/material/DialogContent';
24 import DialogContentText from '@mui/material/DialogContentText';
25 import DialogTitle from '@mui/material/DialogTitle';
26
27 import { connect, Connect, IDispatcher } from '../../../../framework/src/flux/connect';
28
29 import { networkElementsReloadAction } from '../handlers/networkElementsHandler';
30 import { NetworkElementConnection } from '../models/networkElementConnection';
31
32 export enum RefreshNetworkElementsDialogMode {
33   None = 'none',
34   RefreshNetworkElementsTable = 'RefreshNetworkElementsTable',
35 }
36
37 const mapDispatch = (dispatcher: IDispatcher) => ({
38   refreshNetworkElement: () => dispatcher.dispatch(networkElementsReloadAction),
39 });
40
41 type DialogSettings = {
42   dialogTitle: string;
43   dialogDescription: string;
44   applyButtonText: string;
45   cancelButtonText: string;
46   enableMountIdEditor: boolean;
47   enableUsernameEditor: boolean;
48   enableExtendedEditor: boolean;
49 };
50
51 const settings: { [key: string]: DialogSettings } = {
52   [RefreshNetworkElementsDialogMode.None]: {
53     dialogTitle: '',
54     dialogDescription: '',
55     applyButtonText: '',
56     cancelButtonText: '',
57     enableMountIdEditor: false,
58     enableUsernameEditor: false,
59     enableExtendedEditor: false,
60   },
61   [RefreshNetworkElementsDialogMode.RefreshNetworkElementsTable]: {
62     dialogTitle: 'Do you want to refresh the nodes table?',
63     dialogDescription: '',
64     applyButtonText: 'Yes',
65     cancelButtonText: 'Cancel',
66     enableMountIdEditor: true,
67     enableUsernameEditor: true,
68     enableExtendedEditor: true,
69   },
70 };
71
72 type RefreshNetworkElementsDialogComponentProps = Connect<undefined, typeof mapDispatch> & {
73   mode: RefreshNetworkElementsDialogMode;
74   onClose: () => void;
75 };
76
77 type RefreshNetworkElementsDialogComponentState = NetworkElementConnection & { isNameValid: boolean; isHostSet: boolean };
78
79 class RefreshNetworkElementsDialogComponent extends React.Component<RefreshNetworkElementsDialogComponentProps, RefreshNetworkElementsDialogComponentState> {
80
81   render(): JSX.Element {
82     const setting = settings[this.props.mode];
83     return (
84       <Dialog open={this.props.mode !== RefreshNetworkElementsDialogMode.None}>
85         <DialogTitle id="form-dialog-title" aria-label={`${setting.dialogTitle.replace(/ /g, '-').toLowerCase()}-dialog`}>{setting.dialogTitle}</DialogTitle>
86         <DialogContent>
87           <DialogContentText>
88             {setting.dialogDescription}
89           </DialogContentText>
90         </DialogContent>
91         <DialogActions>
92           <Button aria-label="dialog-confirm-button" onClick={() => {
93             this.onRefresh();
94           }} color="inherit" > {setting.applyButtonText} </Button>
95           <Button aria-label="dialog-cancel-button" onClick={() => {
96             this.onCancel();
97           }} color="secondary"> {setting.cancelButtonText} </Button>
98         </DialogActions>
99       </Dialog>
100     );
101   }
102
103   private onRefresh = () => {
104     this.props.refreshNetworkElement();
105     this.props.onClose();
106   };
107
108   private onCancel = () => {
109     this.props.onClose();
110   };
111 }
112
113 export const RefreshNetworkElementsDialog = connect(undefined, mapDispatch)(RefreshNetworkElementsDialogComponent);
114 export default RefreshNetworkElementsDialog;