@chakra-ui/react#TableCaption TypeScript Examples
The following examples show how to use
@chakra-ui/react#TableCaption.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: DevicesTable.tsx From bluebubbles-server with Apache License 2.0 | 6 votes |
DevicesTable = ({ devices }: { devices: Array<DeviceItem> }): JSX.Element => {
return (
<Table variant="striped" colorScheme="blue" size='sm'>
<TableCaption>Devices registered for notifications over Google Play Services</TableCaption>
<Thead>
<Tr>
<Th>Name</Th>
<Th>ID</Th>
<Th isNumeric>Last Active</Th>
</Tr>
</Thead>
<Tbody>
{devices.map(item => (
<Tr key={item.name}>
<Td wordBreak='break-all'>{item.name}</Td>
<Td wordBreak='break-all'>{`${item.id.substring(0, 100)}...`}</Td>
<Td isNumeric>{new Date(item.lastActive).toLocaleString()}</Td>
</Tr>
))}
</Tbody>
</Table>
);
}
Example #2
Source File: LogsTable.tsx From bluebubbles-server with Apache License 2.0 | 6 votes |
LogsTable = ({ logs }: { logs: Array<LogItem> }): JSX.Element => {
return (
<Table variant="striped" colorScheme="blue" size='sm'>
<TableCaption>Logs will stream in as they come in</TableCaption>
<Thead>
<Tr>
<Th>Log</Th>
<Th isNumeric>Timestamp</Th>
</Tr>
</Thead>
<Tbody>
{logs.map(item => (
<Tr key={item.id}>
<Td wordBreak="break-word">{item.message}</Td>
<Td isNumeric>{item.timestamp.toLocaleString()}</Td>
</Tr>
))}
</Tbody>
</Table>
);
}
Example #3
Source File: NotificationsTable.tsx From bluebubbles-server with Apache License 2.0 | 6 votes |
NotificationsTable = ({ notifications }: { notifications: Array<NotificationItem> }): JSX.Element => {
return (
<Table variant="striped" colorScheme="blue">
<TableCaption>
Alerts are normal to have. As long as the server recovers,
you have nothing to worry about. Alerts are mostly helpful when you
are experiencing an issue and want to see if any errors have occured.
</TableCaption>
<Thead>
<Tr>
<Th>Type</Th>
<Th>Notification</Th>
<Th isNumeric>Time / Read</Th>
</Tr>
</Thead>
<Tbody>
{notifications.map(item => (
<Tr key={item.id} color={(item?.read ?? false) ? 'gray.400' : 'current'}>
<Td>
<Icon
ml={2}
fontSize="24"
as={AlertTypeIcon[item.type] ?? AiOutlineWarning}
/>
</Td>
<Td>{item.message}</Td>
<Td isNumeric>
<Flex flexDirection="row" justifyContent='flex-end' alignItems='center'>
<Text mr={1}>{item.timestamp.toLocaleString()}</Text>
{(item?.read ?? false) ? <BsCheckAll fontSize={24} /> : null}
</Flex>
</Td>
</Tr>
))}
</Tbody>
</Table>
);
}
Example #4
Source File: WebhooksTable.tsx From bluebubbles-server with Apache License 2.0 | 5 votes |
WebhooksTable = ({ webhooks }: { webhooks: Array<WebhookItem> }): JSX.Element => {
const dispatch = useAppDispatch();
const dialogRef = useRef(null);
const [selectedId, setSelectedId] = useState(undefined as number | undefined);
return (
<Box>
<Table variant="striped" colorScheme="blue">
<TableCaption>These are callbacks to receive events from the BlueBubbles Server</TableCaption>
<Thead>
<Tr>
<Th>URL</Th>
<Th>Event Subscriptions</Th>
<Th isNumeric>Actions</Th>
</Tr>
</Thead>
<Tbody>
{webhooks.map(item => (
<Tr key={item.id}>
<Td>{item.url}</Td>
<Td>{JSON.parse(item.events).map((e: string) => webhookEventValueToLabel(e)).join(', ')}</Td>
<Td isNumeric>
<Grid templateColumns="repeat(2, 1fr)">
<Tooltip label='Edit' placement='bottom'>
<GridItem _hover={{ cursor: 'pointer' }} onClick={() => setSelectedId(item.id)}>
<Icon as={AiOutlineEdit} />
</GridItem>
</Tooltip>
<Tooltip label='Delete' placement='bottom'>
<GridItem _hover={{ cursor: 'pointer' }} onClick={() => dispatch(remove(item.id))}>
<Icon as={FiTrash} />
</GridItem>
</Tooltip>
</Grid>
</Td>
</Tr>
))}
</Tbody>
</Table>
<AddWebhookDialog
existingId={selectedId}
modalRef={dialogRef}
isOpen={!!selectedId}
onClose={() => {
setSelectedId(undefined);
}}
/>
</Box>
);
}