-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
16 changed files
with
356 additions
and
61 deletions.
There are no files selected for viewing
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,71 @@ | ||
name: Deploy language website to GitHub Pages | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
workflow_dispatch: | ||
|
||
permissions: | ||
contents: read | ||
pages: write | ||
id-token: write | ||
|
||
concurrency: | ||
group: "pages" | ||
cancel-in-progress: false | ||
|
||
jobs: | ||
changes: | ||
name: Changes | ||
runs-on: ubuntu-24.04 | ||
outputs: | ||
language: ${{ steps.changes.outputs.language }} | ||
workflows: ${{ steps.changes.outputs.workflows }} | ||
steps: | ||
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | ||
- name: Check frontend files changed | ||
uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3.0.2 | ||
id: changes | ||
with: | ||
filters: | | ||
language: | ||
- 'language/**' | ||
- .tool-versions | ||
workflows: | ||
- '.github/workflows/deploy-language-website.yml' | ||
deploy: | ||
environment: | ||
name: github-pages | ||
url: ${{ steps.deployment.outputs.page_url }} | ||
runs-on: ubuntu-24.04 | ||
needs: changes | ||
if: needs.changes.outputs.language == 'true' || needs.changes.outputs.workflows == 'true' | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Setup Pages | ||
uses: actions/configure-pages@v5 | ||
- name: Install tools | ||
uses: jdx/mise-action@5bb8f8c1911837cf42064e6490e7634fc842ee7e # v2.1.8 | ||
- name: Cache dependencies | ||
uses: Swatinem/rust-cache@82a92a6e8fbeee089604da2575dc567ae9ddeaab # v2.7.5 | ||
- name: Install Rust toolchain | ||
run: rustup toolchain install stable | ||
- name: Install cargo-binstall | ||
run: curl -L --proto '=https' --tlsv1.2 -sSf https://raw.githubusercontent.com/cargo-bins/cargo-binstall/main/install-from-binstall-release.sh | bash | ||
- name: Install cargo-component | ||
run: cargo binstall cargo-component | ||
- name: Install dependencies | ||
run: bun install --frozen-lockfile | ||
- name: Build | ||
run: bun run build | ||
working-directory: ./language/website | ||
- name: Upload artifact | ||
uses: actions/upload-pages-artifact@v3 | ||
with: | ||
path: "./language/website/dist" | ||
- name: Deploy to GitHub Pages | ||
id: deployment | ||
uses: actions/deploy-pages@v4 |
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 |
---|---|---|
@@ -1,2 +1,2 @@ | ||
nodejs 22.12.0 | ||
bun 1.1.38 | ||
bun 1.1.40 |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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
13 changes: 13 additions & 0 deletions
13
frontend/src/routes/_student/problems/-context/problems-context.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,13 @@ | ||
import { UseSuspenseQueryResult } from "@tanstack/react-query" | ||
import { components } from "openapi/schema" | ||
import { createContext } from "react" | ||
|
||
export type Problem = components["schemas"]["Problem"] | ||
|
||
export type ProblemsContextType = { | ||
problems: UseSuspenseQueryResult<Problem[], undefined> | ||
} | ||
|
||
export const ProblemsContext = createContext<ProblemsContextType | undefined>( | ||
undefined, | ||
) |
21 changes: 21 additions & 0 deletions
21
frontend/src/routes/_student/problems/-context/problems-provider.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,21 @@ | ||
import { $api } from "@/lib/api" | ||
import React from "react" | ||
|
||
import { ProblemsContext } from "./problems-context" | ||
|
||
// ProblemsProvider の Props 型 | ||
export type ProblemsProviderProps = { | ||
children?: React.ReactNode | ||
} | ||
|
||
export const ProblemsProvider: React.FC<ProblemsProviderProps> = ({ | ||
children, | ||
}) => { | ||
const problems = $api.useSuspenseQuery("get", "/api/problems") | ||
|
||
return ( | ||
<ProblemsContext.Provider value={{ problems }}> | ||
{children} | ||
</ProblemsContext.Provider> | ||
) | ||
} |
11 changes: 11 additions & 0 deletions
11
frontend/src/routes/_student/problems/-context/use-problems-context.ts
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,11 @@ | ||
import { useContext } from "react" | ||
|
||
import { ProblemsContext, ProblemsContextType } from "./problems-context.tsx" | ||
|
||
export const useProblemsContext = (): ProblemsContextType => { | ||
const context = useContext(ProblemsContext) | ||
if (!context) { | ||
throw new Error("useProblemsContext must be used within a ProblemsProvider") | ||
} | ||
return context | ||
} |
11 changes: 11 additions & 0 deletions
11
frontend/src/routes/_student/problems/-hooks/use-problem.ts
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,11 @@ | ||
import { useContext } from "react" | ||
|
||
import { ProblemsContext } from "../-context/problems-context" | ||
|
||
export const useProblem = () => { | ||
const context = useContext(ProblemsContext) | ||
if (context === undefined) { | ||
throw new Error("useProblem must be used within a ProblemProvider") | ||
} | ||
return context | ||
} |
Oops, something went wrong.