Initial version

This commit is contained in:
Isaac Shoebottom 2023-03-09 18:58:59 -04:00
commit 2fb56665b6
19 changed files with 3839 additions and 0 deletions

13
memes/.eslintignore Normal file
View File

@ -0,0 +1,13 @@
.DS_Store
node_modules
/build
/.svelte-kit
/package
.env
.env.*
!.env.example
# Ignore files for PNPM, NPM and YARN
pnpm-lock.yaml
package-lock.json
yarn.lock

20
memes/.eslintrc.cjs Normal file
View File

@ -0,0 +1,20 @@
module.exports = {
root: true,
parser: '@typescript-eslint/parser',
extends: ['eslint:recommended', 'plugin:@typescript-eslint/recommended'],
plugins: ['svelte3', '@typescript-eslint'],
ignorePatterns: ['*.cjs'],
overrides: [{ files: ['*.svelte'], processor: 'svelte3/svelte3' }],
settings: {
'svelte3/typescript': () => require('typescript')
},
parserOptions: {
sourceType: 'module',
ecmaVersion: 2020
},
env: {
browser: true,
es2017: true,
node: true
}
};

12
memes/.gitignore vendored Normal file
View File

@ -0,0 +1,12 @@
.DS_Store
node_modules
/build
/.svelte-kit
/package
.env
.env.*
!.env.example
.vercel
.output
vite.config.js.timestamp-*
vite.config.ts.timestamp-*

1
memes/.npmrc Normal file
View File

@ -0,0 +1 @@
engine-strict=true

38
memes/README.md Normal file
View File

@ -0,0 +1,38 @@
# create-svelte
Everything you need to build a Svelte project, powered by [`create-svelte`](https://github.com/sveltejs/kit/tree/master/packages/create-svelte).
## Creating a project
If you're seeing this, you've probably already done this step. Congrats!
```bash
# create a new project in the current directory
npm create svelte@latest
# create a new project in my-app
npm create svelte@latest my-app
```
## Developing
Once you've created a project and installed dependencies with `npm install` (or `pnpm install` or `yarn`), start a development server:
```bash
npm run dev
# or start the server and open the app in a new browser tab
npm run dev -- --open
```
## Building
To create a production version of your app:
```bash
npm run build
```
You can preview the production build with `npm run preview`.
> To deploy your app, you may need to install an [adapter](https://kit.svelte.dev/docs/adapters) for your target environment.

3500
memes/package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

34
memes/package.json Normal file
View File

@ -0,0 +1,34 @@
{
"name": "memes",
"version": "0.0.1",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "eslint ."
},
"devDependencies": {
"@fontsource/fira-mono": "^4.5.10",
"@neoconfetti/svelte": "^1.0.0",
"@sveltejs/adapter-static": "^2.0.1",
"@sveltejs/kit": "^1.5.0",
"@types/cookie": "^0.5.1",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"autoprefixer": "^10.4.7",
"eslint": "^8.28.0",
"eslint-plugin-svelte3": "^4.0.0",
"postcss": "^8.4.14",
"postcss-load-config": "^4.0.1",
"svelte": "^3.54.0",
"svelte-check": "^3.0.1",
"svelte-preprocess": "^4.10.7",
"tailwindcss": "^3.1.5",
"tslib": "^2.4.1",
"typescript": "^4.9.3",
"vite": "^4.0.0"
},
"type": "module"
}

13
memes/postcss.config.cjs Normal file
View File

@ -0,0 +1,13 @@
const tailwindcss = require("tailwindcss");
const autoprefixer = require("autoprefixer");
const config = {
plugins: [
//Some plugins, like tailwindcss/nesting, need to run before Tailwind,
tailwindcss(),
//But others, like autoprefixer, need to run after,
autoprefixer,
],
};
module.exports = config;

12
memes/src/app.d.ts vendored Normal file
View File

@ -0,0 +1,12 @@
// See https://kit.svelte.dev/docs/types#app
// for information about these interfaces
declare global {
namespace App {
// interface Error {}
// interface Locals {}
// interface PageData {}
// interface Platform {}
}
}
export {};

12
memes/src/app.html Normal file
View File

@ -0,0 +1,12 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" href="%sveltekit.assets%/favicon.png" />
<meta name="viewport" content="width=device-width" />
%sveltekit.head%
</head>
<body data-sveltekit-preload-data="hover">
<div style="display: contents">%sveltekit.body%</div>
</body>
</html>

4
memes/src/app.postcss Normal file
View File

@ -0,0 +1,4 @@
/* Write your global styles here, in PostCSS syntax */
@tailwind base;
@tailwind components;
@tailwind utilities;

View File

@ -0,0 +1,9 @@
<script>
import "../app.postcss";
</script>
<div class="app">
<main>
<slot />
</main>
</div>

View File

@ -0,0 +1,87 @@
<script lang="ts">
import type { PageData } from './$types';
export let data: PageData;
export const max: number = data.max
let videoID: number
let videoIDString: string
function newVideo() {
videoID = Math.floor(Math.random() * max + 1);
videoIDString = videoID.toString();
videoIDString = videoIDString.padStart(5, '0');
//videoIDString = '00446'
}
const bg_dark: string = 'hsl(0, 0%, 10%)';
const bg_light: string = 'hsl(0, 0%, 90%)';
const accent_dark: string = 'hsl(0, 0%, 30%)';
const accent_light: string = 'hsl(0, 0%, 70%)';
let bg = bg_light
let bg_opposite = bg_dark
let accent = accent_light
let accent_opposite = accent_dark
let isDark = false
function toggleTheme() {
if (isDark) {
bg = bg_light
bg_opposite = bg_dark
accent = accent_light
accent_opposite = accent_dark
isDark = false
} else {
bg = bg_dark
bg_opposite = bg_light
accent = accent_dark
accent_opposite = accent_light
isDark = true
}
}
newVideo()
</script>
<svelte:head>
<title>Home</title>
<meta name="description" content="Svelte demo app" />
</svelte:head>
<section class="w-screen h-screen" style="background-color: {bg}; color: {bg_opposite}">
<p class="text-center">Click button to see new video</p>
<div class="flex place-content-center">
<button class="text-center rounded-xl p-1" style="background-color: {accent}" type="button" on:click={newVideo}>Get new video</button>
</div>
<span class="flex place-content-center gap-1" >
<input type="checkbox" checked={isDark} on:click={toggleTheme}>
<label for="checkbox">Dark Mode</label>
<input type="checkbox" checked={isDark} on:click={toggleTheme}>
<label for="checkbox">Dark Mode</label>
</span>
<p class="text-center">Click player to start memes</p>
<!-- svelte-ignore a11y-media-has-caption -->
<video id="player" class="rounded" src="https://shoebottom.ca/host/memes/{videoIDString}.mp4" controls autoplay></video>
</section>
<style>
#player {
margin-left: 50vw;
transform: translate(-50%);
width: 90vw;
height: 80vh;
}
</style>

18
memes/src/routes/+page.ts Normal file
View File

@ -0,0 +1,18 @@
// since there's no dynamic data here, we can prerender
// it so that it gets served as a static asset in production
export const prerender = true;
import type { PageLoad } from './$types';
import { dev } from '$app/environment';
export const load = (async ({fetch}) => {
if (dev) {
return {
"max": 1000
}
}
const res = await fetch('https://shoebottom.ca/host/memes/max.json')
const json = await res.json()
return json
}) satisfies PageLoad;

3
memes/static/robots.txt Normal file
View File

@ -0,0 +1,3 @@
# https://www.robotstxt.org/robotstxt.html
User-agent: *
Disallow:

29
memes/svelte.config.js Normal file
View File

@ -0,0 +1,29 @@
import preprocess from "svelte-preprocess";
import adapter from '@sveltejs/adapter-static';
import { vitePreprocess } from "@sveltejs/kit/vite";
/** @type {import('@sveltejs/kit').Config} */
const config = {
// Consult https://kit.svelte.dev/docs/integrations#preprocessors
// for more information about preprocessors
preprocess: [
vitePreprocess(),
preprocess({
postcss: true,
}),
],
kit: {
adapter: adapter({
// default options are shown. On some platforms
// these options are set automatically — see below
pages: 'build',
assets: 'build',
fallback: null,
precompress: false,
strict: true
})
}
};
export default config;

11
memes/tailwind.config.cjs Normal file
View File

@ -0,0 +1,11 @@
const config = {
content: ["./src/**/*.{html,js,svelte,ts}"],
theme: {
extend: {},
},
plugins: [],
};
module.exports = config;

17
memes/tsconfig.json Normal file
View File

@ -0,0 +1,17 @@
{
"extends": "./.svelte-kit/tsconfig.json",
"compilerOptions": {
"allowJs": true,
"checkJs": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"sourceMap": true,
"strict": true
}
// Path aliases are handled by https://kit.svelte.dev/docs/configuration#alias
//
// If you want to overwrite includes/excludes, make sure to copy over the relevant includes/excludes
// from the referenced tsconfig.json - TypeScript does not merge them in
}

6
memes/vite.config.ts Normal file
View File

@ -0,0 +1,6 @@
import { sveltekit } from '@sveltejs/kit/vite';
import { defineConfig } from 'vite';
export default defineConfig({
plugins: [sveltekit()]
});