Files
firegex-traffic-viewer/frontend/src/components/RegexView/index.tsx

115 lines
5.6 KiB
TypeScript
Raw Normal View History

2022-06-14 22:43:48 +02:00
import { Grid, Text, Title, Badge, Space, ActionIcon, Tooltip } from '@mantine/core';
2022-06-12 16:44:54 +02:00
import React, { useState } from 'react';
2022-06-12 12:09:50 +02:00
import { RegexFilter } from '../../js/models';
2022-07-01 02:29:28 +02:00
import { activateregex, b64decode, deactivateregex, deleteregex, errorNotify, fireUpdateRequest, okNotify } from '../../js/utils';
2022-06-12 12:09:50 +02:00
import style from "./RegexView.module.scss";
2022-06-12 14:40:48 +02:00
import { BsTrashFill } from "react-icons/bs"
2022-06-12 16:44:54 +02:00
import YesNoModal from '../YesNoModal';
import FilterTypeSelector from '../FilterTypeSelector';
2022-06-30 15:58:03 +02:00
import { FaPause, FaPlay } from 'react-icons/fa';
2022-06-12 12:09:50 +02:00
function RegexView({ regexInfo }:{ regexInfo:RegexFilter }) {
2022-06-12 14:40:48 +02:00
2022-06-12 16:44:54 +02:00
const mode_string = regexInfo.mode === "C"? "C -> S":
regexInfo.mode === "S"? "S -> C":
regexInfo.mode === "B"? "S <-> C": "🤔"
2022-06-12 14:40:48 +02:00
2022-07-01 02:29:28 +02:00
let regex_expr = b64decode(regexInfo.regex);
2022-06-12 14:40:48 +02:00
2022-06-12 16:44:54 +02:00
const [deleteModal, setDeleteModal] = useState(false);
2022-06-30 15:58:03 +02:00
const [deleteTooltipOpened, setDeleteTooltipOpened] = useState(false);
const [statusTooltipOpened, setStatusTooltipOpened] = useState(false);
2022-06-12 16:44:54 +02:00
2022-06-13 10:59:05 +02:00
const deleteRegex = () => {
deleteregex(regexInfo.id).then(res => {
if(!res){
okNotify(`Regex ${regex_expr} deleted successfully!`,`Regex '${regex_expr}' ID:${regexInfo.id} has been deleted!`)
2022-06-15 19:44:41 +02:00
fireUpdateRequest()
2022-06-13 10:59:05 +02:00
}else{
errorNotify(`Regex ${regex_expr} deleation failed!`,`Error: ${res}`)
}
}).catch( err => errorNotify(`Regex ${regex_expr} deleation failed!`,`Error: ${err}`))
}
2022-06-30 15:58:03 +02:00
const changeRegexStatus = () => {
(regexInfo.active?deactivateregex:activateregex)(regexInfo.id).then(res => {
if(!res){
okNotify(`Regex ${regex_expr} ${regexInfo.active?"deactivated":"activated"} successfully!`,`Regex '${regex_expr}' ID:${regexInfo.id} has been ${regexInfo.active?"deactivated":"activated"}!`)
fireUpdateRequest()
}else{
errorNotify(`Regex ${regex_expr} ${regexInfo.active?"deactivation":"activation"} failed!`,`Error: ${res}`)
}
}).catch( err => errorNotify(`Regex ${regex_expr} ${regexInfo.active?"deactivation":"activation"} failed!`,`Error: ${err}`))
}
2022-06-12 12:09:50 +02:00
return <div className={style.box}>
2022-06-12 14:40:48 +02:00
<Grid>
<Grid.Col span={2}>
<Title order={2} style={{color:"#FFF"}}>Regex:</Title>
</Grid.Col>
<Grid.Col span={8}>
<Text className={style.regex_text}> {regex_expr}</Text>
</Grid.Col>
2022-06-30 15:58:03 +02:00
<Grid.Col span={2} className='center-flex'>
<Space w="xs" />
<Tooltip label={regexInfo.active?"Deactivate":"Activate"} zIndex={0} transition="pop" transitionDuration={200} /*openDelay={500}*/ transitionTimingFunction="ease" color={regexInfo.active?"orange":"teal"} opened={statusTooltipOpened}>
<ActionIcon color={regexInfo.active?"orange":"teal"} onClick={changeRegexStatus} size="xl" radius="md" variant="filled"
onFocus={() => setStatusTooltipOpened(false)} onBlur={() => setStatusTooltipOpened(false)}
onMouseEnter={() => setStatusTooltipOpened(true)} onMouseLeave={() => setStatusTooltipOpened(false)}
>{regexInfo.active?<FaPause size="20px" />:<FaPlay size="20px" />}</ActionIcon>
</Tooltip>
<Space w="xs" />
<Tooltip label="Delete regex" zIndex={0} transition="pop" transitionDuration={200} /*openDelay={500}*/ transitionTimingFunction="ease" color="red" opened={deleteTooltipOpened} >
2022-06-16 02:25:41 +02:00
<ActionIcon color="red" onClick={()=>setDeleteModal(true)} size="xl" radius="md" variant="filled"
2022-06-30 15:58:03 +02:00
onFocus={() => setDeleteTooltipOpened(false)} onBlur={() => setDeleteTooltipOpened(false)}
onMouseEnter={() => setDeleteTooltipOpened(true)} onMouseLeave={() => setDeleteTooltipOpened(false)}
2022-06-16 02:25:41 +02:00
><BsTrashFill size={22} /></ActionIcon>
2022-06-14 22:43:48 +02:00
</Tooltip>
2022-06-30 15:58:03 +02:00
2022-06-14 22:43:48 +02:00
</Grid.Col>
2022-06-12 14:40:48 +02:00
<Grid.Col span={2} />
<Grid.Col className='center-flex-row' span={4}>
<Space h="xs" />
2022-06-12 16:44:54 +02:00
<FilterTypeSelector
2022-06-12 14:40:48 +02:00
size="md"
color="gray"
disabled
2022-06-12 16:44:54 +02:00
value={regexInfo.is_blacklist?"blacklist":"whitelist"}
/>
<Space h="md" />
<div className='center-flex'>
2022-07-07 21:08:02 +02:00
<Badge size="md" color="cyan" variant="filled">Service: {regexInfo.service_port}</Badge>
2022-06-30 15:58:03 +02:00
<Space w="xs" />
<Badge size="md" color={regexInfo.active?"lime":"red"} variant="filled">{regexInfo.active?"ACTIVE":"DISABLED"}</Badge>
2022-06-12 16:44:54 +02:00
<Space w="xs" />
<Badge size="md" color="gray" variant="filled">ID: {regexInfo.id}</Badge>
2022-06-30 15:58:03 +02:00
2022-06-12 16:44:54 +02:00
</div>
</Grid.Col>
<Grid.Col style={{width:"100%"}} span={6}>
<Space h="xs" />
<div className='center-flex-row'>
2022-06-22 01:31:46 +02:00
<Badge size="md" color={regexInfo.is_case_sensitive?"grape":"pink"} variant="filled">Case: {regexInfo.is_case_sensitive?"SENSIIVE":"INSENSITIVE"}</Badge>
2022-06-17 20:48:27 +02:00
<Space h="xs" />
2022-06-12 16:44:54 +02:00
<Badge size="md" color="yellow" variant="filled">Packets filtered: {regexInfo.n_packets}</Badge>
<Space h="xs" />
<Badge size="md" color="blue" variant="filled">Mode: {mode_string}</Badge>
</div>
</Grid.Col>
2022-06-12 14:40:48 +02:00
</Grid>
2022-06-12 16:44:54 +02:00
<YesNoModal
title='Are you sure to delete this regex?'
description={`You are going to delete the regex '${regex_expr}'.`}
2022-06-12 16:44:54 +02:00
onClose={()=>setDeleteModal(false)}
2022-06-13 10:59:05 +02:00
action={deleteRegex}
2022-06-12 16:44:54 +02:00
opened={deleteModal}
/>
2022-06-12 12:09:50 +02:00
</div>
}
export default RegexView;