finish sk restructure, a11y and optimisations

This commit is contained in:
ari melody 2024-06-29 14:48:34 +01:00
parent 9ef27fd2a2
commit 3ae05b3f9f
Signed by: ari
GPG key ID: CF99829C92678188
61 changed files with 416 additions and 429 deletions

View file

@ -15,22 +15,24 @@
<span class="post-context-time">
<time title="{time_string}">{short_time(post.created_at)}</time>
{#if post.visibility !== "public"}
<span class="post-visibility">({post.visibility})</span>
<span class="post-visibility">- {post.visibility}</span>
{/if}
</span>
</div>
<style>
.post-context {
margin-bottom: 8px;
padding-left: 58px;
padding: 12px 16px 0 74px;
display: flex;
flex-direction: row;
align-items: center;
font-size: .8em;
font-weight: 600;
color: var(--text);
opacity: .8;
transition: opacity .1s;
transition: opacity .1s, background-color .1s;
border-radius: 8px;
z-index: 1;
}
.post-context-icon {
@ -49,4 +51,8 @@
.post-context-time {
margin-left: auto;
}
.post-visibility {
opacity: .7;
}
</style>

View file

@ -11,6 +11,7 @@
import { get } from 'svelte/store';
import { Client } from '../../client/client.js';
import * as api from '../../client/api.js';
import { goto } from '$app/navigation';
export let post_data;
export let focused = false;
@ -25,7 +26,9 @@
}
function gotoPost() {
location = `/post/${post.id}`;
if (focused) return;
if (event.key && event.key !== "Enter") return;
goto(`/post/${post.id}`);
}
async function toggleBoost() {
@ -80,25 +83,30 @@
let el;
onMount(() => {
if (focused) {
window.scrollTo(0, el.scrollHeight - 700);
window.scrollTo(0, el.scrollHeight);
}
});
let aria_label = post.user.username + '; ' + post.text + '; ' + post.created_at;
</script>
<div class="post-container" aria-label={aria_label} bind:this={el}>
<div class="post-container">
{#if post.reply}
<ReplyContext post={post.reply} />
{/if}
{#if is_boost && !post_context.text}
<BoostContext post={post_context} />
{/if}
<article class={"post" + (focused ? " focused" : "")} on:click={!focused ? gotoPost() : null}>
<article
class={"post" + (focused ? " focused" : "")}
aria-label={aria_label}
bind:this={el}
on:click={gotoPost}
on:keydown={gotoPost}>
<PostHeader post={post} />
<Body post={post} />
<footer class="post-footer">
<div class="post-reactions" on:click|stopPropagation>
<div class="post-reactions" aria-label="Reactions" on:click|stopPropagation on:keydown|stopPropagation>
{#each post.reactions as reaction}
<ReactionButton
type="reaction"
@ -116,7 +124,7 @@
</ReactionButton>
{/each}
</div>
<div class="post-actions" on:click|stopPropagation>
<div class="post-actions" aria-label="Post actions" on:click|stopPropagation on:keydown|stopPropagation>
<ActionButton type="reply" label="Reply" bind:count={post.reply_count} sound="post" disabled>🗨️</ActionButton>
<ActionButton type="boost" label="Boost" on:click={() => toggleBoost()} bind:active={post.boosted} bind:count={post.boost_count} sound="boost">🔁</ActionButton>
<ActionButton type="favourite" label="Favourite" on:click={() => toggleFavourite()} bind:active={post.favourited} bind:count={post.favourite_count}>⭐</ActionButton>
@ -130,37 +138,39 @@
<style>
.post-container {
width: 700px;
max-width: 700px;
width: 732px;
max-width: 732px;
margin-bottom: 8px;
padding: 16px;
display: flex;
flex-direction: column;
border-radius: 8px;
background-color: var(--bg-800);
}
.post {
padding: 16px;
border-radius: 8px;
transition: background-color .1s;
}
.post-container:hover {
background-color: color-mix(in srgb, var(--bg-800), black 5%);
}
.post-container:hover :global(.post-context) {
opacity: 1;
}
.post:not(.focused) {
cursor: pointer;
}
.post.focused {
padding: 16px;
margin: -16px;
border-radius: 8px;
border: 1px solid color-mix(in srgb, transparent, var(--accent) 20%);
box-shadow: 0 0 16px color-mix(in srgb, transparent, var(--accent) 20%);
}
.post:hover {
background-color: color-mix(in srgb, var(--bg-800), black 5%);
}
.post-container:has(.post-context) .post {
padding-top: 40px;
margin-top: -32px;
}
:global(.post-reactions) {
width: fit-content;
display: flex;

View file

@ -9,12 +9,16 @@
import { get } from 'svelte/store';
import { Client } from '../../client/client.js';
import * as api from '../../client/api.js';
import { goto } from '$app/navigation';
export let post;
let time_string = post.created_at.toLocaleString();
let aria_label = post.user.username + '; ' + post.text + '; ' + post.created_at;
function gotoPost() {
location = `/post/${post.id}`;
if (focused) return;
if (event.key && event.key !== "Enter") return;
goto(`/post/${post.id}`);
}
async function toggleBoost() {
@ -71,7 +75,11 @@
<svelte:self post={post.reply} />
{/if}
<article class="post-reply" on:click={() => gotoPost()}>
<article
class="post-reply"
aria-label={aria_label}
on:click={gotoPost}
on:keydown={gotoPost}>
<div class="line"></div>
<div class="post-reply-main">
@ -80,7 +88,7 @@
<Body post={post} />
<footer class="post-footer">
<div class="post-reactions" on:click|stopPropagation>
<div class="post-reactions" aria-label="Reactions" on:click|stopPropagation on:keydown|stopPropagation>
{#each post.reactions as reaction}
<ReactionButton
type="reaction"
@ -98,7 +106,7 @@
</ReactionButton>
{/each}
</div>
<div class="post-actions" on:click|stopPropagation>
<div class="post-actions" aria-label="Post actions" on:click|stopPropagation on:keydown|stopPropagation>
<ActionButton type="reply" label="Reply" bind:count={post.reply_count} sound="post" disabled>🗨️</ActionButton>
<ActionButton type="boost" label="Boost" on:click={() => toggleBoost()} bind:active={post.boosted} bind:count={post.boost_count} sound="boost">🔁</ActionButton>
<ActionButton type="favourite" label="Favourite" on:click={() => toggleFavourite()} bind:active={post.favourited} bind:count={post.favourite_count}>⭐</ActionButton>
@ -112,11 +120,18 @@
<style>
.post-reply {
padding-bottom: 24px;
padding: 16px 16px 16px 16px;
display: flex;
flex-direction: row;
color: var(--text);
align-items: stretch;
border-radius: 8px;
transition: background-color .1s;
cursor: pointer;
}
.post-reply:hover {
background-color: color-mix(in srgb, var(--bg-800), black 5%);
}
.post-avatar-container {
@ -125,8 +140,8 @@
.line {
position: relative;
top: 24px;
left: 25px;
top: 32px;
left: 23px;
border-right: 2px solid var(--bg-700);
}