Compare commits

..

2 Commits

Author SHA1 Message Date
fe82c60fe5
feat: save the visitcount to working dir
All checks were successful
create archive with lfs / tag (push) Successful in 9s
2024-10-01 03:35:53 +03:00
9af7bf36e4
feat: add visited count 2024-10-01 02:44:39 +03:00
7 changed files with 73 additions and 27 deletions

1
.gitignore vendored
View File

@ -5,6 +5,7 @@ node_modules
.vercel
/.svelte-kit
/build
/visitcount
# OS
.DS_Store

View File

@ -0,0 +1,15 @@
import type { Cookies } from '@sveltejs/kit'
export const scopeCookies = (cookies: Cookies, path: string) => {
return {
get: (key: string) => {
return cookies.get(key)
},
set: (key: string, value: string, props: import('cookie').CookieSerializeOptions = {}) => {
cookies.set(key, value, { ...props, path })
},
delete: (key: string, props: import('cookie').CookieSerializeOptions = {}) => {
cookies.delete(key, { ...props, path })
}
}
}

View File

@ -0,0 +1,35 @@
import { scopeCookies } from '$lib';
import { existsSync, readFileSync, writeFileSync } from 'fs';
import { get, writable } from 'svelte/store';
export const csr = true;
export const ssr = true;
export const prerender = true;
export const trailingSlash = 'always';
const visitCountFile = 'visitcount'
const visitCount = writable(parseInt(existsSync(visitCountFile) ? readFileSync(visitCountFile).toString() : '0'));
export async function load({ cookies, url, setHeaders }) {
setHeaders({ 'Cache-Control': 'no-cache' })
const scopedCookies = scopeCookies(cookies, '/')
// parse the last visit timestamp from cookies if it exists
const visitedTimestamp = parseInt(scopedCookies.get('visitedTimestamp') || "0")
// get unix timestamp
const currentTime = new Date().getTime()
const timeSinceVisit = currentTime - visitedTimestamp
let currentVisitCount = get(visitCount)
// check if this is the first time a client is visiting or if an hour has passed since they last visited
if (visitedTimestamp === 0 || timeSinceVisit > 1000 * 60 * 60 * 24) {
// increment current and write to the store
currentVisitCount += 1; visitCount.set(currentVisitCount)
// update the cookie with the current timestamp
scopedCookies.set('visitedTimestamp', currentTime.toString())
// write the visit count to a file so we can load it later again
writeFileSync(visitCountFile, currentVisitCount.toString())
}
return {
route: url.pathname,
visitCount: currentVisitCount,
}
}

View File

@ -150,16 +150,25 @@
{/if}
{/each}
<div class="hidden md:block grow" />
<div
class="flex gap-3 px-1.5 text-nowrap align-middle items-center text-center place-content-center border-ralsei-white border-groove border-4"
>
<div class="navbox">
<a title="previous site" class="hover:underline" href="https://xn--sr8hvo.ws/previous"></a>
<a class="hover:underline" href="https://xn--sr8hvo.ws">IndieWeb Webring</a>
<a title="next site" class="hover:underline" href="https://xn--sr8hvo.ws/next"></a>
</div>
<a class="align-middle" href="/entries/_rss">
<img class="min-w-fit hover:opacity-60" src="/valid-rss.png" alt="rss feed" />
</a>
<div class="navbox">
<p><span class="text-ralsei-green-light text-shadow-green">{data.visitCount}</span> visit(s)</p>
</div>
<div class="navbox [gap:0.25rem_!important]">
<a class="align-middle hover:underline" href="/entries/_rss">rss</a>
/
<a class="align-middle hover:underline" href="/entries/_jsonfeed">jsonfeed</a>
</div>
</div>
</div>
</nav>
<style lang="postcss">
.navbox {
@apply flex gap-3 px-1.5 text-nowrap align-middle items-center text-center place-content-center border-ralsei-white border-groove border-4;
}
</style>

View File

@ -1,9 +0,0 @@
export const csr = true;
export const ssr = true;
export const prerender = true;
export const trailingSlash = 'always';
export async function load({ url, setHeaders }) {
setHeaders({'Cache-Control': 'no-cache'})
return { route: url.pathname }
}

View File

@ -1,6 +1,7 @@
import { GUESTBOOK_BASE_URL } from '$env/static/private'
import { redirect, type Cookies } from '@sveltejs/kit'
import auth from '$lib/guestbookAuth'
import { scopeCookies as _scopeCookies } from '$lib';
export const prerender = false;
@ -11,17 +12,7 @@ interface Entry {
}
const scopeCookies = (cookies: Cookies) => {
return {
get: (key: string) => {
return cookies.get(key)
},
set: (key: string, value: string, props: import('cookie').CookieSerializeOptions = {}) => {
cookies.set(key, value, { ...props, path: "/guestbook/" })
},
delete: (key: string, props: import('cookie').CookieSerializeOptions = {}) => {
cookies.delete(key, { ...props, path: "/guestbook/" })
}
}
return _scopeCookies(cookies, '/guestbook')
}
const postAction = (client: any, scopes: string[]) => {

View File

@ -65,8 +65,12 @@
text-shadow: 0 0 4px theme(colors.ralsei.pink.regular);
}
a,button,input[type=submit] {
.text-shadow-green {
text-shadow: 0 0 2px theme(colors.ralsei.black), 0 0 5px theme(colors.ralsei.green.light);
}
a,button,input[type=submit] {
@apply text-shadow-green;
cursor: url('/icons/gaze.png'), pointer;
}