-
Notifications
You must be signed in to change notification settings - Fork 191
ui notifications #1622
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
ui notifications #1622
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
a9c45ad
squash
Rainhunter13 8a30e8b
fix: use trace_id instead of array index as React list key for notewo…
greptile-apps[bot] 7b07498
ui fix
Rainhunter13 9bc957a
cjore
Rainhunter13 db5653a
fix: handle serialization failure explicitly in MQ payload size guard
greptile-apps[bot] File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
61 changes: 61 additions & 0 deletions
61
frontend/app/api/workspaces/[workspaceId]/notifications/route.ts
This file contains hidden or 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,61 @@ | ||
| import { type NextRequest, NextResponse } from "next/server"; | ||
| import { getServerSession } from "next-auth"; | ||
|
|
||
| import { getWebNotifications, markNotificationAsRead } from "@/lib/actions/notifications"; | ||
| import { authOptions } from "@/lib/auth"; | ||
| import { isProjectInWorkspace } from "@/lib/authorization"; | ||
|
|
||
| export async function GET(request: NextRequest, props: { params: Promise<{ workspaceId: string }> }) { | ||
| const { workspaceId } = await props.params; | ||
|
|
||
| try { | ||
| const session = await getServerSession(authOptions); | ||
| const userId = session?.user?.id; | ||
| if (!userId) { | ||
| return NextResponse.json({ error: "Unauthorized" }, { status: 401 }); | ||
| } | ||
| const projectId = request.nextUrl.searchParams.get("projectId"); | ||
| if (!projectId) { | ||
| return NextResponse.json({ error: "projectId query parameter is required" }, { status: 400 }); | ||
| } | ||
| if (!(await isProjectInWorkspace(projectId, workspaceId))) { | ||
| return NextResponse.json({ error: "Project does not belong to this workspace" }, { status: 400 }); | ||
| } | ||
| const result = await getWebNotifications({ userId, projectId }); | ||
Rainhunter13 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| return NextResponse.json(result); | ||
| } catch (error) { | ||
| console.error(error); | ||
| return NextResponse.json( | ||
| { error: error instanceof Error ? error.message : "Failed to fetch notifications." }, | ||
| { status: 500 } | ||
| ); | ||
| } | ||
| } | ||
|
|
||
| export async function POST(request: NextRequest, props: { params: Promise<{ workspaceId: string }> }) { | ||
| const { workspaceId } = await props.params; | ||
|
|
||
| try { | ||
| const session = await getServerSession(authOptions); | ||
| const userId = session?.user?.id; | ||
| if (!userId) { | ||
| return NextResponse.json({ error: "Unauthorized" }, { status: 401 }); | ||
| } | ||
| const body = await request.json(); | ||
| const { notificationId, projectId } = body; | ||
| if (!notificationId || !projectId) { | ||
| return NextResponse.json({ error: "notificationId and projectId are required" }, { status: 400 }); | ||
| } | ||
| if (!(await isProjectInWorkspace(projectId, workspaceId))) { | ||
| return NextResponse.json({ error: "Project does not belong to this workspace" }, { status: 400 }); | ||
| } | ||
| await markNotificationAsRead({ userId, notificationId, projectId }); | ||
| return NextResponse.json({ success: true }); | ||
| } catch (error) { | ||
| console.error(error); | ||
| return NextResponse.json( | ||
| { error: error instanceof Error ? error.message : "Failed to mark notification as read." }, | ||
| { status: 500 } | ||
| ); | ||
| } | ||
| } | ||
This file contains hidden or 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
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.