208 lines
5.6 KiB
Vue
208 lines
5.6 KiB
Vue
<template>
|
|
<div class="modal-card">
|
|
<header class="modal-card-head">
|
|
<p class="modal-card-title">{{ $t("Share this group") }}</p>
|
|
</header>
|
|
|
|
<section class="modal-card-body is-flex" v-if="group">
|
|
<div class="container has-text-centered">
|
|
<b-notification
|
|
type="is-warning"
|
|
v-if="group.visibility !== GroupVisibility.PUBLIC"
|
|
:closable="false"
|
|
>
|
|
{{
|
|
$t(
|
|
"This group is accessible only through it's link. Be careful where you post this link."
|
|
)
|
|
}}
|
|
</b-notification>
|
|
<b-field :label="$t('Group URL')" label-for="group-url-text">
|
|
<b-input
|
|
id="group-url-text"
|
|
ref="groupURLInput"
|
|
:value="group.url"
|
|
expanded
|
|
/>
|
|
<p class="control">
|
|
<b-tooltip
|
|
:label="$t('URL copied to clipboard')"
|
|
:active="showCopiedTooltip"
|
|
always
|
|
type="is-success"
|
|
position="is-left"
|
|
>
|
|
<b-button
|
|
type="is-primary"
|
|
icon-right="content-paste"
|
|
native-type="button"
|
|
@click="copyURL"
|
|
@keyup.enter="copyURL"
|
|
:title="$t('Copy URL to clipboard')"
|
|
/>
|
|
</b-tooltip>
|
|
</p>
|
|
</b-field>
|
|
<div>
|
|
<a
|
|
:href="twitterShareUrl"
|
|
target="_blank"
|
|
rel="nofollow noopener"
|
|
title="Twitter"
|
|
><b-icon icon="twitter" size="is-large" type="is-primary"
|
|
/></a>
|
|
<a
|
|
:href="mastodonShareUrl"
|
|
class="mastodon"
|
|
target="_blank"
|
|
rel="nofollow noopener"
|
|
title="Mastodon"
|
|
>
|
|
<mastodon-logo />
|
|
</a>
|
|
<a
|
|
:href="facebookShareUrl"
|
|
target="_blank"
|
|
rel="nofollow noopener"
|
|
title="Facebook"
|
|
><b-icon icon="facebook" size="is-large" type="is-primary"
|
|
/></a>
|
|
<a
|
|
:href="linkedInShareUrl"
|
|
target="_blank"
|
|
rel="nofollow noopener"
|
|
title="LinkedIn"
|
|
><b-icon icon="linkedin" size="is-large" type="is-primary"
|
|
/></a>
|
|
<a
|
|
:href="whatsAppShareUrl"
|
|
target="_blank"
|
|
rel="nofollow noopener"
|
|
title="WhatsApp"
|
|
><b-icon icon="whatsapp" size="is-large" type="is-primary"
|
|
/></a>
|
|
<a
|
|
:href="telegramShareUrl"
|
|
class="telegram"
|
|
target="_blank"
|
|
rel="nofollow noopener"
|
|
title="Telegram"
|
|
>
|
|
<telegram-logo />
|
|
</a>
|
|
<a
|
|
title="Diaspora"
|
|
:href="diasporaShareUrl"
|
|
class="diaspora"
|
|
target="_blank"
|
|
rel="nofollow noopener"
|
|
>
|
|
<diaspora-logo />
|
|
</a>
|
|
<a
|
|
:href="emailShareUrl"
|
|
target="_blank"
|
|
rel="nofollow noopener"
|
|
title="Email"
|
|
><b-icon icon="email" size="is-large" type="is-primary"
|
|
/></a>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { Component, Prop, Vue, Ref } from "vue-property-decorator";
|
|
import { GroupVisibility } from "@/types/enums";
|
|
import DiasporaLogo from "../Share/DiasporaLogo.vue";
|
|
import MastodonLogo from "../Share/MastodonLogo.vue";
|
|
import TelegramLogo from "../Share/MastodonLogo.vue";
|
|
import { displayName, IGroup } from "@/types/actor";
|
|
|
|
@Component({
|
|
components: {
|
|
DiasporaLogo,
|
|
MastodonLogo,
|
|
TelegramLogo,
|
|
},
|
|
})
|
|
export default class ShareGroupModal extends Vue {
|
|
@Prop({ type: Object, required: true }) group!: IGroup;
|
|
|
|
@Ref("groupURLInput") readonly groupURLInput!: any;
|
|
|
|
GroupVisibility = GroupVisibility;
|
|
|
|
showCopiedTooltip = false;
|
|
|
|
get twitterShareUrl(): string {
|
|
return `https://twitter.com/intent/tweet?url=${encodeURIComponent(
|
|
this.group.url
|
|
)}&text=${displayName(this.group)}`;
|
|
}
|
|
|
|
get facebookShareUrl(): string {
|
|
return `https://www.facebook.com/sharer/sharer.php?u=${encodeURIComponent(
|
|
this.group.url
|
|
)}`;
|
|
}
|
|
|
|
get linkedInShareUrl(): string {
|
|
return `https://www.linkedin.com/shareArticle?mini=true&url=${encodeURIComponent(
|
|
this.group.url
|
|
)}&title=${displayName(this.group)}`;
|
|
}
|
|
|
|
get whatsAppShareUrl(): string {
|
|
return `https://wa.me/?text=${encodeURIComponent(this.basicTextToEncode)}`;
|
|
}
|
|
|
|
get telegramShareUrl(): string {
|
|
return `https://t.me/share/url?url=${encodeURIComponent(
|
|
this.group.url
|
|
)}&text=${encodeURIComponent(displayName(this.group))}`;
|
|
}
|
|
|
|
get emailShareUrl(): string {
|
|
return `mailto:?to=&body=${this.group.url}&subject=${displayName(
|
|
this.group
|
|
)}`;
|
|
}
|
|
|
|
get diasporaShareUrl(): string {
|
|
return `https://share.diasporafoundation.org/?title=${encodeURIComponent(
|
|
displayName(this.group)
|
|
)}&url=${encodeURIComponent(this.group.url)}`;
|
|
}
|
|
|
|
get mastodonShareUrl(): string {
|
|
return `https://toot.karamoff.dev/?text=${encodeURIComponent(
|
|
this.basicTextToEncode
|
|
)}`;
|
|
}
|
|
|
|
get basicTextToEncode(): string {
|
|
return `${displayName(this.group)}\r\n${this.group.url}`;
|
|
}
|
|
|
|
copyURL(): void {
|
|
this.groupURLInput.$refs.input.select();
|
|
document.execCommand("copy");
|
|
this.showCopiedTooltip = true;
|
|
setTimeout(() => {
|
|
this.showCopiedTooltip = false;
|
|
}, 2000);
|
|
}
|
|
}
|
|
</script>
|
|
<style lang="scss" scoped>
|
|
.diaspora,
|
|
.mastodon,
|
|
.telegram {
|
|
::v-deep span svg {
|
|
width: 2.25rem;
|
|
}
|
|
}
|
|
</style>
|