Merge pull request #144 from DeimosPr4/US-28-EliminarÁreaComún
Eliminar Área Común
This commit is contained in:
		
						commit
						721c9f6fa7
					
				| 
						 | 
				
			
			@ -196,6 +196,12 @@ export class AppController {
 | 
			
		|||
    return this.appService.findByCommunity(paramCommunityId);
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
  @Delete('commonArea/deleteCommonArea/:id')
 | 
			
		||||
  deleteCommonArea(@Param('id') id: string) {
 | 
			
		||||
    return this.appService.deleteCommonArea(id);
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  // #==== API GUEST
 | 
			
		||||
  //#API userService - create user
 | 
			
		||||
  @Post('guest/createGuest')
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -258,6 +258,16 @@ export class AppService {
 | 
			
		|||
      .pipe(map((message: string) => ({ message })));
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
    //DELETE parameter from API
 | 
			
		||||
    deleteCommonArea(paramCommonAreaId: string) {
 | 
			
		||||
      const pattern = { cmd: 'removeCommonArea' };
 | 
			
		||||
      const payload = { id: paramCommonAreaId };
 | 
			
		||||
      return this.clientCommonAreaApp
 | 
			
		||||
        .send<string>(pattern, payload)
 | 
			
		||||
        .pipe(map((message: string) => ({ message })));
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
  // ====================== GUESTS ===============================
 | 
			
		||||
 | 
			
		||||
  //POST parameter from API
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -30,7 +30,7 @@ export class CommonAreasController {
 | 
			
		|||
 | 
			
		||||
  @MessagePattern({ cmd: 'removeCommonArea' })
 | 
			
		||||
  remove(@Payload() id: string) {
 | 
			
		||||
    let _id = id['_id'];
 | 
			
		||||
    let _id = id['id'];
 | 
			
		||||
    return this.commonAreasService.remove(_id);
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -35,7 +35,7 @@ export class CommonAreasService {
 | 
			
		|||
    return this.commonAreaModel.findOneAndUpdate({ _id: id }, {status: '-1'}, {
 | 
			
		||||
      new: true,
 | 
			
		||||
    });  
 | 
			
		||||
  }
 | 
			
		||||
  };
 | 
			
		||||
 | 
			
		||||
  async findByCommunity(community_id: string): Promise<CommonArea[]> {
 | 
			
		||||
    return this.commonAreaModel.find({ community_id: community_id }).exec();
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -19,6 +19,9 @@ export class CommonArea {
 | 
			
		|||
  @Prop()
 | 
			
		||||
  bookable: number; //saber si es necesario reservarlo o no
 | 
			
		||||
 | 
			
		||||
  @Prop()
 | 
			
		||||
  status: string;
 | 
			
		||||
 | 
			
		||||
  @Prop()
 | 
			
		||||
  community_id: string;
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -9,11 +9,10 @@ import { Dialog } from 'primereact/dialog';
 | 
			
		|||
import { Toolbar } from 'primereact/toolbar';
 | 
			
		||||
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
 | 
			
		||||
import { faHome, faUserAlt } from '@fortawesome/free-solid-svg-icons';
 | 
			
		||||
import { faPhoneAlt } from '@fortawesome/free-solid-svg-icons';
 | 
			
		||||
import { faCircleQuestion } from '@fortawesome/free-solid-svg-icons';
 | 
			
		||||
import { faAt } from '@fortawesome/free-solid-svg-icons';
 | 
			
		||||
import { faIdCardAlt } from '@fortawesome/free-solid-svg-icons';
 | 
			
		||||
import { faEllipsis } from '@fortawesome/free-solid-svg-icons';
 | 
			
		||||
import { faHomeAlt } from '@fortawesome/free-solid-svg-icons';
 | 
			
		||||
import { faClipboardCheck } from '@fortawesome/free-solid-svg-icons';
 | 
			
		||||
import classNames from 'classnames';
 | 
			
		||||
import { useCookies } from "react-cookie";
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			@ -29,6 +28,8 @@ const AreasComunes = () => {
 | 
			
		|||
        community_id: '',
 | 
			
		||||
        bookable: '1',
 | 
			
		||||
        bookable_text: '',
 | 
			
		||||
        status: '1',
 | 
			
		||||
        status_text: '',
 | 
			
		||||
    };
 | 
			
		||||
 | 
			
		||||
    const [commonAreaList, setCommonAreaList] = useState([]);
 | 
			
		||||
| 
						 | 
				
			
			@ -51,12 +52,24 @@ const AreasComunes = () => {
 | 
			
		|||
                if (data) {
 | 
			
		||||
                    data.map(item => {
 | 
			
		||||
                        if (item.bookable == '1') {
 | 
			
		||||
                            item.bookable_text = 'Disponible';
 | 
			
		||||
                            item.bookable_text = 'Necesaria';
 | 
			
		||||
                        } else {
 | 
			
		||||
                            item.bookable_text = 'Cerrado';
 | 
			
		||||
                            item.bookable_text = 'No es necesarioa';
 | 
			
		||||
                        }
 | 
			
		||||
 | 
			
		||||
                        if (item.status == '1') {
 | 
			
		||||
                            item.status_text = 'Activo';
 | 
			
		||||
                        } else if (item.status == '0') {
 | 
			
		||||
                            item.status_text = 'Inactivo';
 | 
			
		||||
                        } else {
 | 
			
		||||
                            item.status_text = 'Eliminado';
 | 
			
		||||
                        }
 | 
			
		||||
                    })
 | 
			
		||||
                }
 | 
			
		||||
 | 
			
		||||
                data = data.filter(
 | 
			
		||||
                    (val) => val.status != -1,
 | 
			
		||||
                )
 | 
			
		||||
                setCommonAreaList(data);
 | 
			
		||||
            });
 | 
			
		||||
    }
 | 
			
		||||
| 
						 | 
				
			
			@ -67,7 +80,7 @@ const AreasComunes = () => {
 | 
			
		|||
 | 
			
		||||
 | 
			
		||||
    const deleteCommonArea = () => {
 | 
			
		||||
        /*   fetch('http://localhost:4000/community/deleteCommunity/' + community._id, {
 | 
			
		||||
        fetch('http://localhost:4000/commonArea/deleteCommonArea/' + commonArea._id, {
 | 
			
		||||
            cache: 'no-cache',
 | 
			
		||||
            method: 'DELETE',
 | 
			
		||||
            headers: {
 | 
			
		||||
| 
						 | 
				
			
			@ -85,23 +98,12 @@ const AreasComunes = () => {
 | 
			
		|||
            .then(
 | 
			
		||||
                function (response) {
 | 
			
		||||
 | 
			
		||||
                       let _community = communities.filter(val => val._id !== community._id);
 | 
			
		||||
                       setCommunities(_community);
 | 
			
		||||
                       setDeleteCommunityDialog(false);
 | 
			
		||||
                       setCommunity(emptyCommunity);
 | 
			
		||||
                       toast.current.show({ severity: 'success', summary: 'Exito', detail: 'Comunidad de Viviendas Eliminada', life: 3000 });
 | 
			
		||||
                   }
 | 
			
		||||
               )
 | 
			
		||||
               .catch(
 | 
			
		||||
                   err => {
 | 
			
		||||
                       console.log('Ocurrió un error con el fetch', err)
 | 
			
		||||
                       toast.current.show({ severity: 'danger', summary: 'Error', detail: 'Comunidad de Viviendas no se pudo eliminar', life: 3000 });
 | 
			
		||||
                   }
 | 
			
		||||
               ); 
 | 
			
		||||
        */
 | 
			
		||||
                    let _common_areas = commonAreaList.filter(
 | 
			
		||||
                        (val) => val._id !== commonArea._id,
 | 
			
		||||
                    );
 | 
			
		||||
                    _common_areas = _common_areas.filter(
 | 
			
		||||
                        (val) => val.status != -1,
 | 
			
		||||
                    )
 | 
			
		||||
                    setCommonAreaList(_common_areas);
 | 
			
		||||
                    setDeleteCommonAreaDialog(false);
 | 
			
		||||
                    setCommonArea(emptyCommonArea);
 | 
			
		||||
| 
						 | 
				
			
			@ -110,22 +112,34 @@ const AreasComunes = () => {
 | 
			
		|||
                        summary: 'Área Común Eliminada',
 | 
			
		||||
                        life: 3000,
 | 
			
		||||
                    });
 | 
			
		||||
                }
 | 
			
		||||
            )
 | 
			
		||||
            .catch(
 | 
			
		||||
                err => {
 | 
			
		||||
                    console.log('Ocurrió un error con el fetch', err)
 | 
			
		||||
                    toast.current.show({ severity: 'danger', summary: 'Error', detail: 'Área Común no se pudo eliminar', life: 3000 });
 | 
			
		||||
                }
 | 
			
		||||
            );
 | 
			
		||||
 | 
			
		||||
    };
 | 
			
		||||
 | 
			
		||||
    const deleteSelectedCommonAreas = () => {
 | 
			
		||||
        let _commonareas = commonAreaList.filter(
 | 
			
		||||
        let _common_areas = commonAreaList.filter(
 | 
			
		||||
            (val) => !selectedCommonAreas.includes(val),
 | 
			
		||||
        );
 | 
			
		||||
        /*  selectedCommunities.map((item) => {
 | 
			
		||||
                 fetch('http://localhost:4000/user/deleteCommunity/' + item._id, {
 | 
			
		||||
        selectedCommonAreas.map((item) => {
 | 
			
		||||
            fetch('http://localhost:4000/commonArea/deleteCommonArea/' + item._id, {
 | 
			
		||||
                cache: 'no-cache',
 | 
			
		||||
                method: 'DELETE',
 | 
			
		||||
                headers: {
 | 
			
		||||
                    'Content-Type': 'application/json'
 | 
			
		||||
                }
 | 
			
		||||
            })
 | 
			
		||||
             })*/
 | 
			
		||||
        setCommonAreaList(_commonareas);
 | 
			
		||||
        });
 | 
			
		||||
        _common_areas = _common_areas.filter(
 | 
			
		||||
            (val) => val.status != -1,
 | 
			
		||||
        )
 | 
			
		||||
        setCommonAreaList(_common_areas);
 | 
			
		||||
        setDeleteCommonAreasDialog(false);
 | 
			
		||||
        setSelectedCommonAreas(null);
 | 
			
		||||
        toast.current.show({
 | 
			
		||||
| 
						 | 
				
			
			@ -246,20 +260,48 @@ const AreasComunes = () => {
 | 
			
		|||
    const headerBookable = (
 | 
			
		||||
        <>
 | 
			
		||||
            <p> {' '}
 | 
			
		||||
                <FontAwesomeIcon icon={faAt} style={{ color: "#D7A86E" }} />{' '}
 | 
			
		||||
                Reservable
 | 
			
		||||
                <FontAwesomeIcon icon={faClipboardCheck} style={{ color: "#D7A86E" }} />{' '}
 | 
			
		||||
                Reservación
 | 
			
		||||
            </p>
 | 
			
		||||
        </>
 | 
			
		||||
    )
 | 
			
		||||
 | 
			
		||||
    const headerStatus = (
 | 
			
		||||
        <>
 | 
			
		||||
            <p> {' '}
 | 
			
		||||
                <FontAwesomeIcon icon={faCircleQuestion} style={{ color: "#C08135" }} />{' '}
 | 
			
		||||
                Estado
 | 
			
		||||
            </p>
 | 
			
		||||
        </>
 | 
			
		||||
    )
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
    const bookableBodyTemplate = (rowData) => {
 | 
			
		||||
        let class_color = '';
 | 
			
		||||
        if(rowData.bookable == '1') {
 | 
			
		||||
            class_color = '0';
 | 
			
		||||
        } else {
 | 
			
		||||
            class_color = '1';
 | 
			
		||||
 | 
			
		||||
        }
 | 
			
		||||
        return (
 | 
			
		||||
            <>
 | 
			
		||||
                <span
 | 
			
		||||
                    className={`status status-${class_color}`}
 | 
			
		||||
                >
 | 
			
		||||
                    {rowData.bookable_text}
 | 
			
		||||
                </span>
 | 
			
		||||
            </>
 | 
			
		||||
        );
 | 
			
		||||
    };
 | 
			
		||||
 | 
			
		||||
    const statusBodyTemplate = (rowData) => {
 | 
			
		||||
        return (
 | 
			
		||||
            <>
 | 
			
		||||
                <span
 | 
			
		||||
              className={`status status-${rowData.bookable}`}
 | 
			
		||||
                    className={`status status-${rowData.status}`}
 | 
			
		||||
                >
 | 
			
		||||
              {rowData.bookable_text}
 | 
			
		||||
                    {rowData.status_text}
 | 
			
		||||
                </span>
 | 
			
		||||
            </>
 | 
			
		||||
        );
 | 
			
		||||
| 
						 | 
				
			
			@ -281,7 +323,8 @@ const AreasComunes = () => {
 | 
			
		|||
                        <Column field="name" sortable header={headerName} style={{ flexGrow: 1, flexBasis: '160px', minWidth: '160px', wordBreak: 'break-word' }}></Column>
 | 
			
		||||
                        <Column field="hourMin" header={headerHourMin} style={{ flexGrow: 1, flexBasis: '160px', minWidth: '160px', wordBreak: 'break-word' }} alignFrozen="left"></Column>
 | 
			
		||||
                        <Column field="hourMax" header={headerHourMax} style={{ flexGrow: 1, flexBasis: '160px', minWidth: '160px', wordBreak: 'break-word' }}>                    </Column>
 | 
			
		||||
                        <Column field="bookable" sortable header={headerBookable} body={statusBodyTemplate} style={{ flexGrow: 1, flexBasis: '160px', minWidth: '160px', wordBreak: 'break-word' }}></Column>
 | 
			
		||||
                        <Column field="bookable" sortable header={headerBookable} body={bookableBodyTemplate} style={{ flexGrow: 1, flexBasis: '200px', minWidth: '200px', wordBreak: 'break-word' }}></Column>
 | 
			
		||||
                        <Column field="status" sortable header={headerStatus} body={statusBodyTemplate} style={{ flexGrow: 1, flexBasis: '160px', minWidth: '160px', wordBreak: 'break-word' }}></Column>
 | 
			
		||||
                        <Column style={{ flexGrow: 1, flexBasis: '130px', minWidth: '130px' }} body={actionsCommonArea}></Column>
 | 
			
		||||
                    </DataTable>
 | 
			
		||||
                    <Dialog visible={deleteCommonAreaDialog} style={{ width: '450px' }} header="Confirmar" modal footer={deleteCommonAreaDialogFooter} onHide={hideDeleteCommonAreaDialog}>
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in New Issue