Switch to single page application #2
9 changed files with 90 additions and 54 deletions
|
@ -1,12 +0,0 @@
|
|||
# Import HappyX
|
||||
import happyx
|
||||
|
||||
|
||||
# Declare component
|
||||
component Content:
|
||||
# Declare HTML template
|
||||
`template`:
|
||||
tDiv(class = "p-10"):
|
||||
"read"
|
||||
`script`:
|
||||
echo "Start coding!"
|
8
src/components/glass.nim
Normal file
8
src/components/glass.nim
Normal file
|
@ -0,0 +1,8 @@
|
|||
import happyx
|
||||
|
||||
component Glass:
|
||||
arg: string
|
||||
|
||||
`template`:
|
||||
tArticle(class="flex items-center justify-center flex-1 m-14 max-md:m-7 max-sm:m-0 rounded-3xl max-sm:rounded-none bg-white/20 backdrop-blur-xl drop-shadow-lg noise"):
|
||||
{self.arg}
|
|
@ -1,13 +0,0 @@
|
|||
# Import HappyX
|
||||
import happyx
|
||||
|
||||
|
||||
# Declare component
|
||||
component Index:
|
||||
# Declare HTML template
|
||||
`template`:
|
||||
tDiv(class = "p-10"):
|
||||
tH1():
|
||||
"Blog in a Matrix"
|
||||
`script`:
|
||||
echo "Start coding!"
|
14
src/components/nav.nim
Normal file
14
src/components/nav.nim
Normal file
|
@ -0,0 +1,14 @@
|
|||
import happyx, navButton
|
||||
|
||||
# https://git.inamatrix.xyz/array-in-a-matrix/bloginamatrix.xyz/src/commit/218b85211755732344f3fd08ab4f4a3e01ab08ac/src/templates/index.nimja#L57
|
||||
|
||||
component Nav:
|
||||
`template`:
|
||||
tNav(class="text-center text-white w-64 max-md:w-32 max-sm:w-full bg-black"):
|
||||
tP(class="font-asix"):
|
||||
"Sidebar"
|
||||
|
||||
tUl(class="list-none"):
|
||||
component NavButton("Home", "/")
|
||||
component NavButton("Test Article", "/test")
|
||||
component NavButton("Page does not exist", "/404")
|
12
src/components/navButton.nim
Normal file
12
src/components/navButton.nim
Normal file
|
@ -0,0 +1,12 @@
|
|||
import happyx
|
||||
|
||||
component NavButton:
|
||||
text: string
|
||||
path: string
|
||||
|
||||
`template`:
|
||||
tLi(class="list-item cursor-pointer text-white mx-2 my-2 ring-1 ring-white/20 hover:ring-white/50 rounded"):
|
||||
tButton:
|
||||
{self.text}
|
||||
@click:
|
||||
route({self.path})
|
|
@ -1,19 +0,0 @@
|
|||
# Import HappyX
|
||||
import happyx
|
||||
|
||||
|
||||
# Declare component
|
||||
component Nav:
|
||||
# Declare HTML template
|
||||
`template`:
|
||||
tNav(class="bg-black w-48 text-white text-center"):
|
||||
tDiv():
|
||||
"Title"
|
||||
tA():
|
||||
"button"
|
||||
tA():
|
||||
"button"
|
||||
tA():
|
||||
"button"
|
||||
tA():
|
||||
"button"
|
|
@ -3,10 +3,51 @@
|
|||
<meta charset="utf-8">
|
||||
<title>Blog in a Matrix</title>
|
||||
<script src="https://cdn.tailwindcss.com"></script>
|
||||
<!-- <script>
|
||||
tailwind.config = {
|
||||
theme: {
|
||||
extend: {
|
||||
fontFamily: {
|
||||
'sans': ['FiraCode'],
|
||||
'serif': ['FiraCode'],
|
||||
'mono': ['FiraCode'],
|
||||
'asix': ['asix'],
|
||||
'giga': ['giga']
|
||||
}
|
||||
},
|
||||
}
|
||||
};
|
||||
</script> -->
|
||||
<!-- end tailwindcss -->
|
||||
<!-- <style>
|
||||
.noise {
|
||||
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAMAAAAp4XiDAAAAUVBMVEWFhYWDg4N3d3dtbW17e3t1dXWBgYGHh4d5eXlzc3OLi4ubm5uVlZWPj4+NjY19fX2JiYl/f39ra2uRkZGZmZlpaWmXl5dvb29xcXGTk5NnZ2c8TV1mAAAAG3RSTlNAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEAvEOwtAAAFVklEQVR4XpWWB67c2BUFb3g557T/hRo9/WUMZHlgr4Bg8Z4qQgQJlHI4A8SzFVrapvmTF9O7dmYRFZ60YiBhJRCgh1FYhiLAmdvX0CzTOpNE77ME0Zty/nWWzchDtiqrmQDeuv3powQ5ta2eN0FY0InkqDD73lT9c9lEzwUNqgFHs9VQce3TVClFCQrSTfOiYkVJQBmpbq2L6iZavPnAPcoU0dSw0SUTqz/GtrGuXfbyyBniKykOWQWGqwwMA7QiYAxi+IlPdqo+hYHnUt5ZPfnsHJyNiDtnpJyayNBkF6cWoYGAMY92U2hXHF/C1M8uP/ZtYdiuj26UdAdQQSXQErwSOMzt/XWRWAz5GuSBIkwG1H3FabJ2OsUOUhGC6tK4EMtJO0ttC6IBD3kM0ve0tJwMdSfjZo+EEISaeTr9P3wYrGjXqyC1krcKdhMpxEnt5JetoulscpyzhXN5FRpuPHvbeQaKxFAEB6EN+cYN6xD7RYGpXpNndMmZgM5Dcs3YSNFDHUo2LGfZuukSWyUYirJAdYbF3MfqEKmjM+I2EfhA94iG3L7uKrR+GdWD73ydlIB+6hgref1QTlmgmbM3/LeX5GI1Ux1RWpgxpLuZ2+I+IjzZ8wqE4nilvQdkUdfhzI5QDWy+kw5Wgg2pGpeEVeCCA7b85BO3F9DzxB3cdqvBzWcmzbyMiqhzuYqtHRVG2y4x+KOlnyqla8AoWWpuBoYRxzXrfKuILl6SfiWCbjxoZJUaCBj1CjH7GIaDbc9kqBY3W/Rgjda1iqQcOJu2WW+76pZC9QG7M00dffe9hNnseupFL53r8F7YHSwJWUKP2q+k7RdsxyOB11n0xtOvnW4irMMFNV4H0uqwS5ExsmP9AxbDTc9JwgneAT5vTiUSm1E7BSflSt3bfa1tv8Di3R8n3Af7MNWzs49hmauE2wP+ttrq+AsWpFG2awvsuOqbipWHgtuvuaAE+A1Z/7gC9hesnr+7wqCwG8c5yAg3AL1fm8T9AZtp/bbJGwl1pNrE7RuOX7PeMRUERVaPpEs+yqeoSmuOlokqw49pgomjLeh7icHNlG19yjs6XXOMedYm5xH2YxpV2tc0Ro2jJfxC50ApuxGob7lMsxfTbeUv07TyYxpeLucEH1gNd4IKH2LAg5TdVhlCafZvpskfncCfx8pOhJzd76bJWeYFnFciwcYfubRc12Ip/ppIhA1/mSZ/RxjFDrJC5xifFjJpY2Xl5zXdguFqYyTR1zSp1Y9p+tktDYYSNflcxI0iyO4TPBdlRcpeqjK/piF5bklq77VSEaA+z8qmJTFzIWiitbnzR794USKBUaT0NTEsVjZqLaFVqJoPN9ODG70IPbfBHKK+/q/AWR0tJzYHRULOa4MP+W/HfGadZUbfw177G7j/OGbIs8TahLyynl4X4RinF793Oz+BU0saXtUHrVBFT/DnA3ctNPoGbs4hRIjTok8i+algT1lTHi4SxFvONKNrgQFAq2/gFnWMXgwffgYMJpiKYkmW3tTg3ZQ9Jq+f8XN+A5eeUKHWvJWJ2sgJ1Sop+wwhqFVijqWaJhwtD8MNlSBeWNNWTa5Z5kPZw5+LbVT99wqTdx29lMUH4OIG/D86ruKEauBjvH5xy6um/Sfj7ei6UUVk4AIl3MyD4MSSTOFgSwsH/QJWaQ5as7ZcmgBZkzjjU1UrQ74ci1gWBCSGHtuV1H2mhSnO3Wp/3fEV5a+4wz//6qy8JxjZsmxxy5+4w9CDNJY09T072iKG0EnOS0arEYgXqYnXcYHwjTtUNAcMelOd4xpkoqiTYICWFq0JSiPfPDQdnt+4/wuqcXY47QILbgAAAABJRU5ErkJggg==);
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'FiraCode';
|
||||
src: url("/src/public/fonts/FiraCode-Regular.woff2") format("woff2");
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'asix';
|
||||
src: url("/src/public/fonts/ASIX-FOUNDER.woff2") format("woff2");
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'asix';
|
||||
src: url("/src/public/fonts/ASIX-FOUNDER-Italic.woff2") format("woff2");
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'giga';
|
||||
src: url("/src/public/fonts/Giga.woff2") format("woff2");
|
||||
}
|
||||
</style> -->
|
||||
</head>
|
||||
<body>
|
||||
<div id="app" class="relative min-h-screen flex"></div>
|
||||
<body class="flex flex-col min-h-screen m-0 bg-gradient-to-br from-yellow-400 to-green-900">
|
||||
<main id="app" class="flex flex-1 w-full max-sm:flex-col noise"></main>
|
||||
<script src="main.js"></script>
|
||||
</body>
|
||||
</html>
|
15
src/main.nim
15
src/main.nim
|
@ -1,14 +1,19 @@
|
|||
# Import HappyX
|
||||
import
|
||||
happyx,
|
||||
path_params,
|
||||
components/[navigation, index, content]
|
||||
components/[nav, glass]
|
||||
|
||||
appRoutes("app"):
|
||||
"/":
|
||||
component Nav
|
||||
component Index
|
||||
component Glass("Blog in a Matrix")
|
||||
|
||||
"/read":
|
||||
"/<errorCode>":
|
||||
component Nav
|
||||
component Content
|
||||
component Glass("HTTP Error: " & $errorCode)
|
||||
|
||||
"/<article>":
|
||||
component Nav
|
||||
component Glass($article)
|
||||
# TODO: pass article title to component which renders the article
|
||||
# TODO: modify Glass or a new component is needed
|
|
@ -1,5 +1,5 @@
|
|||
import happyx
|
||||
|
||||
|
||||
pathParams:
|
||||
id int
|
||||
article string
|
||||
errorCode int
|
Loading…
Add table
Reference in a new issue