mirror of
https://github.com/starshardstudio/peafowl.git
synced 2024-11-21 12:34:20 +00:00
418 lines
9.9 KiB
TypeScript
418 lines
9.9 KiB
TypeScript
import { default as lumeCMS } from "lume/cms/mod.ts";
|
|
|
|
const cms = lumeCMS();
|
|
|
|
|
|
cms.document(
|
|
"globals",
|
|
"src:_data.yml",
|
|
[
|
|
{
|
|
name: "title",
|
|
type: "text",
|
|
label: "Site title",
|
|
description: "The main title of the site.",
|
|
attributes: {
|
|
placeholder: "Peafowl",
|
|
}
|
|
},
|
|
{
|
|
name: "subtitle",
|
|
type: "text",
|
|
label: "Site subtitle",
|
|
description: "The caption to be displayed below the title of the site.",
|
|
attributes: {
|
|
placeholder: "Review CMS",
|
|
}
|
|
},
|
|
]
|
|
)
|
|
|
|
cms.document(
|
|
"index",
|
|
"src:index.md",
|
|
[
|
|
{
|
|
name: "content",
|
|
type: "markdown",
|
|
label: "Introduction text",
|
|
description: "The text to display at the top of the home page."
|
|
}
|
|
]
|
|
)
|
|
|
|
cms.document(
|
|
"list-games",
|
|
"src:list-games.md",
|
|
[
|
|
{
|
|
name: "content",
|
|
type: "markdown",
|
|
label: "Introduction",
|
|
description: "The text to display at the top of the page."
|
|
}
|
|
]
|
|
)
|
|
|
|
cms.document(
|
|
"list-anime",
|
|
"src:list-anime.md",
|
|
[
|
|
{
|
|
name: "content",
|
|
type: "markdown",
|
|
label: "Introduction",
|
|
description: "The text to display at the top of the page."
|
|
}
|
|
]
|
|
)
|
|
|
|
cms.collection(
|
|
"games",
|
|
"src:games/*.md",
|
|
[
|
|
{
|
|
name: "name",
|
|
type: "text",
|
|
label: "Name",
|
|
description: "The full name of the game.",
|
|
attributes: {
|
|
required: true,
|
|
placeholder: "Ricochet Returns"
|
|
}
|
|
},
|
|
{
|
|
name: "name_sort",
|
|
type: "text",
|
|
label: "Sort as",
|
|
description: "If specified, when sorting games alphabetically, the game will be sorted as if this was its actual name.",
|
|
attributes: {
|
|
placeholder: "Ricochet 2"
|
|
}
|
|
},
|
|
{
|
|
name: "active",
|
|
type: "checkbox",
|
|
label: "Now playing",
|
|
description: "Whether you're currently playing this game or not. If checked, prominently displays the game on the home page."
|
|
},
|
|
{
|
|
name: "rating",
|
|
type: "number",
|
|
label: "Rating",
|
|
description: "The rating from 1 to 100 you want to give to the game. A rating from 1 to 35 is considered negative, from 36 to 65 mixed, from 66 to 95 positive, and from 96 to 100 perfect. A rating of 0 means unscored.",
|
|
attributes: {
|
|
placeholder: "Unscored"
|
|
}
|
|
},
|
|
{
|
|
name: "progress",
|
|
type: "select",
|
|
label: "Progress",
|
|
description: "How much progress you've made in the game.",
|
|
options: [
|
|
{
|
|
value: "",
|
|
label: "",
|
|
},
|
|
{
|
|
value: "notapplicable",
|
|
label: "Not applicable: the game has nothing to progress in.",
|
|
},
|
|
{
|
|
value: "new",
|
|
label: "New: you haven't started playing the game yet.",
|
|
},
|
|
{
|
|
value: "started",
|
|
label: "Started: you have started the game, but not reached its end.",
|
|
},
|
|
{
|
|
value: "beaten",
|
|
label: "Beaten: you have reached the end of the game, such as the credits, but haven't done everything yet.",
|
|
},
|
|
{
|
|
value: "completed",
|
|
label: "Completed: you have cleared everything that this game has to offer.",
|
|
},
|
|
{
|
|
value: "mastered",
|
|
label: "Mastered: you have overcome self-imposed challenges far greater than the ones intended by the game."
|
|
},
|
|
]
|
|
},
|
|
{
|
|
name: "hours_played",
|
|
type: "number",
|
|
label: "Hours played",
|
|
description: "The number of hours you've played the game for. 0 is considered unknown; set to a negative value to explicitly state that you haven't played this game at all."
|
|
},
|
|
{
|
|
name: "purchased_on",
|
|
type: "date",
|
|
label: "Purchased on",
|
|
description: "The date on which you've purchased the game.",
|
|
},
|
|
{
|
|
name: "started_on",
|
|
type: "date",
|
|
label: "Started on",
|
|
description: "The date on which you've first started playing the game.",
|
|
},
|
|
{
|
|
name: "beaten_on",
|
|
type: "date",
|
|
label: "Beaten on",
|
|
description: "The date on which you've first beaten the game.",
|
|
},
|
|
{
|
|
name: "completed_on",
|
|
type: "date",
|
|
label: "Completed on",
|
|
description: "The date on which you've first completed the game.",
|
|
},
|
|
{
|
|
name: "mastered_on",
|
|
type: "date",
|
|
label: "Mastered on",
|
|
description: "The date on which you've achieved mastery of the game.",
|
|
},
|
|
{
|
|
name: "identifiers",
|
|
type: "choose-list",
|
|
label: "Identifiers",
|
|
description: "Details that unequivocabily and globally identify the game. Edit manually at your own risk.",
|
|
fields: [
|
|
{
|
|
name: "steam",
|
|
type: "object",
|
|
label: "Steam",
|
|
description: "The game, as it is available on Steam.",
|
|
fields: [
|
|
{
|
|
name: "appid",
|
|
type: "text",
|
|
label: "AppID",
|
|
description: "The AppID that the game has on Steam. Usually ends with a 0. Can be obtained from the store page link after the /app/ segment.",
|
|
},
|
|
{
|
|
name: "synced_on",
|
|
type: "date",
|
|
label: "Last sync",
|
|
description: "The date of the last sync via `deno task import-steam`."
|
|
}
|
|
]
|
|
},
|
|
{
|
|
name: "wikidata",
|
|
type: "object",
|
|
label: "Wikidata",
|
|
description: "The game, stored as a Wikidata item.",
|
|
fields: [
|
|
{
|
|
name: "q",
|
|
type: "number",
|
|
label: "Wikidata identifier",
|
|
description: "The ID that the item has on Wikidata. The number following the `Q`.",
|
|
},
|
|
]
|
|
},
|
|
]
|
|
},
|
|
{
|
|
name: "content",
|
|
type: "markdown",
|
|
label: "Review",
|
|
description: "The review to display on the game page.",
|
|
attributes: {
|
|
placeholder: "Truly, the most *game* of all times."
|
|
}
|
|
},
|
|
]
|
|
)
|
|
|
|
cms.collection(
|
|
"anime",
|
|
"src:anime/*.md",
|
|
[
|
|
{
|
|
name: "name",
|
|
type: "text",
|
|
label: "Name",
|
|
description: "The full name of the anime.",
|
|
attributes: {
|
|
required: true,
|
|
placeholder: "Argon Revelations Catholicism"
|
|
}
|
|
},
|
|
{
|
|
name: "name_original",
|
|
type: "text",
|
|
label: "Original title",
|
|
description: "The full name of the anime in the native language.",
|
|
attributes: {
|
|
placeholder: "Shinseiki Catholicism"
|
|
}
|
|
},
|
|
{
|
|
name: "name_sort",
|
|
type: "text",
|
|
label: "Sort as",
|
|
description: "If specified, when sorting games alphabetically, the game will be sorted as if this was its actual name.",
|
|
attributes: {
|
|
placeholder: "Argon Revelations Catholicism 6.6666"
|
|
}
|
|
},
|
|
{
|
|
name: "active",
|
|
type: "checkbox",
|
|
label: "Now watching",
|
|
description: "Whether you're currently watching this anime or not. If checked, prominently displays the anime on the home page."
|
|
},
|
|
{
|
|
name: "rating",
|
|
type: "number",
|
|
label: "Rating",
|
|
description: "The rating from 1 to 100 you want to give to the anime. A rating from 1 to 35 is considered negative, from 36 to 65 mixed, from 66 to 95 positive, and from 96 to 100 perfect. A rating of 0 means unscored.",
|
|
attributes: {
|
|
placeholder: "Unscored"
|
|
}
|
|
},
|
|
{
|
|
name: "progress",
|
|
type: "select",
|
|
label: "Progress",
|
|
description: "How much progress you've made in the anime.",
|
|
options: [
|
|
{
|
|
value: "",
|
|
label: "",
|
|
},
|
|
{
|
|
value: "new",
|
|
label: "New: you haven't started watching the anime yet.",
|
|
},
|
|
{
|
|
value: "started",
|
|
label: "Started: you have started the anime, but not reached its end.",
|
|
},
|
|
{
|
|
value: "completed",
|
|
label: "Completed: you have watched the anime to its end.",
|
|
},
|
|
{
|
|
value: "mastered",
|
|
label: "Mastered: you have watched everything that this anime has to offer, including side content, like a true fan would do!"
|
|
},
|
|
]
|
|
},
|
|
{
|
|
name: "started_on",
|
|
type: "date",
|
|
label: "Started on",
|
|
description: "The date on which you've first started watching the anime.",
|
|
},
|
|
{
|
|
name: "completed_on",
|
|
type: "date",
|
|
label: "Completed on",
|
|
description: "The date on which you've first finished watching the anime.",
|
|
},
|
|
{
|
|
name: "mastered_on",
|
|
type: "date",
|
|
label: "Mastered on",
|
|
description: "The date on which you've achieved mastery of the anime.",
|
|
},
|
|
{
|
|
name: "identifiers",
|
|
type: "choose-list",
|
|
label: "Identifiers",
|
|
description: "Details that unequivocabily and globally identify the anime. Edit manually at your own risk.",
|
|
fields: [
|
|
{
|
|
name: "mal",
|
|
type: "object",
|
|
label: "MyAnimeList",
|
|
description: "The anime, as it is stored on MyAnimeList.",
|
|
fields: [
|
|
{
|
|
name: "id",
|
|
type: "text",
|
|
label: "MAL ID",
|
|
description: "The anime ID that the anime has on MyAnimeList. Can be obtained from the anime page link after the `/anime/` segment.",
|
|
},
|
|
]
|
|
},
|
|
{
|
|
name: "anidb",
|
|
type: "object",
|
|
label: "AniDB",
|
|
description: "The anime, as it is stored on AniDB.",
|
|
fields: [
|
|
{
|
|
name: "aid",
|
|
type: "text",
|
|
label: "AID",
|
|
description: "The anime ID that the anime has on AniDB. Can be obtained from the anime page link, after the `/anime/` segment, or from the `aid` query parameter.",
|
|
},
|
|
]
|
|
},
|
|
{
|
|
name: "ann",
|
|
type: "object",
|
|
label: "Anime News Network",
|
|
description: "The anime, as it is stored on Anime News Network.",
|
|
fields: [
|
|
{
|
|
name: "id",
|
|
type: "text",
|
|
label: "ANN ID",
|
|
description: "The anime ID that the anime has on AniDB. Can be obtained from the anime page link from the `id` query parameter.",
|
|
},
|
|
]
|
|
},
|
|
{
|
|
name: "anilist",
|
|
type: "object",
|
|
label: "Anilist",
|
|
description: "The anime, as it is stored on Anilist.",
|
|
fields: [
|
|
{
|
|
name: "id",
|
|
type: "text",
|
|
label: "Anilist ID",
|
|
description: "The anime ID that the anime has on Anilist. Can be obtained from the anime page link after the `/anime/` segment.",
|
|
},
|
|
]
|
|
},
|
|
{
|
|
name: "wikidata",
|
|
type: "object",
|
|
label: "Wikidata",
|
|
description: "The anime, stored as a Wikidata item.",
|
|
fields: [
|
|
{
|
|
name: "q",
|
|
type: "text",
|
|
label: "Wikidata identifier",
|
|
description: "The ID that the item has on Wikidata. The number following the `Q`.",
|
|
},
|
|
]
|
|
},
|
|
]
|
|
},
|
|
{
|
|
name: "content",
|
|
type: "markdown",
|
|
label: "Review",
|
|
description: "The review to display on the game page.",
|
|
attributes: {
|
|
placeholder: "Truly, the most *anime* of all times."
|
|
}
|
|
},
|
|
]
|
|
)
|
|
|
|
|
|
export default cms;
|