feat: social sharing menu
This commit is contained in:
parent
5c20f585a4
commit
4bf94a1d30
@ -162,6 +162,7 @@ Vue.component('page-selector', () => import(/* webpackPrefetch: true, webpackChu
|
||||
Vue.component('profile', () => import(/* webpackChunkName: "profile" */ './components/profile.vue'))
|
||||
Vue.component('register', () => import(/* webpackChunkName: "register" */ './components/register.vue'))
|
||||
Vue.component('search-results', () => import(/* webpackPrefetch: true, webpackChunkName: "ui-extra" */ './components/common/search-results.vue'))
|
||||
Vue.component('social-sharing', () => import(/* webpackPrefetch: true, webpackChunkName: "ui-extra" */ './components/common/social-sharing.vue'))
|
||||
Vue.component('tags', () => import(/* webpackChunkName: "tags" */ './components/tags.vue'))
|
||||
Vue.component('unauthorized', () => import(/* webpackChunkName: "unauthorized" */ './components/unauthorized.vue'))
|
||||
Vue.component('v-card-chin', () => import(/* webpackPrefetch: true, webpackChunkName: "ui-extra" */ './components/common/v-card-chin.vue'))
|
||||
|
106
client/components/common/social-sharing.vue
Normal file
106
client/components/common/social-sharing.vue
Normal file
@ -0,0 +1,106 @@
|
||||
<template lang="pug">
|
||||
v-list(nav, dense)
|
||||
v-list-item(@click='', ref='copyUrlButton')
|
||||
v-icon(color='grey', small) mdi-content-copy
|
||||
v-list-item-title.px-3 Copy URL
|
||||
v-list-item(:href='`mailto:?subject=` + encodeURIComponent(title) + `&body=` + encodeURIComponent(url) + `%0D%0A%0D%0A` + encodeURIComponent(description)')
|
||||
v-icon(color='grey', small) mdi-email-outline
|
||||
v-list-item-title.px-3 Email
|
||||
v-list-item(@click='openSocialPop(`https://www.facebook.com/sharer/sharer.php?u=` + encodeURIComponent(url) + `&title=` + encodeURIComponent(title) + `&description=` + encodeURIComponent(description))')
|
||||
v-icon(color='grey', small) mdi-facebook-box
|
||||
v-list-item-title.px-3 Facebook
|
||||
v-list-item(@click='openSocialPop(`https://www.linkedin.com/shareArticle?mini=true&url=` + encodeURIComponent(url) + `&title=` + encodeURIComponent(title) + `&summary=` + encodeURIComponent(description))')
|
||||
v-icon(color='grey', small) mdi-linkedin-box
|
||||
v-list-item-title.px-3 LinkedIn
|
||||
v-list-item(@click='openSocialPop(`https://www.reddit.com/submit?url=` + encodeURIComponent(url) + `&title=` + encodeURIComponent(title))')
|
||||
v-icon(color='grey', small) mdi-reddit
|
||||
v-list-item-title.px-3 Reddit
|
||||
v-list-item(@click='openSocialPop(`https://t.me/share/url?url=` + encodeURIComponent(url) + `&text=` + encodeURIComponent(title))')
|
||||
v-icon(color='grey', small) mdi-telegram
|
||||
v-list-item-title.px-3 Telegram
|
||||
v-list-item(@click='openSocialPop(`https://twitter.com/intent/tweet?url=` + encodeURIComponent(url) + `&text=` + encodeURIComponent(title))')
|
||||
v-icon(color='grey', small) mdi-twitter
|
||||
v-list-item-title.px-3 Twitter
|
||||
v-list-item(:href='`viber://forward?text=` + encodeURIComponent(url) + ` ` + encodeURIComponent(description)')
|
||||
v-icon(color='grey', small) mdi-phone-in-talk
|
||||
v-list-item-title.px-3 Viber
|
||||
v-list-item(@click='openSocialPop(`http://service.weibo.com/share/share.php?url=` + encodeURIComponent(url) + `&title=` + encodeURIComponent(title))')
|
||||
v-icon(color='grey', small) mdi-sina-weibo
|
||||
v-list-item-title.px-3 Weibo
|
||||
v-list-item(@click='openSocialPop(`https://api.whatsapp.com/send?text=` + encodeURIComponent(title) + `%0D%0A` + encodeURIComponent(url))')
|
||||
v-icon(color='grey', small) mdi-whatsapp
|
||||
v-list-item-title.px-3 Whatsapp
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import ClipboardJS from 'clipboard'
|
||||
|
||||
export default {
|
||||
props: {
|
||||
url: {
|
||||
type: String,
|
||||
default: window.location.url
|
||||
},
|
||||
title: {
|
||||
type: String,
|
||||
default: 'Untitled Page'
|
||||
},
|
||||
description: {
|
||||
type: String,
|
||||
default: ''
|
||||
}
|
||||
},
|
||||
data () {
|
||||
return {
|
||||
width: 626,
|
||||
height: 436,
|
||||
left: 0,
|
||||
top: 0
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
openSocialPop (url) {
|
||||
const popupWindow = window.open(
|
||||
url,
|
||||
'sharer',
|
||||
`status=no,height=${this.height},width=${this.width},resizable=yes,left=${this.left},top=${this.top},screenX=${this.left},screenY=${this.top},toolbar=no,menubar=no,scrollbars=no,location=no,directories=no`
|
||||
)
|
||||
|
||||
popupWindow.focus()
|
||||
}
|
||||
},
|
||||
mounted () {
|
||||
const clip = new ClipboardJS(this.$refs.copyUrlButton.$el, {
|
||||
text: () => { return this.url }
|
||||
})
|
||||
|
||||
clip.on('success', () => {
|
||||
this.$store.commit('showNotification', {
|
||||
style: 'success',
|
||||
message: `URL copied successfully`,
|
||||
icon: 'content-copy'
|
||||
})
|
||||
})
|
||||
clip.on('error', () => {
|
||||
this.$store.commit('showNotification', {
|
||||
style: 'red',
|
||||
message: `Failed to copy to clipboard`,
|
||||
icon: 'alert'
|
||||
})
|
||||
})
|
||||
|
||||
/**
|
||||
* Center the popup on dual screens
|
||||
* http://stackoverflow.com/questions/4068373/center-a-popup-window-on-screen/32261263
|
||||
*/
|
||||
const dualScreenLeft = window.screenLeft !== undefined ? window.screenLeft : screen.left
|
||||
const dualScreenTop = window.screenTop !== undefined ? window.screenTop : screen.top
|
||||
|
||||
const width = window.innerWidth ? window.innerWidth : (document.documentElement.clientWidth ? document.documentElement.clientWidth : screen.width)
|
||||
const height = window.innerHeight ? window.innerHeight : (document.documentElement.clientHeight ? document.documentElement.clientHeight : screen.height)
|
||||
|
||||
this.left = ((width / 2) - (this.width / 2)) + dualScreenLeft
|
||||
this.top = ((height / 2) - (this.height / 2)) + dualScreenTop
|
||||
}
|
||||
}
|
||||
</script>
|
@ -122,10 +122,17 @@
|
||||
template(v-slot:activator='{ on }')
|
||||
v-btn(icon, tile, v-on='on'): v-icon(color='grey') mdi-bookmark
|
||||
span {{$t('common:page.bookmark')}}
|
||||
v-tooltip(bottom)
|
||||
template(v-slot:activator='{ on }')
|
||||
v-btn(icon, tile, v-on='on'): v-icon(color='grey') mdi-share-variant
|
||||
span {{$t('common:page.share')}}
|
||||
v-menu(offset-y, bottom, min-width='300')
|
||||
template(v-slot:activator='{ on: menu }')
|
||||
v-tooltip(bottom)
|
||||
template(v-slot:activator='{ on: tooltip }')
|
||||
v-btn(icon, tile, v-on='{ ...menu, ...tooltip }'): v-icon(color='grey') mdi-share-variant
|
||||
span {{$t('common:page.share')}}
|
||||
social-sharing(
|
||||
:url='pageUrl'
|
||||
:title='title'
|
||||
:description='description'
|
||||
)
|
||||
v-tooltip(bottom)
|
||||
template(v-slot:activator='{ on }')
|
||||
v-btn(icon, tile, v-on='on', @click='print'): v-icon(color='grey') mdi-printer
|
||||
@ -377,7 +384,8 @@ export default {
|
||||
})
|
||||
return result
|
||||
}, []))
|
||||
}
|
||||
},
|
||||
pageUrl () { return window.location.href }
|
||||
},
|
||||
created() {
|
||||
this.$store.commit('page/SET_AUTHOR_ID', this.authorId)
|
||||
|
Loading…
Reference in New Issue
Block a user