Modrinth/docs/routes/setup.md
2022-06-25 12:32:03 -07:00

3.5 KiB

title
Setup

0. Prerequisites

First install the following:

1. Create a SvelteKit project

Run the following command to create a SvelteKit project:

pnpm create svelte

Follow the instructions to install dependencies and setup git.

2. Add Omorphia to your project

pnpm add omorphia

3. Setup translations

Install the translations submodule:

git submodule add https://github.com/modrinth/translations locales/

Install svelte-intl-precompile:

pnpm add svelte-intl-precompile -D

Add translations in src/routes/__layout.svelte:

<script context="module" lang="ts">
	import { init, waitLocale, t, getLocaleFromAcceptLanguageHeader } from 'svelte-intl-precompile'
	import { registerAll, availableLocales } from '$locales'

	registerAll()

	export const load: import('@sveltejs/kit').Load = async ({ session }) => {
		init({
			fallbackLocale: 'en',
			initialLocale: getLocaleFromAcceptLanguageHeader(session.acceptLanguage, availableLocales),
		})
		await waitLocale()

		return {}
	}
</script>

4. Configure SvelteKit

Add the following parts to your svelte.config.js file:

import adapter from '@sveltejs/adapter-auto'
import { preprocess, plugins } from 'omorphia/config/svelte'
import precompileIntl from 'svelte-intl-precompile/sveltekit-plugin'
import { Generator } from 'omorphia/plugins'
import path from 'path'

/** @type {import('@sveltejs/kit').Config} */
const config = {
	preprocess: [preprocess],

	kit: {
		adapter: adapter(),

		alias: {
			$generated: path.resolve('./generated'),
			$stores: path.resolve('./src/stores'),
		},

		vite: {
			plugins: [
				...plugins,
				precompileIntl('locales'),
				Generator({
					gameVersions: true,
					openapi: true,
					// Add more if needed
				}),
			],

			server: {
				fs: {
					allow: ['generated'],
				},
			},
		},
	},
}

export default config

Create a src/stores/account.ts file with a token store export:

import { writable } from 'svelte/store'

export const token = writable('')

5. Configure PostCSS

Create a postcss.config.cjs file in the root of your project.

Add the following line to that file:

module.exports = require('omorphia/config/postcss.cjs')

6. Setup styles

Import styles in src/routes/__layout.svelte:

<script lang="ts">
	import 'omorphia/styles.postcss'
</script>

Add the base class and a theme to the <body> tag in src/app.html:

<body class="base theme-light">
	%sveltekit.body%
</body>

7. Using Omorphia

Developing

Start the development server with:

pnpm dev

To get Svelte language support in your code editor, use this list of extensions.

Components

Use a component by importing from omorphia. For example, use the Button component like so:

<script lang="ts">
	import { Button } from 'omorphia'
</script>

<Button color="primary">I'm a button!</Button>

Utils

Use a utility by importing from omorphia/utils.

<script lang="ts">
	import { ago } from 'omorphia/utils'
</script>

{ago(Date.now() - 100000)}

Using icons and styles

Follow the guides on the sidebar to learn how to use icons and general concepts.