|
|
|
<template>
|
|
|
|
<button
|
|
|
|
class="share-button share-button--instapaper"
|
|
|
|
type="button"
|
|
|
|
:url="url"
|
|
|
|
:description="description"
|
|
|
|
:btnText="btnText"
|
|
|
|
:modalWidth="modalWidth"
|
|
|
|
:modalHeight="modalHeight"
|
|
|
|
:hasIcon="hasIcon"
|
|
|
|
:isBlank="isBlank"
|
|
|
|
@click="openShareWindow"
|
|
|
|
>
|
|
|
|
<icon iconName="Instapaper" class="share-button__icon" v-if="hasIcon === true">
|
|
|
|
<path
|
|
|
|
d="M14.766 20.259c0 1.819.271 2.089 2.934 2.292V24H6.301v-1.449c2.666-.203 2.934-.473 2.934-2.292V3.708c0-1.784-.27-2.089-2.934-2.292V0h11.398v1.416c-2.662.203-2.934.506-2.934 2.292v16.551z"
|
|
|
|
/>
|
|
|
|
</icon>
|
|
|
|
<span class="share-button__text" v-if="btnText">{{btnText}}</span>
|
|
|
|
</button>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import Icon from "./icon/Icon.vue";
|
|
|
|
import {
|
|
|
|
getDocumentHref,
|
|
|
|
getDocumentTitle,
|
|
|
|
eventEmit,
|
|
|
|
createWindow
|
|
|
|
} from "../helpers";
|
|
|
|
|
|
|
|
export default {
|
|
|
|
name: "InstapaperShareButton",
|
|
|
|
components: { Icon },
|
|
|
|
props: {
|
|
|
|
url: { type: String, default: getDocumentHref },
|
|
|
|
description: { type: String, default: getDocumentTitle },
|
|
|
|
btnText: { type: String, default: "Instapaper" },
|
|
|
|
modalWidth: { type: Number, default: 500 },
|
|
|
|
modalHeight: { type: Number, default: 500 },
|
|
|
|
hasIcon: { type: Boolean, default: true },
|
|
|
|
isBlank: { type: Boolean, default: true }
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
openShareWindow() {
|
|
|
|
eventEmit(this, "onShare", { name: "Instapaper" });
|
|
|
|
const configWindow = createWindow(
|
|
|
|
this.$props.modalWidth,
|
|
|
|
this.$props.modalHeight
|
|
|
|
);
|
|
|
|
const url = `https://www.instapaper.com/edit?url=${encodeURIComponent(
|
|
|
|
this.$props.url
|
|
|
|
)}&title=${encodeURIComponent(this.$props.description)}`;
|
|
|
|
|
|
|
|
return this.$props.isBlank
|
|
|
|
? window.open(url, "_blank")
|
|
|
|
: window.open(url, "Share this", configWindow);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
$main-color: hsla(0, 0%, 12%, 1);
|
|
|
|
$focus-color: hsla(0, 0%, 37%, 0.4);
|
|
|
|
$hover-color: hsla(0, 0%, 12%, 0.9);
|
|
|
|
$painted-color: hsla(0, 0%, 0%, 1);
|
|
|
|
|
|
|
|
.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: $main-color;
|
|
|
|
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;
|
|
|
|
|
|
|
|
&:disabled {
|
|
|
|
opacity: 0.9;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:focus {
|
|
|
|
outline: none;
|
|
|
|
box-shadow: 0 0 0 3px $focus-color;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background-color: $hover-color;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:not(:disabled):not(.disabled) {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__icon {
|
|
|
|
display: inline-block;
|
|
|
|
padding: 0;
|
|
|
|
margin: 0 7px;
|
|
|
|
font-size: 0;
|
|
|
|
vertical-align: middle;
|
|
|
|
|
|
|
|
path {
|
|
|
|
fill: #fff;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__text {
|
|
|
|
display: inline-block;
|
|
|
|
margin: 0 7px;
|
|
|
|
font-size: 16px;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__counter {
|
|
|
|
display: inline-block;
|
|
|
|
padding: 3px 10px;
|
|
|
|
margin-left: 4px;
|
|
|
|
font-size: 12px;
|
|
|
|
border-left: 1px solid #fff;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
|
|
|
&--circle {
|
|
|
|
min-width: 42px;
|
|
|
|
min-height: 42px;
|
|
|
|
padding: 10px;
|
|
|
|
border-radius: 42px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&--outline {
|
|
|
|
background-color: transparent;
|
|
|
|
border: 1px solid;
|
|
|
|
background-color: transparent;
|
|
|
|
border-color: $main-color;
|
|
|
|
|
|
|
|
.share-button__text {
|
|
|
|
color: $main-color;
|
|
|
|
}
|
|
|
|
|
|
|
|
.share-button__icon path {
|
|
|
|
fill: $main-color;
|
|
|
|
}
|
|
|
|
|
|
|
|
.share-button__counter {
|
|
|
|
color: $hover-color;
|
|
|
|
border-color: $hover-color;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background-color: transparent;
|
|
|
|
border-color: $hover-color;
|
|
|
|
|
|
|
|
.share-button__text {
|
|
|
|
color: $main-color;
|
|
|
|
}
|
|
|
|
|
|
|
|
.share-button__icon path {
|
|
|
|
fill: $hover-color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&--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: $painted-color;
|
|
|
|
|
|
|
|
&::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: $main-color;
|
|
|
|
border-radius: 50%;
|
|
|
|
transform: translate3d(3px, 2px, 0);
|
|
|
|
transition: transform 0.2s ease-in-out;
|
|
|
|
}
|
|
|
|
|
|
|
|
.share-button__icon {
|
|
|
|
width: 30px;
|
|
|
|
height: 30px;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.share-button__text {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.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: $painted-color;
|
|
|
|
|
|
|
|
&::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: $main-color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
&::before {
|
|
|
|
transform: translate3d(0, 0, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
.share-button__counter::before {
|
|
|
|
transform: translate3d(0px, 0px, 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&:focus {
|
|
|
|
&::before {
|
|
|
|
transform: translate3d(0, 0, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
.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;
|
|
|
|
|
|
|
|
&__icon {
|
|
|
|
width: 18px;
|
|
|
|
height: 18px;
|
|
|
|
margin: 0 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__text {
|
|
|
|
margin: 0 4px;
|
|
|
|
font-size: 14px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&--circle {
|
|
|
|
border-radius: 38px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&--painted {
|
|
|
|
min-width: 48px;
|
|
|
|
min-height: 48px;
|
|
|
|
margin: 4px 4px 20px 4px;
|
|
|
|
|
|
|
|
&::before {
|
|
|
|
transform: translate3d(2.5px, 1.5px, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
.share-button__icon {
|
|
|
|
width: 20px;
|
|
|
|
height: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.share-button__counter {
|
|
|
|
bottom: -24px;
|
|
|
|
right: -8px;
|
|
|
|
padding: 2px 7px;
|
|
|
|
|
|
|
|
&::before {
|
|
|
|
transform: translate3d(-2px, 1.75px, 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|