-
Notifications
You must be signed in to change notification settings - Fork 0
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
feat: add draft version support and update emoji version schema #3
Merged
Merged
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
75c8d4e
feat: add draft version support and update emoji version schema
luxass 7d62c8d
chore: lint
luxass 0816335
fix(v1/versions): use correct schema for query params
luxass 5b418b6
refactor: extract draft parameter into a constant for reuse
luxass 52cd0f7
chore: rename host
luxass 73531d8
refactor: rename EmojiVersion to EmojiVersionSchema for consistency
luxass da73128
test: add v1 versions tests
luxass 632e34a
chore: ignore dist
luxass a02f7f9
refactor: update version handling and improve category retrieval logic
luxass 19a2316
chore: lint
luxass 5fe5b14
chore: add test case for when mocking has been setup
luxass 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 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,3 @@ | ||
node_modules | ||
.wrangler | ||
dist |
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,39 +1,56 @@ | ||
import type { HonoContext } from "../types"; | ||
import { OpenAPIHono } from "@hono/zod-openapi"; | ||
import { EMOJI_LOCK_SCHEMA } from "../schemas"; | ||
import { createError, getCachedVersions } from "../utils"; | ||
import { ALL_EMOJI_VERSIONS_ROUTE, LATEST_EMOJI_VERSIONS_ROUTE } from "./v1_versions.openapi"; | ||
import { createError, getAvailableVersions } from "../utils"; | ||
import { ALL_EMOJI_VERSIONS_ROUTE, DRAFT_EMOJI_VERSIONS_ROUTE, LATEST_EMOJI_VERSIONS_ROUTE } from "./v1_versions.openapi"; | ||
|
||
export const V1_VERSIONS_ROUTER = new OpenAPIHono<HonoContext>().basePath("/api/v1/versions"); | ||
|
||
V1_VERSIONS_ROUTER.openapi(ALL_EMOJI_VERSIONS_ROUTE, async (c) => { | ||
try { | ||
const versions = await getCachedVersions(); | ||
return c.json(versions.map((version) => ({ version })), 200); | ||
const draft = c.req.query("draft"); | ||
|
||
let versions = await getAvailableVersions(); | ||
|
||
if (draft === "true") { | ||
versions = versions.filter((version) => !version.draft); | ||
} | ||
|
||
return c.json(versions, 200); | ||
} catch { | ||
return createError(c, 500, "failed to fetch emoji data"); | ||
} | ||
}); | ||
|
||
V1_VERSIONS_ROUTER.openapi(LATEST_EMOJI_VERSIONS_ROUTE, async (c) => { | ||
const res = await fetch("https://raw.githubusercontent.com/mojisdev/emoji-data/refs/heads/main/emojis.lock"); | ||
try { | ||
const draft = c.req.query("draft"); | ||
|
||
let versions = await getAvailableVersions(); | ||
|
||
if (draft === "true") { | ||
versions = versions.filter((version) => !version.draft); | ||
} | ||
|
||
if (versions[0] == null) { | ||
return createError(c, 500, "failed to fetch emoji data"); | ||
} | ||
|
||
if (!res.ok) { | ||
return c.json(versions[0], 200); | ||
} catch { | ||
return createError(c, 500, "failed to fetch emoji data"); | ||
} | ||
}); | ||
|
||
const data = await res.json(); | ||
V1_VERSIONS_ROUTER.openapi(DRAFT_EMOJI_VERSIONS_ROUTE, async (c) => { | ||
try { | ||
const versions = (await getAvailableVersions()).filter((version) => version.draft); | ||
|
||
const result = EMOJI_LOCK_SCHEMA.safeParse(data); | ||
if (versions[0] == null) { | ||
return createError(c, 404, "no draft versions available"); | ||
} | ||
|
||
if (!result.success) { | ||
return createError(c, 500, "invalid emoji data schema"); | ||
return c.json(versions[0], 200); | ||
} catch { | ||
return createError(c, 500, "failed to fetch emoji data"); | ||
} | ||
|
||
return c.json( | ||
result.data.versions.map((version) => ({ | ||
version: version.emoji_version, | ||
})), | ||
200, | ||
); | ||
}); |
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
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.
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.
🛠️ Refactor suggestion
Reduce code duplication and improve consistency.
The draft parameter handling is duplicated from ALL_EMOJI_VERSIONS_ROUTE. Consider extracting the common logic into a utility function.
Apply this diff to improve the code:
📝 Committable suggestion