You've already forked AstralRinth
forked from didirus/AstralRinth
* Renovate the config files * Return Vue and TS ESLint plugins * Revert Prettier config Add typing to ESLint config Re-revert package.json * Re-add ESLint plugin for Prettier (it went missing during merge, oops) * Try to fix CI by explicit dependency * Try to fix CI by explicit dependency x2 * Try to fix CI magically Additionally, remove unneeded jsconfig.json * Brawaru found the reason Co-authored-by: Sasha Sorokin <10401817+brawaru@users.noreply.github.com> --------- Co-authored-by: Sasha Sorokin <10401817+brawaru@users.noreply.github.com>
222 lines
6.2 KiB
TypeScript
222 lines
6.2 KiB
TypeScript
import { promises as fs } from 'fs'
|
|
import svgLoader from 'vite-svg-loader'
|
|
import { resolve } from 'pathe'
|
|
import { defineNuxtConfig } from 'nuxt/config'
|
|
import { $fetch } from 'ofetch'
|
|
|
|
const STAGING_API_URL = 'https://staging-api.modrinth.com/v2/'
|
|
const STAGING_ARIADNE_URL = 'https://staging-ariadne.modrinth.com/v1/'
|
|
|
|
const preloadedFonts = [
|
|
'inter/Inter-Regular.woff2',
|
|
'inter/Inter-Medium.woff2',
|
|
'inter/Inter-SemiBold.woff2',
|
|
'inter/Inter-Bold.woff2',
|
|
]
|
|
|
|
const favicons = {
|
|
'(prefers-color-scheme:no-preference)': '/favicon-light.ico',
|
|
'(prefers-color-scheme:light)': '/favicon-light.ico',
|
|
'(prefers-color-scheme:dark)': '/favicon.ico',
|
|
}
|
|
|
|
const meta = {
|
|
description:
|
|
'Download Minecraft mods, plugins, datapacks, shaders, resourcepacks, and modpacks on Modrinth. Discover and publish projects on Modrinth with a modern, easy to use interface and API.',
|
|
publisher: 'Rinth, Inc.',
|
|
'apple-mobile-web-app-title': 'Modrinth',
|
|
'theme-color': '#1bd96a',
|
|
'color-scheme': 'dark light',
|
|
// OpenGraph
|
|
'og:title': 'Modrinth',
|
|
'og:site_name': 'Modrinth',
|
|
'og:description': 'An open source modding platform',
|
|
'og:type': 'website',
|
|
'og:url': 'https://modrinth.com',
|
|
'og:image': 'https://cdn.modrinth.com/modrinth-new.png?',
|
|
// Twitter
|
|
'twitter:card': 'summary',
|
|
'twitter:site': '@modrinth',
|
|
}
|
|
|
|
export default defineNuxtConfig({
|
|
app: {
|
|
head: {
|
|
htmlAttrs: {
|
|
lang: 'en',
|
|
},
|
|
title: 'Modrinth',
|
|
meta: Object.entries(meta).map(([name, content]): object => {
|
|
return { name, content }
|
|
}),
|
|
link: [
|
|
// The type is necessary because the linter can't always compare this very nested/complex type on itself
|
|
...preloadedFonts.map((font): object => {
|
|
return {
|
|
rel: 'preload',
|
|
href: `https://cdn-raw.modrinth.com/fonts/${font}?v=3.19`,
|
|
as: 'font',
|
|
type: 'font/woff2',
|
|
crossorigin: 'anonymous',
|
|
}
|
|
}),
|
|
...Object.entries(favicons).map(([media, href]): object => {
|
|
return { rel: 'icon', type: 'image/x-icon', href, media }
|
|
}),
|
|
{
|
|
rel: 'search',
|
|
type: 'application/opensearchdescription+xml',
|
|
href: '/opensearch.xml',
|
|
title: 'Modrinth mods',
|
|
},
|
|
],
|
|
},
|
|
},
|
|
vite: {
|
|
plugins: [
|
|
svgLoader({
|
|
svgoConfig: {
|
|
plugins: [
|
|
{
|
|
name: 'preset-default',
|
|
params: {
|
|
overrides: {
|
|
removeViewBox: false,
|
|
},
|
|
},
|
|
},
|
|
],
|
|
},
|
|
}),
|
|
],
|
|
},
|
|
hooks: {
|
|
async 'build:before'() {
|
|
// 30 minutes
|
|
const TTL = 30 * 60 * 1000
|
|
|
|
let state: {
|
|
lastGenerated?: string
|
|
apiUrl?: string
|
|
categories?: any[]
|
|
loaders?: any[]
|
|
gameVersions?: any[]
|
|
donationPlatforms?: any[]
|
|
reportTypes?: any[]
|
|
} = {}
|
|
try {
|
|
state = JSON.parse(await fs.readFile('./generated/state.json', 'utf8'))
|
|
} catch {
|
|
// File doesn't exist, create folder
|
|
await fs.mkdir('./generated', { recursive: true })
|
|
}
|
|
|
|
const API_URL = getApiUrl()
|
|
|
|
if (
|
|
// Skip regeneration if within TTL...
|
|
state.lastGenerated &&
|
|
new Date(state.lastGenerated).getTime() + TTL > new Date().getTime() &&
|
|
// ...but only if the API URL is the same
|
|
state.apiUrl === API_URL
|
|
) {
|
|
return
|
|
}
|
|
|
|
state.lastGenerated = new Date().toISOString()
|
|
|
|
state.apiUrl = API_URL
|
|
|
|
const headers = {
|
|
headers: {
|
|
'user-agent': 'Knossos generator (support@modrinth.com)',
|
|
},
|
|
}
|
|
|
|
const [categories, loaders, gameVersions, donationPlatforms, reportTypes] = await Promise.all(
|
|
[
|
|
$fetch(`${API_URL}tag/category`, headers),
|
|
$fetch(`${API_URL}tag/loader`, headers),
|
|
$fetch(`${API_URL}tag/game_version`, headers),
|
|
$fetch(`${API_URL}tag/donation_platform`, headers),
|
|
$fetch(`${API_URL}tag/report_type`, headers),
|
|
]
|
|
)
|
|
|
|
state.categories = categories
|
|
state.loaders = loaders
|
|
state.gameVersions = gameVersions
|
|
state.donationPlatforms = donationPlatforms
|
|
state.reportTypes = reportTypes
|
|
|
|
await fs.writeFile('./generated/state.json', JSON.stringify(state))
|
|
|
|
console.log('Tags generated!')
|
|
},
|
|
'pages:extend'(routes) {
|
|
routes.splice(
|
|
routes.findIndex((x) => x.name === 'search-searchProjectType'),
|
|
1
|
|
)
|
|
|
|
const types = ['mods', 'modpacks', 'plugins', 'resourcepacks', 'shaders', 'datapacks']
|
|
|
|
types.forEach((type) =>
|
|
routes.push({
|
|
name: `search-${type}`,
|
|
path: `/${type}`,
|
|
file: resolve(__dirname, 'pages/search/[searchProjectType].vue'),
|
|
children: [],
|
|
})
|
|
)
|
|
},
|
|
},
|
|
runtimeConfig: {
|
|
apiBaseUrl: process.env.BASE_URL ?? getApiUrl(),
|
|
ariadneBaseUrl: process.env.ARIADNE_URL ?? getAriadneUrl(),
|
|
ariadneAdminKey: process.env.ARIADNE_ADMIN_KEY,
|
|
rateLimitKey: process.env.RATE_LIMIT_IGNORE_KEY,
|
|
public: {
|
|
apiBaseUrl: getApiUrl(),
|
|
ariadneBaseUrl: getAriadneUrl(),
|
|
siteUrl: getDomain(),
|
|
|
|
owner: process.env.VERCEL_GIT_REPO_OWNER || 'modrinth',
|
|
slug: process.env.VERCEL_GIT_REPO_SLUG || 'knossos',
|
|
branch: process.env.VERCEL_GIT_COMMIT_REF || 'master',
|
|
hash: process.env.VERCEL_GIT_COMMIT_SHA || 'unknown',
|
|
},
|
|
},
|
|
typescript: {
|
|
shim: false,
|
|
strict: true,
|
|
typeCheck: true,
|
|
},
|
|
})
|
|
|
|
function getApiUrl() {
|
|
return process.env.BROWSER_BASE_URL ?? STAGING_API_URL
|
|
}
|
|
|
|
function getAriadneUrl() {
|
|
return process.env.BROWSER_ARIADNE_URL ?? STAGING_ARIADNE_URL
|
|
}
|
|
|
|
function getDomain() {
|
|
if (process.env.NODE_ENV === 'production') {
|
|
if (process.env.SITE_URL) {
|
|
return process.env.SITE_URL
|
|
} else if (process.env.HEROKU_APP_NAME) {
|
|
return `https://${process.env.HEROKU_APP_NAME}.herokuapp.com`
|
|
} else if (process.env.VERCEL_URL) {
|
|
return `https://${process.env.VERCEL_URL}`
|
|
} else if (getApiUrl() === STAGING_API_URL) {
|
|
return 'https://staging.modrinth.com'
|
|
} else {
|
|
return 'https://modrinth.com'
|
|
}
|
|
} else {
|
|
return 'http://localhost:3000'
|
|
}
|
|
}
|