rubberguppe/web/src/views/Home.vue

75 lines
2.1 KiB
Vue
Raw Normal View History

<template>
2019-10-14 00:25:07 +00:00
<div class="w3-container">
<div class="w3-center">
<img alt="Guppe logo" src="/f/guppe.png">
</div>
<h1 class="w3-center">Guppe Groups</h1>
2019-10-14 00:25:07 +00:00
<p>
Guppe brings social groups to the fediverse &mdash; making it easy to connect and meet new
people based on shared
interests without the maniuplation of your attention to maximize ad revenue nor the
walled garden lock-in of capitalist social media.
2019-10-14 00:25:07 +00:00
</p>
<h2 class="w3-center">How does Guppe work?</h2>
2019-10-14 00:25:07 +00:00
<p>
Guppe groups look like regular users you can interact with using your existing account on any
ActivityPub service, but they automatically share anything you send them with all of their followers.
2019-10-14 00:25:07 +00:00
</p>
<ol>
<li>Follow a group on @gup.pe to join that group</li>
<li>Mention a group on @gup.pe to share a post with everyone in the group</li>
<li>New groups are created on demand, just search for or mention @YourGroupNameHere@gup.pe and it will show up</li>
<li>Visit a @gup.pe group profile to see the group history</li>
</ol>
<h2 class="w3-center">Active Groups</h2>
<div class="profile-grid w3-margin-bottom w3-mobile">
<div v-for="group of groups" class="w3-card" :key="group._id">
<Profile :name="group.preferredUsername" :post-limit="3"
class="profile"/>
<router-link :to="`/u/${group.preferredUsername}`">More...</router-link>
</div>
</div>
</div>
</template>
<script>
import Profile from '@/views/Profile.vue'
export default {
name: 'home',
components: {
Profile
},
data() {
return {
groups: [],
error: null
}
},
created () {
window.fetch(`/u/`, {
method: 'get',
headers: {
accept: 'application/json'
}
}).then(res => res.json())
.then(json => {
this.groups = json
})
.catch(err => this.error = err.message)
}
}
</script>
<style scoped>
.profile {
width: 300px;
}
.profile-grid {
display: grid;
grid-gap: 15px;
grid-template-columns: auto auto;
justify-content: space-evenly;
}
</style>