You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
321 lines
8.0 KiB
321 lines
8.0 KiB
<template> |
|
<button |
|
class="share-button share-button--linkedIn" |
|
type="button" |
|
:url="url" |
|
:btnText="btnText" |
|
:modalWidth="modalWidth" |
|
:modalHeight="modalHeight" |
|
:hasIcon="hasIcon" |
|
:hasCounter="hasCounter" |
|
:digitsCounter="digitsCounter" |
|
:keyCounter="keyCounter" |
|
:isBlank="isBlank" |
|
@click="openShareWindow" |
|
> |
|
<icon iconName="LinkedIn" class="share-button__icon" v-if="hasIcon === true"> |
|
<path |
|
d="M20.447 20.452h-3.554v-5.569c0-1.328-.027-3.037-1.852-3.037-1.853 0-2.136 1.445-2.136 2.939v5.667H9.351V9h3.414v1.561h.046c.477-.9 1.637-1.85 3.37-1.85 3.601 0 4.267 2.37 4.267 5.455v6.286zM5.337 7.433c-1.144 0-2.063-.926-2.063-2.065 0-1.138.92-2.063 2.063-2.063 1.14 0 2.064.925 2.064 2.063 0 1.139-.925 2.065-2.064 2.065zm1.782 13.019H3.555V9h3.564v11.452zM22.225 0H1.771C.792 0 0 .774 0 1.729v20.542C0 23.227.792 24 1.771 24h20.451C23.2 24 24 23.227 24 22.271V1.729C24 .774 23.2 0 22.222 0h.003z" |
|
/> |
|
</icon> |
|
<img src="{{customIcon}}" v-if="customIcon!=''"> |
|
<span class="share-button__text" v-if="btnText">{{btnText}}</span> |
|
<span class="share-button__counter" v-if="hasCounter && counter > 0">{{ shortСounter }}</span> |
|
</button> |
|
</template> |
|
|
|
<script> |
|
import Icon from "./icon/Icon.vue"; |
|
import { |
|
getDocumentHref, |
|
eventEmit, |
|
createWindow, |
|
getRandomNumber, |
|
getShortNumber |
|
} from "../helpers"; |
|
|
|
export default { |
|
name: "LinkedInShareButton", |
|
components: { Icon }, |
|
props: { |
|
url: { type: String, default: getDocumentHref }, |
|
btnText: { type: String, default: "LinkedIn" }, |
|
modalWidth: { type: Number, default: 500 }, |
|
modalHeight: { type: Number, default: 500 }, |
|
hasIcon: { type: Boolean, default: true }, |
|
hasCounter: { type: Boolean, default: false }, |
|
digitsCounter: { type: Number, default: 0 }, |
|
keyCounter: { type: String, default: "" }, |
|
isBlank: { type: Boolean, default: true }, |
|
customIcon: {type: String, default:""} |
|
}, |
|
mounted() { |
|
if (this.$props.hasCounter) this.getShareCounter(); |
|
}, |
|
methods: { |
|
openShareWindow() { |
|
if (this.$props.hasCounter) { |
|
eventEmit(this, "onShareCounter", { |
|
name: "LinkedIn", |
|
counter: this.counter |
|
}); |
|
} else { |
|
eventEmit(this, "onShare", { name: "LinkedIn" }); |
|
} |
|
const configWindow = createWindow( |
|
this.$props.modalWidth, |
|
this.$props.modalHeight |
|
); |
|
const url = `https://www.linkedin.com/shareArticle?url=${encodeURIComponent( |
|
this.$props.url |
|
)}`; |
|
|
|
return this.$props.isBlank |
|
? window.open(url, "_blank") |
|
: window.open(url, "Share this", configWindow); |
|
}, |
|
|
|
getShareCounter() { |
|
const callback = |
|
this.$props.keyCounter || `LinkedIn_${getRandomNumber()}`; |
|
const script = document.createElement("script"); |
|
script.src = `https://www.linkedin.com/countserv/count/share?url=${encodeURIComponent( |
|
this.$props.url |
|
)}&callback=${callback}`; |
|
document.body.appendChild(script); |
|
|
|
window[callback] = count => { |
|
if (!count) return; |
|
this.counter = count.count; |
|
this.shortСounter = getShortNumber( |
|
this.counter, |
|
this.$props.digitsCounter |
|
); |
|
}; |
|
} |
|
}, |
|
data() { |
|
return { |
|
counter: 0, |
|
shortСounter: 0 |
|
}; |
|
} |
|
}; |
|
</script> |
|
|
|
<style lang="css" scoped> |
|
.share-button * { |
|
box-sizing: border-box; |
|
} |
|
|
|
.share-button { |
|
display: inline-block; |
|
min-width: 42px; |
|
min-height: 42px; |
|
padding: 10px 8px; |
|
margin: 4px; |
|
color: #fff; |
|
background-color: #0074b3; |
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; |
|
font-weight: 400; |
|
vertical-align: top; |
|
user-select: none; |
|
border: none; |
|
border-radius: 4px; |
|
box-shadow: none; |
|
text-rendering: auto; |
|
text-indent: 0px; |
|
text-align: center; |
|
letter-spacing: normal; |
|
word-spacing: normal; |
|
text-shadow: none; |
|
transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out, border-color 0.3s ease-in-out; |
|
} |
|
.share-button:disabled { |
|
opacity: 0.9; |
|
} |
|
.share-button:focus { |
|
outline: none; |
|
box-shadow: 0 0 0 3px rgba(57, 182, 249, 0.4); |
|
} |
|
.share-button:hover { |
|
background-color: rgba(0, 116, 179, 0.9); |
|
} |
|
.share-button:not(:disabled):not(.disabled) { |
|
cursor: pointer; |
|
} |
|
.share-button:last-child { |
|
margin-right: 0; |
|
} |
|
.share-button__icon { |
|
display: inline-block; |
|
padding: 0; |
|
margin: 0 7px; |
|
font-size: 0; |
|
vertical-align: middle; |
|
} |
|
.share-button__icon path { |
|
fill: #fff; |
|
} |
|
.share-button__icon:last-child { |
|
margin: 0; |
|
} |
|
.share-button__text { |
|
display: inline-block; |
|
margin: 0 7px; |
|
font-size: 16px; |
|
vertical-align: middle; |
|
} |
|
.share-button__counter { |
|
display: inline-block; |
|
padding: 3px 10px; |
|
margin-left: 4px; |
|
font-size: 12px; |
|
border-left: 1px solid #fff; |
|
vertical-align: middle; |
|
} |
|
.share-button--circle { |
|
min-width: 42px; |
|
min-height: 42px; |
|
padding: 10px; |
|
border-radius: 42px; |
|
} |
|
.share-button--outline { |
|
background-color: transparent; |
|
border: 1px solid; |
|
background-color: transparent; |
|
border-color: #0074b3; |
|
} |
|
.share-button--outline .share-button__text { |
|
color: #0074b3; |
|
} |
|
.share-button--outline .share-button__icon path { |
|
fill: #0074b3; |
|
} |
|
.share-button--outline .share-button__counter { |
|
color: rgba(0, 116, 179, 0.9); |
|
border-color: rgba(0, 116, 179, 0.9); |
|
} |
|
.share-button--outline:hover { |
|
background-color: transparent; |
|
border-color: rgba(0, 116, 179, 0.9); |
|
} |
|
.share-button--outline:hover .share-button__text { |
|
color: #0074b3; |
|
} |
|
.share-button--outline:hover .share-button__icon path { |
|
fill: rgba(0, 116, 179, 0.9); |
|
} |
|
.share-button--painted { |
|
position: relative; |
|
min-width: 42px; |
|
min-height: 42px; |
|
padding: 15px; |
|
margin-bottom: 30px; |
|
border-radius: 42px; |
|
background-color: transparent; |
|
border: 3px solid; |
|
border-color: #0f5071; |
|
} |
|
.share-button--painted::before { |
|
content: ""; |
|
z-index: -1; |
|
position: absolute; |
|
top: -1.5px; |
|
left: -1.5px; |
|
display: block; |
|
width: calc(100% + 3px); |
|
height: calc(100% + 3px); |
|
background-color: #0074b3; |
|
border-radius: 50%; |
|
transform: translate3d(3px, 2px, 0); |
|
transition: transform 0.2s ease-in-out; |
|
} |
|
.share-button--painted .share-button__icon { |
|
width: 30px; |
|
height: 30px; |
|
margin: 0; |
|
} |
|
.share-button--painted .share-button__text { |
|
display: none; |
|
} |
|
.share-button--painted .share-button__counter { |
|
position: absolute; |
|
bottom: -30px; |
|
right: -7px; |
|
margin: 0; |
|
padding: 4px 10px; |
|
border: 3px solid; |
|
font-size: 8px; |
|
border-radius: 15px; |
|
color: #fff; |
|
border-color: #0f5071; |
|
} |
|
.share-button--painted .share-button__counter::before { |
|
content: ""; |
|
z-index: -1; |
|
position: absolute; |
|
top: -1.65px; |
|
left: -1.5px; |
|
display: block; |
|
width: calc(100% + 3px); |
|
height: calc(100% + 3px); |
|
border-radius: 15px; |
|
transform: translate3d(-3px, 1.5px, 0); |
|
transition: transform 0.2s ease-in-out; |
|
background-color: #0074b3; |
|
} |
|
.share-button--painted:hover::before { |
|
transform: translate3d(0, 0, 0); |
|
} |
|
.share-button--painted:hover .share-button__counter::before { |
|
transform: translate3d(0px, 0px, 0); |
|
} |
|
.share-button--painted:focus::before { |
|
transform: translate3d(0, 0, 0); |
|
} |
|
.share-button--painted:focus .share-button__counter::before { |
|
transform: translate3d(0px, 0px, 0); |
|
} |
|
|
|
@media (max-width: 768px) { |
|
.share-button { |
|
min-width: 38px; |
|
min-height: 38px; |
|
padding: 8px 8px; |
|
margin: 2px; |
|
} |
|
.share-button__icon { |
|
width: 18px; |
|
height: 18px; |
|
margin: 0 4px; |
|
} |
|
.share-button__text { |
|
margin: 0 4px; |
|
font-size: 14px; |
|
} |
|
.share-button--circle { |
|
border-radius: 38px; |
|
} |
|
.share-button--painted { |
|
min-width: 48px; |
|
min-height: 48px; |
|
margin: 4px 4px 20px 4px; |
|
} |
|
.share-button--painted::before { |
|
transform: translate3d(2.5px, 1.5px, 0); |
|
} |
|
.share-button--painted .share-button__icon { |
|
width: 20px; |
|
height: 20px; |
|
} |
|
.share-button--painted .share-button__counter { |
|
bottom: -24px; |
|
right: -8px; |
|
padding: 2px 7px; |
|
} |
|
.share-button--painted .share-button__counter::before { |
|
transform: translate3d(-2px, 1.75px, 0); |
|
} |
|
} |
|
</style>
|
|
|