Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wiki-js
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
List
Board
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jacklull
wiki-js
Commits
4bf94a1d
You need to sign in or sign up before continuing.
Commit
4bf94a1d
authored
Feb 09, 2020
by
NGPixel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat: social sharing menu
parent
5c20f585
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
120 additions
and
5 deletions
+120
-5
client-app.js
client/client-app.js
+1
-0
social-sharing.vue
client/components/common/social-sharing.vue
+106
-0
page.vue
client/themes/default/components/page.vue
+13
-5
No files found.
client/client-app.js
View file @
4bf94a1d
...
@@ -162,6 +162,7 @@ Vue.component('page-selector', () => import(/* webpackPrefetch: true, webpackChu
...
@@ -162,6 +162,7 @@ Vue.component('page-selector', () => import(/* webpackPrefetch: true, webpackChu
Vue
.
component
(
'profile'
,
()
=>
import
(
/* webpackChunkName: "profile" */
'./components/profile.vue'
))
Vue
.
component
(
'profile'
,
()
=>
import
(
/* webpackChunkName: "profile" */
'./components/profile.vue'
))
Vue
.
component
(
'register'
,
()
=>
import
(
/* webpackChunkName: "register" */
'./components/register.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
(
'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
(
'tags'
,
()
=>
import
(
/* webpackChunkName: "tags" */
'./components/tags.vue'
))
Vue
.
component
(
'unauthorized'
,
()
=>
import
(
/* webpackChunkName: "unauthorized" */
'./components/unauthorized.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'
))
Vue
.
component
(
'v-card-chin'
,
()
=>
import
(
/* webpackPrefetch: true, webpackChunkName: "ui-extra" */
'./components/common/v-card-chin.vue'
))
...
...
client/components/common/social-sharing.vue
0 → 100644
View file @
4bf94a1d
<
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
>
client/themes/default/components/page.vue
View file @
4bf94a1d
...
@@ -122,10 +122,17 @@
...
@@ -122,10 +122,17 @@
template(v-slot:activator='{ on }')
template(v-slot:activator='{ on }')
v-btn(icon, tile, v-on='on'): v-icon(color='grey') mdi-bookmark
v-btn(icon, tile, v-on='on'): v-icon(color='grey') mdi-bookmark
span
{{
$t
(
'common:page.bookmark'
)
}}
span
{{
$t
(
'common:page.bookmark'
)
}}
v-tooltip(bottom)
v-menu(offset-y, bottom, min-width='300')
template(v-slot:activator='{ on }')
template(v-slot:activator='{ on: menu }')
v-btn(icon, tile, v-on='on'): v-icon(color='grey') mdi-share-variant
v-tooltip(bottom)
span
{{
$t
(
'common:page.share'
)
}}
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)
v-tooltip(bottom)
template(v-slot:activator='{ on }')
template(v-slot:activator='{ on }')
v-btn(icon, tile, v-on='on', @click='print'): v-icon(color='grey') mdi-printer
v-btn(icon, tile, v-on='on', @click='print'): v-icon(color='grey') mdi-printer
...
@@ -377,7 +384,8 @@ export default {
...
@@ -377,7 +384,8 @@ export default {
})
})
return
result
return
result
},
[]))
},
[]))
}
},
pageUrl
()
{
return
window
.
location
.
href
}
},
},
created
()
{
created
()
{
this
.
$store
.
commit
(
'page/SET_AUTHOR_ID'
,
this
.
authorId
)
this
.
$store
.
commit
(
'page/SET_AUTHOR_ID'
,
this
.
authorId
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment