Many more styles transformed into sprinkles

This commit is contained in:
Michal Vanko 2021-12-14 09:26:42 +01:00
parent f8b6792a71
commit 2146f59af6
13 changed files with 725 additions and 610 deletions

1120
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -15,11 +15,11 @@
"svgstore": "svgstore -o static/build/icons-sprite.svg src/svg/**.svg" "svgstore": "svgstore -o static/build/icons-sprite.svg src/svg/**.svg"
}, },
"dependencies": { "dependencies": {
"@vanilla-extract/css": "^1.6.3", "@vanilla-extract/css": "^1.6.8",
"@vanilla-extract/sprinkles": "^1.3.1", "@vanilla-extract/sprinkles": "^1.3.3",
"@vanilla-extract/vite-plugin": "^3.0.0", "@vanilla-extract/vite-plugin": "^3.1.0",
"classnames": "^2.3.1", "classnames": "^2.3.1",
"date-fns": "^2.25.0", "date-fns": "^2.27.0",
"feed": "^4.2.2", "feed": "^4.2.2",
"front-matter": "^4.0.2", "front-matter": "^4.0.2",
"marked": "^3.0.4", "marked": "^3.0.4",
@ -33,21 +33,21 @@
"@sveltejs/kit": "^1.0.0-next.179", "@sveltejs/kit": "^1.0.0-next.179",
"@tsconfig/svelte": "^2.0.1", "@tsconfig/svelte": "^2.0.1",
"@types/classnames": "^2.3.1", "@types/classnames": "^2.3.1",
"@types/node": "^16.10.2", "@types/node": "^16.11.12",
"@types/ramda": "^0.27.45", "@types/ramda": "^0.27.60",
"@typescript-eslint/eslint-plugin": "^5.3.1", "@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.3.1", "@typescript-eslint/parser": "^5.6.0",
"eslint": "^8.2.0", "eslint": "^8.4.1",
"eslint-config-prettier": "^8.3.0", "eslint-config-prettier": "^8.3.0",
"eslint-plugin-svelte3": "^3.2.1", "eslint-plugin-svelte3": "^3.2.1",
"less": "^4.1.2", "less": "^3.11.3",
"prettier": "~2.4.1", "prettier": "~2.5.1",
"prettier-plugin-svelte": "^2.4.0", "prettier-plugin-svelte": "^2.5.1",
"svelte": "^3.44.1", "svelte": "^3.44.2",
"svelte-preprocess": "^4.9.8", "svelte-preprocess": "^4.10.0",
"svgstore-cli": "^2.0.1", "svgstore-cli": "^2.0.1",
"tslib": "^2.3.1", "tslib": "^2.3.1",
"typescript": "^4.4.4", "typescript": "^4.5.3",
"vite": "^2.6.13" "vite": "^2.7.2"
} }
} }

View File

@ -1,9 +1,9 @@
<script lang="ts"> <script lang="ts">
import svgSprite from '../../static/build/icons-sprite.svg' import svgSprite from '../../static/build/icons-sprite.svg'
export let className export let className: string
export let name export let name: string
</script> </script>
<svg aria-hidden="true" role="img" class={className}> <svg aria-hidden="true" class={className}>
<use xlink:href={`${svgSprite}#${name}`} /> <use xlink:href={`${svgSprite}#${name}`} />
</svg> </svg>

View File

@ -1,5 +1,6 @@
<script> <script lang="ts">
export let work import type { RecordAttributes } from '../../routes/portfolio/index.json'
export let work: RecordAttributes
</script> </script>
<article> <article>

View File

@ -3,8 +3,8 @@ import { renderer } from './renderer-extension'
marked.use({ renderer }) marked.use({ renderer })
export function parseField<T>(field: string) { export function parseField<T>(field: keyof T) {
return (item: T) => ({ return (item: T): T => ({
...item, ...item,
[field]: marked(item[field]), [field]: marked(item[field]),
}) })

View File

@ -19,7 +19,7 @@
<script lang="ts"> <script lang="ts">
import Nav from '../components/Nav.svelte' import Nav from '../components/Nav.svelte'
import Footer from '../components/Footer.svelte' import Footer from '../components/Footer.svelte'
import { mainStyle } from '../styles/vanilla.css' import { mainContentClass } from './layout.css'
export let segment export let segment
export let latestPosts export let latestPosts
@ -28,7 +28,7 @@
<div class="app-content"> <div class="app-content">
<Nav {segment} /> <Nav {segment} />
<main class={mainStyle}> <main class={mainContentClass}>
<slot /> <slot />
</main> </main>
<Footer {latestPosts} /> <Footer {latestPosts} />
@ -37,17 +37,7 @@
<style global lang="less"> <style global lang="less">
@import '../styles/global.module.less'; @import '../styles/global.module.less';
.app-content {
display: grid;
grid-template-rows: auto 1fr auto;
grid-template-columns: 100%;
min-height: 100vh;
}
main { main {
position: relative;
padding: 1.2em;
h1, h1,
h2, h2,
h3, h3,

View File

@ -1,5 +1,4 @@
<script context="module" lang="ts"> <script context="module" lang="ts">
// TODO Fix query & seeAll functionality
/** /**
* @type {import('@sveltejs/kit').Load} * @type {import('@sveltejs/kit').Load}
*/ */

23
src/routes/index.css.ts Normal file
View File

@ -0,0 +1,23 @@
import { sprinkles } from '../../src/styles/sprinkles.css'
export const profilePicClass = sprinkles({
textAlign: 'center',
marginX: 'auto',
marginY: 'none',
})
export const mottoClass = sprinkles({
textAlign: 'center',
marginX: 'auto',
marginY: '2x',
fontSize: '2x',
})
export const welcomeNoteClass = sprinkles({
textAlign: 'center',
marginX: 'auto',
})
export const citeOwnerClass = sprinkles({
whiteSpace: 'nowrap',
})

View File

@ -1,9 +1,18 @@
<script lang="ts">
import {
citeOwnerClass,
mottoClass,
profilePicClass,
welcomeNoteClass,
} from './index.css'
</script>
<svelte:head> <svelte:head>
<title>Introduction @michalvankodev</title> <title>Introduction @michalvankodev</title>
</svelte:head> </svelte:head>
<header class="index-header"> <header class="index-header">
<figure class="profile-pic"> <figure class="profile-pic {profilePicClass}">
<picture> <picture>
<source <source
media="(max-width: 550px)" media="(max-width: 550px)"
@ -13,13 +22,13 @@
</picture> </picture>
</figure> </figure>
<p class="motto"> <p class="motto {mottoClass}">
<cite>“Let your ambition carry you.”</cite> <cite>“Let your ambition carry you.”</cite>
<span class="cite-owner">- La Flame</span> <span class="cite-owner {citeOwnerClass}">- La Flame</span>
</p> </p>
</header> </header>
<p> <p class={welcomeNoteClass}>
Hey, welcome to my personal website. My name is Hey, welcome to my personal website. My name is
<strong>Michal&nbsp;Vanko</strong> <strong>Michal&nbsp;Vanko</strong>
and I'm a and I'm a
@ -27,23 +36,3 @@
. I'll try to share some stories and opinions about things that I'm interested . I'll try to share some stories and opinions about things that I'm interested
in. in.
</p> </p>
<style>
figure,
p {
text-align: center;
margin: 0 auto;
}
p {
margin: 1em auto;
}
.motto {
font-size: 1.4em;
}
.cite-owner {
white-space: nowrap;
}
</style>

18
src/routes/layout.css.ts Normal file
View File

@ -0,0 +1,18 @@
import { style } from '@vanilla-extract/css'
import { sprinkles } from '../../src/styles/sprinkles.css'
export const appContentClass = style([
sprinkles({
display: 'grid',
}),
{
gridTemplateRows: 'auto 1fr auto',
gridTemplateColumns: '100%',
minHeight: '100vh',
},
])
export const mainContentClass = sprinkles({
position: 'relative',
padding: '3x',
})

View File

@ -0,0 +1,19 @@
import { sprinkles } from '../../../src/styles/sprinkles.css'
export const linkableSectionClass = sprinkles({
marginTop: '4x',
})
export const nameTagClass = sprinkles({
textAlign: 'center',
})
export const listClass = sprinkles({
listStyle: 'none',
padding: 'none',
})
export const listItemClass = sprinkles({
marginX: 'none',
marginY: '3x',
})

View File

@ -19,12 +19,21 @@ export interface ProjectAttributes extends RecordAttributes {
export interface PortfolioAttributes { export interface PortfolioAttributes {
title: string title: string
work_history: RecordAttributes[]
work_history_prelude: string work_history_prelude: string
work_history: string[]
projects: ProjectAttributes[] projects: ProjectAttributes[]
education: RecordAttributes[] education: RecordAttributes[]
} }
export type PortfolioContent = {
title: string
workHistory: RecordAttributes[]
workHistoryPrelude: string
projects: ProjectAttributes[]
education: RecordAttributes[]
body: string
}
export async function get() { export async function get() {
let pageSource: string let pageSource: string
try { try {
@ -47,7 +56,7 @@ export async function get() {
.filter((education) => education.displayed) .filter((education) => education.displayed)
.map(parseField('description')) .map(parseField('description'))
const response = { const response: PortfolioContent = {
title: parsed.attributes.title, title: parsed.attributes.title,
body: marked(parsed.body), body: marked(parsed.body),
workHistoryPrelude: marked(parsed.attributes.work_history_prelude), workHistoryPrelude: marked(parsed.attributes.work_history_prelude),

View File

@ -1,4 +1,4 @@
<script context="module"> <script lang="ts" context="module">
/** /**
* @type {import('@sveltejs/kit').Load} * @type {import('@sveltejs/kit').Load}
*/ */
@ -13,20 +13,22 @@
} }
</script> </script>
<script> <script lang="ts">
import Work from '../../components/portfolio/work.svelte' import Work from '../../components/portfolio/work.svelte'
import Project from '../../components/portfolio/project.svelte' import Project from '../../components/portfolio/project.svelte'
import type { PortfolioContent } from './index.json'
import { listClass, listItemClass, nameTagClass } from './index.css'
export let content export let content: PortfolioContent
</script> </script>
<svelte:head> <svelte:head>
<title>{content.title}</title> <title>{content.title}</title>
</svelte:head> </svelte:head>
<h1 class="name-tag">Michal Vanko</h1> <h1 class="name-tag {nameTagClass}">Michal Vanko</h1>
<h2 class="name-tag">Software Architect and Consultant</h2> <h2 class="name-tag {nameTagClass}">Software Architect and Consultant</h2>
<section id="personal-information"> <section id="personal-information">
{@html content.body} {@html content.body}
@ -37,9 +39,9 @@
<section class="work-history-prelude"> <section class="work-history-prelude">
{@html content.workHistoryPrelude} {@html content.workHistoryPrelude}
</section> </section>
<ul> <ul class={listClass}>
{#each content.workHistory as work} {#each content.workHistory as work}
<li> <li class={listItemClass}>
<Work {work} /> <Work {work} />
</li> </li>
{/each} {/each}
@ -48,9 +50,9 @@
<section id="projects"> <section id="projects">
<h2>Projects</h2> <h2>Projects</h2>
<ul> <ul class={listClass}>
{#each content.projects as project} {#each content.projects as project}
<li> <li class={listItemClass}>
<Project {project} /> <Project {project} />
</li> </li>
{/each} {/each}
@ -59,9 +61,9 @@
<section id="education"> <section id="education">
<h2>Education</h2> <h2>Education</h2>
<ul> <ul class={listClass}>
{#each content.education as work} {#each content.education as work}
<li> <li class={listItemClass}>
<Work {work} /> <Work {work} />
</li> </li>
{/each} {/each}
@ -76,21 +78,4 @@
margin-top: -5em; margin-top: -5em;
visibility: hidden; visibility: hidden;
} }
section[id] {
margin-top: 2em;
}
.name-tag {
text-align: center;
}
ul {
list-style: none;
padding: 0;
}
li {
margin: 1.5em 0;
}
</style> </style>