Create wt-odlux directory
[ccsdk/features.git] / sdnr / wt-odlux / odlux / apps / inventoryApp / src / components / refreshInventoryDialog.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 * as 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 import { inventoryElementsReloadAction } from '../handlers/inventoryElementsHandler';
29
30 import { InventoryType } from '../models/inventory';
31
32 export enum RefreshInventoryDialogMode {
33   None = 'none',
34   RefreshInventoryTable = 'RefreshInventoryTable',
35 }
36
37 const mapDispatch = (dispatcher: IDispatcher) => ({
38   refreshInventory: () => dispatcher.dispatch(inventoryElementsReloadAction),
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   [RefreshInventoryDialogMode.None]: {
53     dialogTitle: '',
54     dialogDescription: '',
55     applyButtonText: '',
56     cancelButtonText: '',
57     enableMountIdEditor: false,
58     enableUsernameEditor: false,
59     enableExtendedEditor: false,
60   },
61   [RefreshInventoryDialogMode.RefreshInventoryTable]: {
62     dialogTitle: 'Do you want to refresh the Inventory table?',
63     dialogDescription: '',
64     applyButtonText: 'Yes',
65     cancelButtonText: 'Cancel',
66     enableMountIdEditor: true,
67     enableUsernameEditor: true,
68     enableExtendedEditor: true,
69   },
70 };
71
72 type RefreshInventoryDialogComponentProps = Connect<undefined, typeof mapDispatch> & {
73   mode: RefreshInventoryDialogMode;
74   onClose: () => void;
75 };
76
77 type RefreshInventoryDialogComponentState = InventoryType & { isNameValid: boolean; isHostSet: boolean };
78
79 class RefreshInventoryDialogComponent extends React.Component<RefreshInventoryDialogComponentProps, RefreshInventoryDialogComponentState> {
80   render(): JSX.Element {
81     const setting = settings[this.props.mode];
82     return (
83       <Dialog open={this.props.mode !== RefreshInventoryDialogMode.None}>
84         <DialogTitle id="form-dialog-title" aria-label={`${setting.dialogTitle.replace(/ /g, '-').toLowerCase()}-dialog`}>{setting.dialogTitle}</DialogTitle>
85         <DialogContent>
86           <DialogContentText>
87             {setting.dialogDescription}
88           </DialogContentText>
89         </DialogContent>
90         <DialogActions>
91           <Button aria-label="dialog-confirm-button" onClick={() => {
92             this.onRefresh();
93           }} color="inherit" > {setting.applyButtonText} </Button>
94           <Button aria-label="dialog-cancel-button" onClick={() => {
95             this.onCancel();
96           }} color="secondary"> {setting.cancelButtonText} </Button>
97         </DialogActions>
98       </Dialog>
99     );
100   }
101
102   private onRefresh = () => {
103     this.props.refreshInventory();
104     this.props.onClose();
105   };
106
107   private onCancel = () => {
108     this.props.onClose();
109   };
110 }
111
112 export const RefreshInventoryDialog = connect(undefined, mapDispatch)(RefreshInventoryDialogComponent);
113 export default RefreshInventoryDialog;