-
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
1 parent
0eb16da
commit 0aa22ae
Showing
23 changed files
with
281 additions
and
161 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
name: Frontend Lib | ||
|
||
permissions: read-all | ||
|
||
on: | ||
push: | ||
paths: | ||
- frontend/lib/** | ||
- .github/workflows/frontend_lib.yml | ||
pull_request: | ||
types: opened | ||
paths: | ||
- frontend/lib/** | ||
- .github/workflows/frontend_lib.yml | ||
|
||
jobs: | ||
format: | ||
name: Format | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
- name: Setup Node.js | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 18.x | ||
cache: yarn | ||
cache-dependency-path: frontend/lib/yarn.lock | ||
- name: Install dependencies | ||
run: | | ||
cd frontend/lib | ||
yarn install | ||
- name: Format | ||
run: | | ||
cd frontend/lib | ||
yarn format | ||
lint: | ||
name: Lint | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
- name: Setup Node.js | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 18.x | ||
cache: yarn | ||
cache-dependency-path: frontend/lib/yarn.lock | ||
- name: Install dependencies | ||
run: | | ||
cd frontend/lib | ||
yarn install | ||
- name: Lint | ||
run: | | ||
cd frontend/lib | ||
yarn lint | ||
test: | ||
name: Test | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
- name: Setup Node.js | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 18.x | ||
cache: yarn | ||
cache-dependency-path: frontend/lib/yarn.lock | ||
- name: Install dependencies | ||
run: | | ||
cd frontend/lib | ||
yarn install | ||
- name: Test | ||
run: | | ||
cd frontend/lib | ||
yarn test |
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,41 @@ | ||
name: Frontend Lib CodeQL | ||
|
||
on: | ||
push: | ||
paths: | ||
- "frontend/lib/**" | ||
- ".github/workflows/frontend_lib_codeql.yml" | ||
pull_request: | ||
types: [opened] | ||
paths: | ||
- "frontend/lib/**" | ||
- ".github/workflows/frontend_lib_codeql.yml" | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
analyze: | ||
name: Analyze | ||
runs-on: ubuntu-latest | ||
permissions: | ||
security-events: write | ||
strategy: | ||
fail-fast: false | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
- name: Initialize CodeQL | ||
uses: github/codeql-action/init@v3 | ||
with: | ||
languages: javascript-typescript | ||
queries: security-and-quality | ||
- name: Autobuild | ||
uses: github/codeql-action/autobuild@v3 | ||
with: | ||
working-directory: frontend/lib | ||
- name: Perform CodeQL Analysis | ||
uses: github/codeql-action/analyze@v3 | ||
with: | ||
category: lib |
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,4 +1,3 @@ | ||
{ | ||
"extends": "next/core-web-vitals", | ||
"plugins": ["prettier"] | ||
} |
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,4 @@ | ||
{ | ||
"extends": "next/core-web-vitals", | ||
"plugins": ["prettier"] | ||
} |
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
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
export * from './tag' | ||
export * from './user' | ||
export * from './event' | ||
export * from './contact' | ||
export * from './club' | ||
export * from './category' | ||
export * from "./tag"; | ||
export * from "./user"; | ||
export * from "./event"; | ||
export * from "./contact"; | ||
export * from "./club"; | ||
export * from "./category"; |
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,31 +1,31 @@ | ||
import { z } from 'zod'; | ||
import { z } from "zod"; | ||
|
||
import { API_BASE_URL } from '@/const'; | ||
import { Tag, tagSchema } from '@/types/tag'; | ||
import { uuid } from '@/types/uuid'; | ||
import { createApi, fetchBaseQuery } from '@reduxjs/toolkit/query/react'; | ||
import { API_BASE_URL } from "@/const"; | ||
import { Tag, tagSchema } from "@/types/tag"; | ||
import { uuid } from "@/types/uuid"; | ||
import { createApi, fetchBaseQuery } from "@reduxjs/toolkit/query/react"; | ||
|
||
export const tagsApi = createApi({ | ||
reducerPath: "tagsApi", | ||
baseQuery: fetchBaseQuery({ baseUrl: API_BASE_URL }), | ||
tagTypes: ["Tags"], | ||
endpoints: (builder) => ({ | ||
tags: builder.query<Tag[], void>({ | ||
query: () => "tags", | ||
transformResponse: (rawResponse: unknown) => { | ||
return z.array(tagSchema).parse(rawResponse); | ||
}, | ||
providesTags: [{ type: "Tags", id: "LIST" }], | ||
}), | ||
tag: builder.query<Tag, uuid>({ | ||
query: (tagID: uuid) => `tags/${tagID}`, | ||
transformResponse: (rawResponse: unknown) => { | ||
return tagSchema.parse(rawResponse); | ||
}, | ||
providesTags: (result, _, tagID) => | ||
result ? [{ type: "Tags", id: tagID }] : [], | ||
}), | ||
reducerPath: "tagsApi", | ||
baseQuery: fetchBaseQuery({ baseUrl: API_BASE_URL }), | ||
tagTypes: ["Tags"], | ||
endpoints: (builder) => ({ | ||
tags: builder.query<Tag[], void>({ | ||
query: () => "tags", | ||
transformResponse: (rawResponse: unknown) => { | ||
return z.array(tagSchema).parse(rawResponse); | ||
}, | ||
providesTags: [{ type: "Tags", id: "LIST" }], | ||
}), | ||
tag: builder.query<Tag, uuid>({ | ||
query: (tagID: uuid) => `tags/${tagID}`, | ||
transformResponse: (rawResponse: unknown) => { | ||
return tagSchema.parse(rawResponse); | ||
}, | ||
providesTags: (result, _, tagID) => | ||
result ? [{ type: "Tags", id: tagID }] : [], | ||
}), | ||
}), | ||
}); | ||
|
||
export const { useTagsQuery, useTagQuery } = tagsApi; | ||
export const { useTagsQuery, useTagQuery } = tagsApi; |
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
export * from './api'; | ||
export * from './types'; | ||
export * from "./api"; | ||
export * from "./types"; | ||
|
||
export * from './store'; | ||
export * from './const' | ||
export * from "./store"; | ||
export * from "./const"; |
Oops, something went wrong.