-
Notifications
You must be signed in to change notification settings - Fork 3.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #652 from LAION-AI/238-admin-view-user-messages
Displaying a different user's messages in the admin view
- Loading branch information
Showing
4 changed files
with
105 additions
and
44 deletions.
There are no files selected for viewing
40 changes: 40 additions & 0 deletions
40
website/src/components/UserMessagesCell/UserMessagesCell.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
import { Box, CircularProgress, useColorModeValue } from "@chakra-ui/react"; | ||
import { MessageTable } from "src/components/Messages/MessageTable"; | ||
import fetcher from "src/lib/fetcher"; | ||
import useSWR from "swr"; | ||
|
||
interface UserMessagesCellProps { | ||
/** | ||
* The Web API route to fetch user messages from. By default is | ||
* `/api/messages/users` and fetches the logged in user's messages. | ||
*/ | ||
path?: string; | ||
} | ||
|
||
/** | ||
* Fetches the messages corresponding to a user and presents them in a table. | ||
*/ | ||
const UserMessagesCell = ({ path }: UserMessagesCellProps) => { | ||
const url = path || "/api/messages/user"; | ||
const { data: messages, isLoading } = useSWR(url, fetcher, { | ||
refreshInterval: 2000, | ||
}); | ||
// TODO(#651): This box coloring and styling is used in multiple places. We | ||
// should factor it into a common ui component. | ||
const boxBgColor = useColorModeValue("white", "gray.700"); | ||
const boxAccentColor = useColorModeValue("gray.200", "gray.900"); | ||
|
||
return ( | ||
<Box | ||
backgroundColor={boxBgColor} | ||
boxShadow="base" | ||
dropShadow={boxAccentColor} | ||
borderRadius="xl" | ||
className="p-6 shadow-sm" | ||
> | ||
{isLoading ? <CircularProgress isIndeterminate /> : <MessageTable messages={messages} />} | ||
</Box> | ||
); | ||
}; | ||
|
||
export { UserMessagesCell }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export * from "./UserMessagesCell"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import { withRole } from "src/lib/auth"; | ||
|
||
const handler = withRole("admin", async (req, res) => { | ||
const { user } = req.query; | ||
|
||
const messagesRes = await fetch(`${process.env.FASTAPI_URL}/api/v1/frontend_users/local/${user}/messages`, { | ||
method: "GET", | ||
headers: { | ||
"X-API-Key": process.env.FASTAPI_KEY, | ||
}, | ||
}); | ||
const messages = await messagesRes.json(); | ||
res.status(200).json(messages); | ||
}); | ||
|
||
export default handler; |