-
Notifications
You must be signed in to change notification settings - Fork 253
[cueweb] Add Monitor Cue page (CueCommander parity) #2423
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
Open
ramonfigueiredo
wants to merge
38
commits into
AcademySoftwareFoundation:master
Choose a base branch
from
ramonfigueiredo:cueweb-monitor-cue
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 8 commits
Commits
Show all changes
38 commits
Select commit
Hold shift + click to select a range
3dfd04b
[cueweb] Add Services (Facility Service Defaults) page (CueCommander …
ramonfigueiredo 311cfb1
[cueweb] Add Stuck Frames page (CueCommander parity)
ramonfigueiredo e5502de
[cueweb] Stuck Frames: full StuckFramePlugin parity (CueCommander)
ramonfigueiredo 791ddde
[cueweb] Monitor Hosts: Full CueCommander parity
ramonfigueiredo 6015a08
[cueweb] Add Monitor Cue page (CueCommander parity)
ramonfigueiredo 912cf57
[cueweb] Job/Layer/Frame context-menu parity + frame log viewer enhan…
ramonfigueiredo fc32257
Merge branch 'cueweb/job-layer-frame-actions-and-log-viewer' into cue…
ramonfigueiredo 42c8846
[cueweb] Monitor Cue: CueGUI parity for menu, columns, booking bar, s…
ramonfigueiredo 72bee10
Merge branch 'master' into cueweb-monitor-hosts-full
ramonfigueiredo 3cedab5
Merge branch 'master' into cueweb/job-layer-frame-actions-and-log-viewer
ramonfigueiredo 46edae4
Merge branch 'master' into cueweb-monitor-cue
ramonfigueiredo 15ce44e
[cueweb] Address Monitor Hosts review: route cleanup, races, a11y, fi…
ramonfigueiredo 53a59a2
[cueweb] Monitor Hosts: ownership, comments parity, tag refinements, …
ramonfigueiredo 4ac4247
Merge branch 'master' into cueweb-facility-service-defaults
ramonfigueiredo a15f4bd
Merge branch 'master' into cueweb-stuck-frames
ramonfigueiredo 8245516
[cueweb] Services: surface load/save/delete failures instead of maski…
ramonfigueiredo e57ab7f
[cueweb] Stuck Frames: bound per-job fan-out, paginate frames, surfac…
ramonfigueiredo 5870b61
[cueweb] Stuck Frames: address review feedback
ramonfigueiredo 74f55e2
[cueweb] Monitor Hosts: gate comment save on action success
ramonfigueiredo f7de7fb
[cueweb] Stuck Frames: address review feedback
ramonfigueiredo 8260178
[cueweb] Monitor Cue: address review feedback
ramonfigueiredo dd59f8a
[cueweb] frame/preview: canonicalize with realpath before the root check
ramonfigueiredo 0fc75ae
[cueweb] Stuck Frames: address review feedback
ramonfigueiredo 2cf2f6f
[cueweb] Layer/frame actions & log viewer: address review feedback
ramonfigueiredo 7d4a516
Merge branch 'cueweb/job-layer-frame-actions-and-log-viewer' of https…
ramonfigueiredo 9d72247
Merge branch 'cueweb-monitor-cue' into cueweb/job-layer-frame-actions…
ramonfigueiredo e13790e
[cueweb] Stuck Frames: address review feedback
ramonfigueiredo 956df07
[cueweb/docs] Document Facility Service Defaults (Services) page
ramonfigueiredo 11d20e0
[cueweb] Monitor Cue: Add show right-click menu (Properties, Create G…
ramonfigueiredo 8457de4
Merge branch 'cueweb-facility-service-defaults' into cueweb-monitor-cue
ramonfigueiredo cf7b48c
[cueweb] Monitor Cue: group folder tree + Service Properties (show ov…
ramonfigueiredo 69f2737
[cueweb] Monitor Cue: harden API routes and dialogs per review feedback
ramonfigueiredo 6c98a2e
[cueweb] Frame log viewer: version metadata, download, and error jumper
ramonfigueiredo 9dfcd27
[cueweb] Attributes panel: frame selection + copy key/value buttons
ramonfigueiredo 567e905
Merge branch 'cueweb-monitor-hosts-full' into cueweb/job-layer-frame-…
ramonfigueiredo 0e211f2
Merge branch 'cueweb-monitor-cue' into cueweb/job-layer-frame-actions…
ramonfigueiredo bc964e0
Merge branch 'cueweb-stuck-frames' into cueweb/job-layer-frame-action…
ramonfigueiredo bae451b
[cueweb] Wire Attributes panel to all entity views (CueGUI parity)
ramonfigueiredo 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
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
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,36 @@ | ||
| /* | ||
| * Copyright Contributors to the OpenCue Project | ||
| * | ||
| * Licensed under the Apache License, Version 2.0 (the "License"); | ||
| * you may not use this file except in compliance with the License. | ||
| * You may obtain a copy of the License at | ||
| * | ||
| * http://www.apache.org/licenses/LICENSE-2.0 | ||
| * | ||
| * Unless required by applicable law or agreed to in writing, software | ||
| * distributed under the License is distributed on an "AS IS" BASIS, | ||
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| * See the License for the specific language governing permissions and | ||
| * limitations under the License. | ||
| */ | ||
|
|
||
| import { handleRoute } from '@/app/utils/api_utils'; | ||
| import { NextRequest, NextResponse } from "next/server"; | ||
|
|
||
| // List the known department names (for the Group dialog's Department dropdown). | ||
| // Request: {} (empty). RPC: /department.DepartmentInterface/GetDepartmentNames. | ||
| export async function POST(request: NextRequest) { | ||
| const endpoint = "/department.DepartmentInterface/GetDepartmentNames"; | ||
| const method = request.method; | ||
| if (method !== 'POST') { | ||
| return NextResponse.json({ error: 'Invalid method. Only POST is allowed.' }, { status: 405 }); | ||
| } | ||
|
|
||
| const response = await handleRoute(method, endpoint, JSON.stringify({})); | ||
| const responseData = await response.json(); | ||
|
|
||
| if (!response.ok) { | ||
| return NextResponse.json({ error: responseData?.error ?? "Failed to fetch department names" }, { status: response.status }); | ||
| } | ||
| return NextResponse.json({ data: responseData.data?.names ?? [] }, { status: response.status }); | ||
| } |
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,39 @@ | ||
| /* | ||
| * Copyright Contributors to the OpenCue Project | ||
| * | ||
| * Licensed under the Apache License, Version 2.0 (the "License"); | ||
| * you may not use this file except in compliance with the License. | ||
| * You may obtain a copy of the License at | ||
| * | ||
| * http://www.apache.org/licenses/LICENSE-2.0 | ||
| * | ||
| * Unless required by applicable law or agreed to in writing, software | ||
| * distributed under the License is distributed on an "AS IS" BASIS, | ||
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| * See the License for the specific language governing permissions and | ||
| * limitations under the License. | ||
| */ | ||
|
|
||
| import { handleRoute } from '@/app/utils/api_utils'; | ||
| import { NextRequest, NextResponse } from "next/server"; | ||
|
|
||
| // List a department's tasks. Request: { department }. | ||
| // RPC: /department.DepartmentInterface/GetTasks (nested under tasks.tasks). | ||
| export async function POST(request: NextRequest) { | ||
| const endpoint = "/department.DepartmentInterface/GetTasks"; | ||
| const method = request.method; | ||
| if (method !== 'POST') { | ||
| return NextResponse.json({ error: 'Invalid method. Only POST is allowed.' }, { status: 405 }); | ||
| } | ||
|
|
||
| const body = JSON.stringify(await request.json()); | ||
| const jsonBody = JSON.parse(body); | ||
| if (!jsonBody || typeof jsonBody !== 'object' || !jsonBody.department?.id) { | ||
| return NextResponse.json({ error: 'Invalid request body: department is required' }, { status: 400 }); | ||
| } | ||
|
|
||
| const response = await handleRoute(method, endpoint, body); | ||
| const responseData = await response.json(); | ||
| if (!response.ok) return NextResponse.json({ error: responseData.error }, { status: response.status }); | ||
| return NextResponse.json({ data: responseData.data?.tasks?.tasks ?? [] }, { status: response.status }); | ||
| } | ||
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,39 @@ | ||
| /* | ||
| * Copyright Contributors to the OpenCue Project | ||
| * | ||
| * Licensed under the Apache License, Version 2.0 (the "License"); | ||
| * you may not use this file except in compliance with the License. | ||
| * You may obtain a copy of the License at | ||
| * | ||
| * http://www.apache.org/licenses/LICENSE-2.0 | ||
| * | ||
| * Unless required by applicable law or agreed to in writing, software | ||
| * distributed under the License is distributed on an "AS IS" BASIS, | ||
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| * See the License for the specific language governing permissions and | ||
| * limitations under the License. | ||
| */ | ||
|
|
||
| import { handleRoute } from '@/app/utils/api_utils'; | ||
| import { NextRequest, NextResponse } from "next/server"; | ||
|
|
||
| // List a filter's actions. Request: { filter }. | ||
| // RPC: /filter.FilterInterface/GetActions (nested under actions.actions). | ||
| export async function POST(request: NextRequest) { | ||
| const endpoint = "/filter.FilterInterface/GetActions"; | ||
| const method = request.method; | ||
| if (method !== 'POST') { | ||
| return NextResponse.json({ error: 'Invalid method. Only POST is allowed.' }, { status: 405 }); | ||
| } | ||
|
|
||
| const body = JSON.stringify(await request.json()); | ||
| const jsonBody = JSON.parse(body); | ||
| if (!jsonBody || typeof jsonBody !== 'object' || !jsonBody.filter?.id) { | ||
|
ramonfigueiredo marked this conversation as resolved.
Outdated
|
||
| return NextResponse.json({ error: 'Invalid request body: filter is required' }, { status: 400 }); | ||
| } | ||
|
|
||
| const response = await handleRoute(method, endpoint, body); | ||
| const responseData = await response.json(); | ||
| if (!response.ok) return NextResponse.json({ error: responseData.error }, { status: response.status }); | ||
| return NextResponse.json({ data: responseData.data?.actions?.actions ?? [] }, { status: response.status }); | ||
| } | ||
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,39 @@ | ||
| /* | ||
| * Copyright Contributors to the OpenCue Project | ||
| * | ||
| * Licensed under the Apache License, Version 2.0 (the "License"); | ||
| * you may not use this file except in compliance with the License. | ||
| * You may obtain a copy of the License at | ||
| * | ||
| * http://www.apache.org/licenses/LICENSE-2.0 | ||
| * | ||
| * Unless required by applicable law or agreed to in writing, software | ||
| * distributed under the License is distributed on an "AS IS" BASIS, | ||
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| * See the License for the specific language governing permissions and | ||
| * limitations under the License. | ||
| */ | ||
|
|
||
| import { handleRoute } from '@/app/utils/api_utils'; | ||
| import { NextRequest, NextResponse } from "next/server"; | ||
|
|
||
| // List a filter's matchers. Request: { filter }. | ||
| // RPC: /filter.FilterInterface/GetMatchers (nested under matchers.matchers). | ||
| export async function POST(request: NextRequest) { | ||
| const endpoint = "/filter.FilterInterface/GetMatchers"; | ||
| const method = request.method; | ||
| if (method !== 'POST') { | ||
| return NextResponse.json({ error: 'Invalid method. Only POST is allowed.' }, { status: 405 }); | ||
| } | ||
|
|
||
| const body = JSON.stringify(await request.json()); | ||
| const jsonBody = JSON.parse(body); | ||
| if (!jsonBody || typeof jsonBody !== 'object' || !jsonBody.filter?.id) { | ||
|
ramonfigueiredo marked this conversation as resolved.
Outdated
|
||
| return NextResponse.json({ error: 'Invalid request body: filter is required' }, { status: 400 }); | ||
| } | ||
|
|
||
| const response = await handleRoute(method, endpoint, body); | ||
| const responseData = await response.json(); | ||
| if (!response.ok) return NextResponse.json({ error: responseData.error }, { status: response.status }); | ||
| return NextResponse.json({ data: responseData.data?.matchers?.matchers ?? [] }, { status: response.status }); | ||
| } | ||
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,71 @@ | ||
| /* | ||
| * Copyright Contributors to the OpenCue Project | ||
| * | ||
| * Licensed under the Apache License, Version 2.0 (the "License"); | ||
| * you may not use this file except in compliance with the License. | ||
| * You may obtain a copy of the License at | ||
| * | ||
| * http://www.apache.org/licenses/LICENSE-2.0 | ||
| * | ||
| * Unless required by applicable law or agreed to in writing, software | ||
| * distributed under the License is distributed on an "AS IS" BASIS, | ||
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| * See the License for the specific language governing permissions and | ||
| * limitations under the License. | ||
| */ | ||
|
|
||
| import { handleRoute } from '@/app/utils/api_utils'; | ||
| import { NextRequest, NextResponse } from "next/server"; | ||
|
|
||
| // Consolidated proxy for the View Filters dialog mutations. The body is | ||
| // { op, ...payload }; `op` selects one of the allowlisted Filter / Matcher / | ||
| // Action RPCs and the rest of the body is forwarded verbatim. Returns the | ||
| // gateway response data (the created object for create ops). | ||
| const ENDPOINTS: Record<string, string> = { | ||
| // ShowInterface | ||
| "show.createfilter": "/show.ShowInterface/CreateFilter", | ||
| // FilterInterface | ||
| "filter.setname": "/filter.FilterInterface/SetName", | ||
| "filter.settype": "/filter.FilterInterface/SetType", | ||
| "filter.setenabled": "/filter.FilterInterface/SetEnabled", | ||
| "filter.setorder": "/filter.FilterInterface/SetOrder", | ||
| "filter.raiseorder": "/filter.FilterInterface/RaiseOrder", | ||
| "filter.lowerorder": "/filter.FilterInterface/LowerOrder", | ||
| "filter.orderfirst": "/filter.FilterInterface/OrderFirst", | ||
| "filter.orderlast": "/filter.FilterInterface/OrderLast", | ||
| "filter.delete": "/filter.FilterInterface/Delete", | ||
| "filter.creatematcher": "/filter.FilterInterface/CreateMatcher", | ||
| "filter.createaction": "/filter.FilterInterface/CreateAction", | ||
| // MatcherInterface | ||
| "matcher.commit": "/filter.MatcherInterface/Commit", | ||
| "matcher.delete": "/filter.MatcherInterface/Delete", | ||
| // ActionInterface | ||
| "action.commit": "/filter.ActionInterface/Commit", | ||
| "action.delete": "/filter.ActionInterface/Delete", | ||
| }; | ||
|
|
||
| export async function POST(request: NextRequest) { | ||
| const method = request.method; | ||
| if (method !== 'POST') { | ||
| return NextResponse.json({ error: 'Invalid method. Only POST is allowed.' }, { status: 405 }); | ||
| } | ||
|
|
||
| let jsonBody: any; | ||
| try { | ||
| jsonBody = await request.json(); | ||
| } catch { | ||
| return NextResponse.json({ error: 'Invalid JSON in request body' }, { status: 400 }); | ||
| } | ||
| const { op, ...payload } = jsonBody ?? {}; | ||
| const endpoint = typeof op === 'string' ? ENDPOINTS[op] : undefined; | ||
| if (!endpoint) { | ||
| return NextResponse.json({ error: `Unknown filter op: ${op}` }, { status: 400 }); | ||
| } | ||
|
|
||
| const response = await handleRoute(method, endpoint, JSON.stringify(payload), true); | ||
| const responseData = await response.json(); | ||
| if (!response.ok) { | ||
| return NextResponse.json({ error: responseData?.error ?? `Failed: ${op}` }, { status: response.status }); | ||
| } | ||
| return NextResponse.json({ data: responseData.data ?? { success: true } }, { status: response.status }); | ||
|
ramonfigueiredo marked this conversation as resolved.
|
||
| } | ||
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
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
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
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,42 @@ | ||
| /* | ||
| * Copyright Contributors to the OpenCue Project | ||
| * | ||
| * Licensed under the Apache License, Version 2.0 (the "License"); | ||
| * you may not use this file except in compliance with the License. | ||
| * You may obtain a copy of the License at | ||
| * | ||
| * http://www.apache.org/licenses/LICENSE-2.0 | ||
| * | ||
| * Unless required by applicable law or agreed to in writing, software | ||
| * distributed under the License is distributed on an "AS IS" BASIS, | ||
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| * See the License for the specific language governing permissions and | ||
| * limitations under the License. | ||
| */ | ||
|
|
||
| import { handleRoute } from '@/app/utils/api_utils'; | ||
| import { NextRequest, NextResponse } from "next/server"; | ||
|
|
||
| // Drop all dependencies on a frame (CueGUI FrameActions.dropDepends). | ||
| // RPC: /job.FrameInterface/DropDepends. Request: { frame, target } where | ||
| // target is a depend.DependTarget name (default "ANY_TARGET" = drop all). | ||
| export async function POST(request: NextRequest) { | ||
| const endpoint = "/job.FrameInterface/DropDepends"; | ||
| if (request.method !== 'POST') { | ||
| return NextResponse.json({ error: 'Invalid method. Only POST is allowed.' }, { status: 405 }); | ||
| } | ||
| let jsonBody: any; | ||
| try { | ||
| jsonBody = await request.json(); | ||
| } catch { | ||
| return NextResponse.json({ error: 'Invalid JSON body' }, { status: 400 }); | ||
| } | ||
| if (!jsonBody?.frame) { | ||
| return NextResponse.json({ error: 'Invalid request body (need {frame})' }, { status: 400 }); | ||
| } | ||
| if (!jsonBody.target) jsonBody.target = "ANY_TARGET"; | ||
| const response = await handleRoute(request.method, endpoint, JSON.stringify(jsonBody), true); | ||
| const responseData = await response.json(); | ||
| if (!response.ok) return NextResponse.json({ error: responseData.error }, { status: response.status }); | ||
| return NextResponse.json({ data: responseData.data }, { status: response.status }); | ||
| } |
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,41 @@ | ||
| /* | ||
| * Copyright Contributors to the OpenCue Project | ||
| * | ||
| * Licensed under the Apache License, Version 2.0 (the "License"); | ||
| * you may not use this file except in compliance with the License. | ||
| * You may obtain a copy of the License at | ||
| * | ||
| * http://www.apache.org/licenses/LICENSE-2.0 | ||
| * | ||
| * Unless required by applicable law or agreed to in writing, software | ||
| * distributed under the License is distributed on an "AS IS" BASIS, | ||
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| * See the License for the specific language governing permissions and | ||
| * limitations under the License. | ||
| */ | ||
|
|
||
| import { handleRoute } from '@/app/utils/api_utils'; | ||
| import { NextRequest, NextResponse } from "next/server"; | ||
|
|
||
| // Return the dependencies a frame depends on (CueGUI DependDialog -> | ||
| // getWhatThisDependsOn). RPC: /job.FrameInterface/GetWhatThisDependsOn. | ||
| // Request: { frame }. Response wraps a depend.DependSeq. | ||
| export async function POST(request: NextRequest) { | ||
| const endpoint = "/job.FrameInterface/GetWhatThisDependsOn"; | ||
| const method = request.method; | ||
| if (method !== 'POST') { | ||
| return NextResponse.json({ error: 'Invalid method. Only POST is allowed.' }, { status: 405 }); | ||
| } | ||
|
|
||
| const body = JSON.stringify(await request.json()); | ||
| const jsonBody = JSON.parse(body); | ||
| if (!jsonBody || typeof jsonBody !== 'object' || !jsonBody.frame) { | ||
| return NextResponse.json({ error: 'Invalid request body' }, { status: 400 }); | ||
| } | ||
|
|
||
| const response = await handleRoute(method, endpoint, body, true); | ||
| const responseData = await response.json(); | ||
|
|
||
| if (!response.ok) return NextResponse.json({ error: responseData.error }, { status: response.status }); | ||
| return NextResponse.json({ data: responseData.data }, { status: response.status }); | ||
| } |
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.