Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Finish search method for hammer page
  • Loading branch information
regalijan committed Oct 19, 2023
1 parent 8cd352d commit f419182
Showing 1 changed file with 70 additions and 2 deletions.
72 changes: 70 additions & 2 deletions app/routes/hammer.tsx
Expand Up @@ -3,11 +3,13 @@ import {
Button,
Card,
CardBody,
CardHeader,
Container,
Heading,
HStack,
Image,
Input,
Link,
Stack,
StackDivider,
Text,
Expand Down Expand Up @@ -40,9 +42,72 @@ export default function () {
const [status, setStatus] = useState("");
const [visible, setVisible] = useState(false);
const [avatarUrl, setAvatarUrl] = useState("");
const [history, setHistory] = useState([]);

async function getHistory() {
const username = (document.getElementById("username") as HTMLInputElement)
.value;

if (username.length < 4) return alert("Username is too short!");

const historyResp = await fetch(`/api/game-bans/${username}/history`);

if (!historyResp.ok)
return alert(
`ERROR: ${((await historyResp.json()) as { error: string }).error}`,
);

const history: { [k: string]: any }[] = await historyResp.json();

if (!history.length) return alert("No history for this user.");

const cardList = [];

for (const entry of history) {
const url = entry.entity.properties.evidence.stringValue;
const isUrl = () => {
try {
new URL(url).href;
return true;
} catch {
return false;
}
};

cardList.push(
<Card>
<CardHeader>
<Heading size="md">{new Date().toLocaleString()}</Heading>
</CardHeader>
<CardBody>
<Stack divider={<StackDivider />} spacing="4">
<Box>
<Heading size="xs">ACTION</Heading>
<Text pt="2" size="sm">
{entry.entity.properties.action.stringValue}
</Text>
</Box>
<Box>
<Heading size="xs">EVIDENCE</Heading>
<Text pt="2" size="sm">
{isUrl() ? (
<Link color="#646cff" href={url}>
{url}
</Link>
) : (
url
)}
</Text>
</Box>
</Stack>
</CardBody>
</Card>,
);
}
}

return (
<Container maxW="container.lg">
<Container maxW="container.md">
<Heading>User Lookup</Heading>
<HStack>
<Input
Expand All @@ -54,7 +119,9 @@ export default function () {
}}
placeholder="Roblox username"
/>
<Button ml="8px">Search</Button>
<Button ml="8px" onClick={async () => await getHistory()}>
Search
</Button>
</HStack>
<Card maxW="sm" visibility={visible ? "visible" : "hidden"}>
<CardBody>
Expand All @@ -81,6 +148,7 @@ export default function () {
</Stack>
</CardBody>
</Card>
{history}
</Container>
);
}

0 comments on commit f419182

Please sign in to comment.