2024-06-28 06:19:00 +01:00
|
|
|
<script>
|
|
|
|
import { parseOne as parseEmoji } from '../../emoji.js';
|
|
|
|
import { play_sound } from '../../sound.js';
|
|
|
|
import { onMount } from 'svelte';
|
2024-06-29 14:48:34 +01:00
|
|
|
import { goto } from '$app/navigation';
|
2024-06-28 06:19:00 +01:00
|
|
|
|
2024-06-30 20:53:51 +01:00
|
|
|
import BoostContext from './BoostContext.svelte';
|
|
|
|
import ReplyContext from './ReplyContext.svelte';
|
|
|
|
import PostHeader from './PostHeader.svelte';
|
|
|
|
import Body from './Body.svelte';
|
|
|
|
import ActionBar from './ActionBar.svelte';
|
|
|
|
import ReactionBar from './ReactionBar.svelte';
|
2024-06-30 19:57:32 +01:00
|
|
|
|
2024-06-28 06:19:00 +01:00
|
|
|
export let post_data;
|
|
|
|
export let focused = false;
|
|
|
|
|
|
|
|
let post_context = undefined;
|
|
|
|
let post = post_data;
|
2024-06-29 16:19:34 +01:00
|
|
|
let is_boost = !!post_data.boost;
|
|
|
|
if (is_boost) {
|
2024-06-28 06:19:00 +01:00
|
|
|
post_context = post_data;
|
|
|
|
post = post_data.boost;
|
|
|
|
}
|
|
|
|
|
|
|
|
function gotoPost() {
|
2024-06-29 14:48:34 +01:00
|
|
|
if (focused) return;
|
|
|
|
if (event.key && event.key !== "Enter") return;
|
2024-06-29 16:19:34 +01:00
|
|
|
console.log(`/post/${post.id}`);
|
2024-06-29 14:48:34 +01:00
|
|
|
goto(`/post/${post.id}`);
|
2024-06-28 06:19:00 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
let el;
|
|
|
|
onMount(() => {
|
|
|
|
if (focused) {
|
2024-06-29 14:48:34 +01:00
|
|
|
window.scrollTo(0, el.scrollHeight);
|
2024-06-28 06:19:00 +01:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
let aria_label = post.user.username + '; ' + post.text + '; ' + post.created_at;
|
|
|
|
</script>
|
|
|
|
|
2024-06-29 14:48:34 +01:00
|
|
|
<div class="post-container">
|
2024-06-28 06:19:00 +01:00
|
|
|
{#if post.reply}
|
|
|
|
<ReplyContext post={post.reply} />
|
|
|
|
{/if}
|
|
|
|
{#if is_boost && !post_context.text}
|
|
|
|
<BoostContext post={post_context} />
|
|
|
|
{/if}
|
2024-06-29 14:48:34 +01:00
|
|
|
<article
|
|
|
|
class={"post" + (focused ? " focused" : "")}
|
|
|
|
aria-label={aria_label}
|
|
|
|
bind:this={el}
|
|
|
|
on:click={gotoPost}
|
|
|
|
on:keydown={gotoPost}>
|
2024-06-28 06:19:00 +01:00
|
|
|
<PostHeader post={post} />
|
|
|
|
<Body post={post} />
|
|
|
|
<footer class="post-footer">
|
2024-06-30 20:53:51 +01:00
|
|
|
<ReactionBar post={post} />
|
|
|
|
<ActionBar post={post} />
|
2024-06-28 06:19:00 +01:00
|
|
|
</footer>
|
|
|
|
</article>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<style>
|
|
|
|
.post-container {
|
2024-06-29 14:48:34 +01:00
|
|
|
width: 732px;
|
|
|
|
max-width: 732px;
|
2024-06-28 06:19:00 +01:00
|
|
|
margin-bottom: 8px;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
border-radius: 8px;
|
|
|
|
background-color: var(--bg-800);
|
|
|
|
}
|
|
|
|
|
2024-06-29 14:48:34 +01:00
|
|
|
.post {
|
|
|
|
padding: 16px;
|
|
|
|
border-radius: 8px;
|
|
|
|
transition: background-color .1s;
|
2024-06-28 06:19:00 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.post:not(.focused) {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.post.focused {
|
|
|
|
border: 1px solid color-mix(in srgb, transparent, var(--accent) 20%);
|
|
|
|
box-shadow: 0 0 16px color-mix(in srgb, transparent, var(--accent) 20%);
|
|
|
|
}
|
|
|
|
|
2024-06-29 14:48:34 +01:00
|
|
|
.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;
|
|
|
|
}
|
|
|
|
|
2024-06-28 06:19:00 +01:00
|
|
|
.post-container :global(.emoji) {
|
|
|
|
height: 20px;
|
|
|
|
}
|
|
|
|
</style>
|