2023-07-14 01:10:29 +02:00
|
|
|
<script setup lang="ts">
|
2023-07-17 14:33:29 +02:00
|
|
|
import { computed, inject, onBeforeUnmount, onMounted, onUpdated, ref, watch } from 'vue';
|
2023-07-24 19:19:09 +02:00
|
|
|
import Card from './components/Card.vue';
|
2023-07-20 09:53:07 +02:00
|
|
|
import { useDocumentVisibility, usePreferredDark, useWindowSize, watchDebounced } from '@vueuse/core'
|
2023-07-14 01:10:29 +02:00
|
|
|
import ConfigModal from './components/ConfigModal.vue';
|
2023-07-24 19:19:09 +02:00
|
|
|
import { loadConfig } from './config';
|
2023-07-17 14:33:29 +02:00
|
|
|
import InfoBar from './components/InfoBar.vue';
|
2023-07-20 11:44:25 +02:00
|
|
|
import { gitVersion } from '@/defaults'
|
2023-07-24 20:42:17 +02:00
|
|
|
import { type Config, type Post } from '@/types';
|
|
|
|
import { fetchPosts } from '@/sources'
|
2023-07-14 01:10:29 +02:00
|
|
|
|
|
|
|
const config = ref<Config>();
|
|
|
|
|
|
|
|
const allPosts = ref<Array<Post>>([])
|
|
|
|
const pinned = ref<Array<string>>([])
|
|
|
|
const hidden = ref<Array<string>>([])
|
|
|
|
const banned = ref<Array<string>>([])
|
|
|
|
const updateInProgress = ref(false)
|
|
|
|
|
2023-07-20 10:44:40 +02:00
|
|
|
var updateIntervalHandle: number;
|
|
|
|
var lastUpdate = 0;
|
2023-07-14 01:10:29 +02:00
|
|
|
|
|
|
|
onMounted(async () => {
|
|
|
|
config.value = await loadConfig()
|
2023-07-20 10:44:40 +02:00
|
|
|
if (visibilityState.value !== "hidden")
|
|
|
|
restartUpdates()
|
2023-07-14 01:10:29 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
onBeforeUnmount(() => {
|
2023-07-20 10:44:40 +02:00
|
|
|
stopUpdates()
|
2023-07-14 01:10:29 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
// Re-layout Masonry on dom updates or window size changes
|
|
|
|
const fixLayout = inject('redrawVueMasonry') as () => void
|
|
|
|
onUpdated(() => fixLayout())
|
|
|
|
const windowSize = useWindowSize()
|
|
|
|
watchDebounced(windowSize.width, () => { fixLayout() }, { debounce: 500, maxWait: 1000 })
|
|
|
|
|
|
|
|
// Watch for a theme changes
|
2023-07-20 09:53:07 +02:00
|
|
|
const isDartPrefered = usePreferredDark()
|
|
|
|
const actualTheme = computed(() => {
|
|
|
|
var theme = config.value?.theme
|
2023-07-24 14:18:33 +02:00
|
|
|
if (!theme || theme === "auto")
|
2023-07-20 09:53:07 +02:00
|
|
|
theme = isDartPrefered.value ? "dark" : "light"
|
|
|
|
return theme
|
|
|
|
})
|
|
|
|
watch(actualTheme, () => {
|
|
|
|
document.body!.parentElement!.dataset.bsTheme = actualTheme.value
|
2023-07-14 01:10:29 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
// Watch for a update interval changes
|
2023-07-20 10:44:40 +02:00
|
|
|
watch(() => config.value?.interval, () => restartUpdates())
|
2023-07-14 01:10:29 +02:00
|
|
|
|
2023-07-20 10:44:40 +02:00
|
|
|
// Pause updates while tab/window is hidden
|
|
|
|
const visibilityState = useDocumentVisibility()
|
|
|
|
watch(visibilityState, () => {
|
|
|
|
if (visibilityState.value === "hidden")
|
|
|
|
stopUpdates()
|
|
|
|
else
|
|
|
|
restartUpdates()
|
2023-07-14 01:10:29 +02:00
|
|
|
})
|
|
|
|
|
2023-07-24 14:18:33 +02:00
|
|
|
|
|
|
|
|
2023-07-14 01:10:29 +02:00
|
|
|
|
2023-07-20 10:44:40 +02:00
|
|
|
/**
|
|
|
|
* Starts or restarts the update interval timer.
|
|
|
|
*/
|
|
|
|
const restartUpdates = () => {
|
|
|
|
stopUpdates()
|
|
|
|
if (!config.value) return
|
|
|
|
|
|
|
|
// Mastodon default rate limit is 1/s (300/5m)
|
|
|
|
// Be nice, only send one request every 2 seconds on average.
|
|
|
|
const rqPerUpdate = config.value.accounts.length + config.value.tags.length
|
|
|
|
const minInternal = Math.ceil(rqPerUpdate * 2)
|
|
|
|
const interval = Math.max(minInternal, config.value.interval)
|
|
|
|
|
|
|
|
updateIntervalHandle = setInterval(() => {
|
|
|
|
updateWall()
|
|
|
|
}, interval * 1000)
|
|
|
|
|
|
|
|
// Trigger update immediately if new interval allows it
|
|
|
|
if (lastUpdate + interval < new Date().getTime())
|
|
|
|
updateWall()
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Stops the update interval
|
|
|
|
*/
|
|
|
|
const stopUpdates = () => {
|
|
|
|
clearInterval(updateIntervalHandle)
|
|
|
|
}
|
|
|
|
|
2023-07-17 14:33:29 +02:00
|
|
|
/**
|
|
|
|
* Trigger a wall update.
|
|
|
|
*
|
|
|
|
* Does nothing if there is an update running already.
|
|
|
|
*/
|
2023-07-14 01:10:29 +02:00
|
|
|
async function updateWall() {
|
|
|
|
const cfg = config.value
|
|
|
|
if (!cfg) return
|
|
|
|
|
|
|
|
if (updateInProgress.value) {
|
|
|
|
console.debug("Wall update skipped: Already in progress")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2023-07-20 10:44:40 +02:00
|
|
|
console.debug("Updating wall...")
|
2023-07-14 01:10:29 +02:00
|
|
|
updateInProgress.value = true
|
2023-07-20 10:44:40 +02:00
|
|
|
|
2023-07-14 01:10:29 +02:00
|
|
|
try {
|
2023-07-24 20:42:17 +02:00
|
|
|
allPosts.value = await fetchPosts(cfg)
|
2023-07-14 01:10:29 +02:00
|
|
|
console.debug("Update completed")
|
|
|
|
} catch (e) {
|
|
|
|
console.warn("Update failed", e)
|
|
|
|
} finally {
|
2023-07-20 10:44:40 +02:00
|
|
|
lastUpdate = Date.now()
|
2023-07-14 01:10:29 +02:00
|
|
|
updateInProgress.value = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2023-07-24 20:42:17 +02:00
|
|
|
/**
|
|
|
|
* Filter and order posts based on real-time criteria (e.g. pinned or hidden posts).
|
|
|
|
* Most of filtering already happened earlier.
|
|
|
|
*/
|
2023-07-14 01:10:29 +02:00
|
|
|
const filteredPosts = computed(() => {
|
2023-07-24 20:42:17 +02:00
|
|
|
// Copy to make sure those are detected as a reactive dependencies
|
2023-07-14 01:10:29 +02:00
|
|
|
var posts: Array<Post> = JSON.parse(JSON.stringify(allPosts.value))
|
|
|
|
const pinnedLocal = [...pinned.value]
|
|
|
|
const hiddenLocal = [...hidden.value]
|
|
|
|
const bannedLocal = [...banned.value]
|
|
|
|
|
|
|
|
// Filter hidden posts or banned authors
|
|
|
|
posts = posts.filter((p) => !hiddenLocal.includes(p.id))
|
|
|
|
posts = posts.filter((p) => !p.author?.url || !bannedLocal.includes(p.author.url))
|
|
|
|
|
|
|
|
// Mark pinned posts
|
|
|
|
posts.forEach(p => { p.pinned = pinnedLocal.includes(p.id) })
|
|
|
|
|
|
|
|
// Sort by pinned status / date
|
|
|
|
posts = posts.sort((a, b) => {
|
|
|
|
const aPinned = a.pinned ? 1 : 0
|
|
|
|
const bPinned = b.pinned ? 1 : 0
|
|
|
|
return bPinned - aPinned || new Date(b.date).getTime() - new Date(a.date).getTime()
|
|
|
|
})
|
|
|
|
return posts
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
function toggle<T>(array: T[], value: T) {
|
|
|
|
if (array.includes(value))
|
|
|
|
array.splice(array.indexOf(value), 1)
|
|
|
|
else
|
|
|
|
array.push(value)
|
|
|
|
}
|
|
|
|
|
|
|
|
const pin = (id: string) => {
|
|
|
|
toggle(pinned.value, id)
|
|
|
|
}
|
|
|
|
|
|
|
|
const hide = (id: string) => {
|
|
|
|
toggle(hidden.value, id)
|
|
|
|
}
|
|
|
|
|
|
|
|
const hideAuthor = (url: string) => {
|
|
|
|
toggle(banned.value, url)
|
|
|
|
}
|
|
|
|
|
|
|
|
const toggleTheme = () => {
|
|
|
|
if (!config.value) return
|
2023-07-20 09:53:07 +02:00
|
|
|
config.value.theme = actualTheme.value === "dark" ? "light" : "dark"
|
2023-07-14 01:10:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
const aboutLink = computed(() => {
|
2023-07-17 14:33:29 +02:00
|
|
|
if (config.value?.servers.length)
|
|
|
|
return `https://${config.value.servers[0]}/about`
|
2023-07-14 01:10:29 +02:00
|
|
|
return "#"
|
|
|
|
})
|
|
|
|
|
|
|
|
const privacyLink = computed(() => {
|
2023-07-17 14:33:29 +02:00
|
|
|
if (config.value?.servers.length)
|
|
|
|
return `https://${config.value.servers[0]}/privacy-policy`
|
2023-07-14 01:10:29 +02:00
|
|
|
return "#"
|
|
|
|
})
|
|
|
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<div id="page">
|
|
|
|
<span v-show="updateInProgress" class="position-fixed bottom-0 start-0 m-1 opacity-25 text-muted">♥</span>
|
2023-07-20 09:53:07 +02:00
|
|
|
<header v-if="config?.showInfobar">
|
2023-07-17 14:33:29 +02:00
|
|
|
<InfoBar :config="config" class="secret-hover">
|
|
|
|
<small class="text-secondary secret float-end">
|
|
|
|
[<a href="#" class="text-secondary" data-bs-toggle="modal" data-bs-target="#configModal">edit</a>]
|
|
|
|
</small>
|
|
|
|
</InfoBar>
|
2023-07-14 01:10:29 +02:00
|
|
|
</header>
|
|
|
|
|
|
|
|
<main>
|
|
|
|
<div v-if="filteredPosts.length === 0 && updateInProgress">Loading first posts ...</div>
|
|
|
|
<div v-else-if="filteredPosts.length === 0">Nothing there yet ...</div>
|
2023-07-15 12:59:22 +02:00
|
|
|
<div v-else v-masonry transition-duration="1s" item-selector=".wall-item" percent-position="true" id="wall">
|
2023-07-14 01:10:29 +02:00
|
|
|
<Card v-masonry-tile class="wall-item secret-hover" v-for="(post, index) in filteredPosts" :key="post.id"
|
|
|
|
:post="post">
|
|
|
|
<template v-slot:topleft>
|
|
|
|
<div class="dropdown secret">
|
2023-07-17 14:33:29 +02:00
|
|
|
<button class="btn btn-sm btn-outline-secondary" type="button" data-bs-toggle="dropdown"
|
2023-07-14 01:10:29 +02:00
|
|
|
aria-expanded="false">...</button>
|
|
|
|
<ul class="dropdown-menu">
|
|
|
|
<li><a class="dropdown-item" href="#" @click.prevent="pin(post.id)">{{ post.pinned ? "Unpin" : "Pin"
|
|
|
|
}}</a></li>
|
|
|
|
<li><a class="dropdown-item" href="#" @click.prevent="hide(post.id)">Hide Post</a></li>
|
|
|
|
<li v-if="post.author?.url"><a class="dropdown-item" href="#"
|
|
|
|
@click.prevent="hideAuthor(post.author?.url)">Hide
|
|
|
|
Author</a></li>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
</Card>
|
|
|
|
</div>
|
|
|
|
</main>
|
|
|
|
|
|
|
|
<ConfigModal v-if="config" v-model="config" id="configModal" />
|
|
|
|
|
|
|
|
<footer>
|
2023-07-20 09:53:07 +02:00
|
|
|
<button class="btn btn-link text-muted" @click="toggleTheme(); false">[{{ actualTheme == "dark" ? "Light" : "Dark"
|
2023-07-20 10:44:40 +02:00
|
|
|
}} mode]</button>
|
2023-07-17 14:33:29 +02:00
|
|
|
<button class="btn btn-link text-muted" data-bs-toggle="modal" data-bs-target="#configModal">[Customize]</button>
|
2023-07-14 01:10:29 +02:00
|
|
|
<div>
|
2023-07-24 14:18:33 +02:00
|
|
|
<a href="https://github.com/defnull/fediwall" target="_blank" class="mx-1 text-muted">Fediwall <span
|
|
|
|
v-if="gitVersion">{{ gitVersion }}</span></a>
|
2023-07-14 01:10:29 +02:00
|
|
|
- <a href="https://github.com/defnull/fediwall" target="_blank" class="mx-1">Github</a>
|
|
|
|
- <a href="https://github.com/defnull/fediwall#readme" target="_blank" class="mx-1">Documentation</a>
|
2023-07-20 11:44:25 +02:00
|
|
|
- <a :href="privacyLink" target="_blank" class="mx-1">Privacy policy</a>
|
2023-07-14 01:10:29 +02:00
|
|
|
</div>
|
|
|
|
</footer>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<style>
|
|
|
|
body {
|
|
|
|
background-color: var(--bs-dark-bg-subtle)
|
|
|
|
}
|
|
|
|
|
|
|
|
#page {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#page a,
|
|
|
|
#page button.btn-link {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
#page main {
|
2023-07-17 14:33:29 +02:00
|
|
|
margin: 1rem 2rem;
|
2023-07-14 01:10:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.secret-hover .secret {
|
|
|
|
visibility: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
.secret-hover:hover .secret {
|
|
|
|
visibility: visible;
|
|
|
|
}
|
|
|
|
|
|
|
|
#page header {
|
|
|
|
padding: .5em 1em;
|
|
|
|
font-size: 1.2em;
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
text-align: center;
|
2023-07-17 14:33:29 +02:00
|
|
|
background-color: var(--bs-light-bg-subtle);
|
2023-07-14 01:10:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#page footer {
|
|
|
|
padding: 1em;
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
#wall {
|
|
|
|
margin: 0 auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.wall-item {
|
2023-07-15 12:59:22 +02:00
|
|
|
width: 10%;
|
2023-07-15 12:10:32 +02:00
|
|
|
}
|
|
|
|
|
2023-07-15 12:59:22 +02:00
|
|
|
@media (max-width: 180rem) {
|
|
|
|
.wall-item {
|
|
|
|
width: 12.5%;
|
|
|
|
}
|
|
|
|
}
|
2023-07-15 12:10:32 +02:00
|
|
|
|
2023-07-15 12:59:22 +02:00
|
|
|
@media (max-width: 160rem) {
|
2023-07-15 12:10:32 +02:00
|
|
|
.wall-item {
|
2023-07-15 12:59:22 +02:00
|
|
|
width: 14.7%;
|
2023-07-15 12:10:32 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-07-15 12:59:22 +02:00
|
|
|
@media (max-width: 140rem) {
|
|
|
|
.wall-item {
|
|
|
|
width: 16.6%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (max-width: 120rem) {
|
|
|
|
.wall-item {
|
|
|
|
width: 20%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (max-width: 100rem) {
|
|
|
|
.wall-item {
|
|
|
|
width: 25%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (max-width: 80rem) {
|
|
|
|
.wall-item {
|
|
|
|
width: 33%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (max-width: 60rem) {
|
|
|
|
#page main {
|
|
|
|
padding: 1rem .5rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.wall-item {
|
|
|
|
width: 50%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (max-width: 40rem) {
|
|
|
|
.wall-item {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
}
|
2023-07-15 12:10:32 +02:00
|
|
|
</style>
|