|
|
|
<template>
|
|
|
|
<button
|
|
|
|
class="share-button share-button--pocket"
|
|
|
|
type="button"
|
|
|
|
:url="url"
|
|
|
|
:btnText="btnText"
|
|
|
|
:modalWidth="modalWidth"
|
|
|
|
:modalHeight="modalHeight"
|
|
|
|
:hasIcon="hasIcon"
|
|
|
|
:isBlank="isBlank"
|
|
|
|
@click="openShareWindow"
|
|
|
|
>
|
|
|
|
<icon iconName="Pocket" class="share-button__icon" v-if="hasIcon === true">
|
|
|
|
<path
|
|
|
|
d="M18.813 10.259l-5.646 5.419c-.32.305-.73.458-1.141.458-.41 0-.821-.153-1.141-.458l-5.646-5.419c-.657-.628-.677-1.671-.049-2.326.63-.657 1.671-.679 2.325-.05l4.511 4.322 4.517-4.322c.66-.631 1.697-.607 2.326.049.631.645.615 1.695-.045 2.326l-.011.001zm5.083-7.546c-.299-.858-1.125-1.436-2.041-1.436H2.179c-.9 0-1.717.564-2.037 1.405-.094.25-.142.511-.142.774v7.245l.084 1.441c.348 3.277 2.047 6.142 4.682 8.139.045.036.094.07.143.105l.03.023c1.411 1.03 2.989 1.728 4.694 2.072.786.158 1.591.24 2.389.24.739 0 1.481-.067 2.209-.204.088-.029.176-.045.264-.06.023 0 .049-.015.074-.029 1.633-.36 3.148-1.036 4.508-2.025l.029-.031.135-.105c2.627-1.995 4.324-4.862 4.686-8.148L24 10.678V3.445c0-.251-.031-.5-.121-.742l.017.01z"
|
|
|
|
/>
|
|
|
|
</icon>
|
|
|
|
<span class="share-button__text" v-if="btnText">{{btnText}}</span>
|
|
|
|
</button>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import Icon from "./icon/Icon.vue";
|
|
|
|
import { getDocumentHref, eventEmit, createWindow } from "../helpers";
|
|
|
|
|
|
|
|
export default {
|
|
|
|
name: "PocketShareButton",
|
|
|
|
components: { Icon },
|
|
|
|
props: {
|
|
|
|
url: { type: String, default: getDocumentHref },
|
|
|
|
btnText: { type: String, default: "Pocket" },
|
|
|
|
modalWidth: { type: Number },
|
|
|
|
modalHeight: { type: Number },
|
|
|
|
hasIcon: { type: Boolean, default: true },
|
|
|
|
isBlank: { type: Boolean, default: true }
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
openShareWindow() {
|
|
|
|
eventEmit(this, "onShare", { name: "Pocket" });
|
|
|
|
const configWindow = createWindow(
|
|
|
|
this.$props.modalWidth,
|
|
|
|
this.$props.modalHeight
|
|
|
|
);
|
|
|
|
const url = `https://getpocket.com/edit?url=${encodeURIComponent(
|
|
|
|
this.$props.url
|
|
|
|
)}`;
|
|
|
|
|
|
|
|
return this.$props.isBlank
|
|
|
|
? window.open(url, "_blank")
|
|
|
|
: window.open(url, "Share this", configWindow);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
</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: #ef3e55;
|
|
|
|
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(246, 182, 191, 0.4);
|
|
|
|
}
|
|
|
|
.share-button:hover {
|
|
|
|
background-color: rgba(239, 62, 85, 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: #ef3e55;
|
|
|
|
}
|
|
|
|
.share-button--outline .share-button__text {
|
|
|
|
color: #ef3e55;
|
|
|
|
}
|
|
|
|
.share-button--outline .share-button__icon path {
|
|
|
|
fill: #ef3e55;
|
|
|
|
}
|
|
|
|
.share-button--outline .share-button__counter {
|
|
|
|
color: rgba(239, 62, 85, 0.9);
|
|
|
|
border-color: rgba(239, 62, 85, 0.9);
|
|
|
|
}
|
|
|
|
.share-button--outline:hover {
|
|
|
|
background-color: transparent;
|
|
|
|
border-color: rgba(239, 62, 85, 0.9);
|
|
|
|
}
|
|
|
|
.share-button--outline:hover .share-button__text {
|
|
|
|
color: #ef3e55;
|
|
|
|
}
|
|
|
|
.share-button--outline:hover .share-button__icon path {
|
|
|
|
fill: rgba(239, 62, 85, 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: #ca2f47;
|
|
|
|
}
|
|
|
|
.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: #ef3e55;
|
|
|
|
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: #ca2f47;
|
|
|
|
}
|
|
|
|
.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: #ef3e55;
|
|
|
|
}
|
|
|
|
.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>
|