This repository was archived by the owner on Jan 9, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Refactor to utilize context for metrics and sample manifest #2
Open
owtaylor
wants to merge
1
commit into
main
Choose a base branch
from
owtaylor/context-hooks
base: main
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 all commits
Commits
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
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,68 @@ | ||
| import { createContext, useContext, useEffect, useState } from "react"; | ||
| import { BASE } from "../site"; | ||
|
|
||
| interface Manifest { | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please rename this to SampleManifest |
||
| models: string[]; | ||
| languages: string[]; | ||
| templates: string[]; | ||
| postprocessors: string[]; | ||
| } | ||
|
|
||
| const emptyManifest: Manifest = { | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. there is no point to this since useSampleManifest() returns |
||
| models: [], | ||
| languages: [], | ||
| templates: [], | ||
| postprocessors: [], | ||
| }; | ||
|
|
||
| const SampleManifestContext = createContext<Manifest | undefined>(undefined); | ||
|
|
||
| export function SampleManifestProvider({ | ||
| children, | ||
| }: { | ||
| children: React.ReactNode; | ||
| }) { | ||
| const [manifest, setManifest] = useState<Manifest>(emptyManifest); | ||
| const [error, setError] = useState<string | null>(null); | ||
|
|
||
| useEffect(() => { | ||
| async function loadManifest() { | ||
| try { | ||
| const response = await fetch(BASE + "/samples/manifest.json"); | ||
|
|
||
| if (!response.ok) { | ||
| throw new Error(`Failed to load manifest: ${response.statusText}`); | ||
| } | ||
|
|
||
| const data = await response.json(); | ||
| setManifest(data); | ||
| } catch (err) { | ||
| console.error("Error loading manifest:", err); | ||
| setError(err instanceof Error ? err.message : "Failed to load options"); | ||
| } | ||
| } | ||
|
|
||
| loadManifest(); | ||
| }, []); | ||
|
|
||
| if (error) { | ||
| // You might want to handle this differently depending on your needs | ||
| console.error(error); | ||
| } | ||
|
|
||
| return ( | ||
| <SampleManifestContext.Provider value={manifest}> | ||
| {children} | ||
| </SampleManifestContext.Provider> | ||
| ); | ||
| } | ||
|
|
||
| export function useSampleManifest() { | ||
| const context = useContext(SampleManifestContext); | ||
| if (context === undefined) { | ||
| throw new Error( | ||
| "useSampleManifest must be used within a SampleManifestProvider", | ||
| ); | ||
| } | ||
| return context; | ||
| } | ||
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's add an
error?: stringfield to MetricsStore and Manifest so that the web page can display an error rather than just being stuck in a loading state.Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
And please make the pages display the errors rather than content if the error fields are set