Improve delete device UI

This commit is contained in:
shamalka 2019-10-09 17:22:51 +05:30
parent b92046fa3d
commit 5ba56207c9
2 changed files with 106 additions and 87 deletions

View File

@ -17,7 +17,7 @@
*/ */
import React from "react"; import React from "react";
import {Button, Icon, notification} from "antd"; import {Button, Tooltip, Popconfirm, Divider} from "antd";
class BulkActionBar extends React.Component { class BulkActionBar extends React.Component {
@ -25,58 +25,82 @@ class BulkActionBar extends React.Component {
super(props); super(props);
this.state = { this.state = {
selectedMultiple: false, selectedMultiple: false,
selectedSingle:false selectedSingle: false,
deleteable: true,
} }
} }
//This method is used to trigger delete request on selected devices //This method is used to trigger delete request on selected devices
deleteDevice = () => { onDeleteDeviceCall = () => {
const deviceStatusArray = this.props.selectedRows.map(obj => obj.enrolmentInfo.status); let i;
if(deviceStatusArray.includes("ACTIVE") || deviceStatusArray.includes("INACTIVE")){ for(i=0; i < this.props.selectedRows.length; i++){
notification["error"]({ if(this.props.selectedRows[i].enrolmentInfo.status != "REMOVED"){
message: "There was a problem", this.setState({deletable:false});
duration: 0, break;
description: }
"Cannot delete ACTIVE/INACTIVE devices.", this.setState({deletable:true});
}); }
}else{ };
onConfirmDelete = () => {
if (this.state.deletable) {
this.props.deleteDevice(); this.props.deleteDevice();
} }
} };
componentDidUpdate(prevProps, prevState, snapshot) { onConfirmDisenroll = () => {
if(prevProps.selectedRows !== this.props.selectedRows){ //TODO: Implement disenrollment function
if(this.props.selectedRows.length > 1){ };
this.setState({selectedMultiple:true,selectedSingle:false})
}else if(this.props.selectedRows.length == 1){
this.setState({selectedSingle:true,selectedMultiple:true})
}else{
this.setState({selectedSingle:false,selectedMultiple:false})
}
}
}
render() { render() {
const isSelected = this.props.selectedRows.length > 0;
const isSelectedSingle = this.props.selectedRows.length == 1;
return ( return (
<div style={{padding:'5px'}}> <div
<Button style={{display: isSelected ? "inline" : "none", padding: '11px'}}>
type="normal"
icon="delete" <Tooltip
size={'default'} placement="bottom"
onClick={this.deleteDevice} title={"Delete Device"}
style={ autoAdjustOverflow={true}>
{display:this.state.selectedMultiple ? "inline" : "none"} <Popconfirm
}>Delete placement="topLeft"
</Button> title={
this.state.deletable ?
"Are you sure you want to delete?" : "You can only delete disenrolled devices"}
onConfirm={this.onConfirmDelete}
okText="Ok"
cancelText="Cancel">
<Button <Button
type="normal" type="link"
shape="circle"
icon="delete" icon="delete"
size={'default'} size={'default'}
style={ onClick={this.onDeleteDeviceCall}
{display:this.state.selectedSingle ? "inline" : "none"} disabled={isSelected ? false : true}
}>Disenroll style={{margin: "2px"}}/>
</Button> </Popconfirm>
</Tooltip>
<Divider type="vertical"/>
<Tooltip placement="bottom" title={"Disenroll Device"}>
<Popconfirm
placement="topLeft"
title={"Are you sure?"}
onConfirm={this.onConfirmDisenroll}
okText="Ok"
disabled={isSelectedSingle ? false : true}
cancelText="Cancel">
<Button
type="link"
shape="circle"
icon="close"
size={'default'}
disabled={isSelectedSingle ? false : true}
style={{margin: "2px"}}/>
</Popconfirm>
</Tooltip>
</div> </div>
) )
} }

View File

@ -221,16 +221,9 @@ class DeviceTable extends React.Component {
"/admin/devices/permanent-delete", "/admin/devices/permanent-delete",
deviceData, deviceData,
{headers: {'Content-Type': 'application/json'}} {headers: {'Content-Type': 'application/json'}}
).then(res => { ).then(res => {
if (res.status === 200) { if (res.status === 200) {
this.fetch(); this.fetch();
const pagination = {...this.state.pagination};
this.setState({
loading: false,
data: res.data.data.devices,
pagination,
});
} }
}).catch((error) => { }).catch((error) => {
if (error.hasOwnProperty("response") && error.response.status === 401) { if (error.hasOwnProperty("response") && error.response.status === 401) {
@ -248,7 +241,7 @@ class DeviceTable extends React.Component {
this.setState({loading: false}); this.setState({loading: false});
}); });
} };
handleTableChange = (pagination, filters, sorter) => { handleTableChange = (pagination, filters, sorter) => {
const pager = {...this.state.pagination}; const pager = {...this.state.pagination};
@ -272,6 +265,7 @@ class DeviceTable extends React.Component {
<BulkActionBar <BulkActionBar
deleteDevice={this.deleteDevice} deleteDevice={this.deleteDevice}
selectedRows={this.state.selectedRows}/> selectedRows={this.state.selectedRows}/>
<div>
<Table <Table
columns={columns} columns={columns}
rowKey={record => (record.deviceIdentifier + record.enrolmentInfo.owner + record.enrolmentInfo.ownership)} rowKey={record => (record.deviceIdentifier + record.enrolmentInfo.owner + record.enrolmentInfo.ownership)}
@ -289,6 +283,7 @@ class DeviceTable extends React.Component {
scroll={{x: 1000}} scroll={{x: 1000}}
/> />
</div> </div>
</div>
); );
} }
} }