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.
326 lines
7.3 KiB
326 lines
7.3 KiB
<template> |
|
<button |
|
class="share-button share-button--hatena" |
|
type="button" |
|
:url="url" |
|
:description="description" |
|
:btnText="btnText" |
|
:modalWidth="modalWidth" |
|
:modalHeight="modalHeight" |
|
:hasIcon="hasIcon" |
|
:isBlank="isBlank" |
|
@click="openShareWindow" |
|
> |
|
<icon iconName="Hatena" class="share-button__icon" v-if="hasIcon === true"> |
|
<path |
|
d="M20.47 0C22.42 0 24 1.58 24 3.53v16.94c0 1.95-1.58 3.53-3.53 3.53H3.53C1.58 24 0 22.42 0 20.47V3.53C0 1.58 1.58 0 3.53 0h16.94zm-3.705 14.47c-.78 0-1.41.63-1.41 1.41s.63 1.414 1.41 1.414 1.41-.645 1.41-1.425-.63-1.41-1.41-1.41zM8.61 17.247c1.2 0 2.056-.042 2.58-.12.526-.084.976-.222 1.32-.412.45-.232.78-.564 1.02-.99s.36-.915.36-1.48c0-.78-.21-1.403-.63-1.87-.42-.48-.99-.734-1.74-.794.66-.18 1.156-.45 1.456-.81.315-.344.465-.824.465-1.424 0-.48-.103-.885-.3-1.26-.21-.36-.493-.645-.883-.87-.345-.195-.735-.315-1.215-.405-.464-.074-1.29-.12-2.474-.12H5.654v10.486H8.61zm.736-4.185c.705 0 1.185.088 1.44.262.27.18.39.495.39.93 0 .405-.135.69-.42.855-.27.18-.765.254-1.44.254H8.31v-2.297h1.05zm8.656.706v-7.06h-2.46v7.06H18zM8.925 9.08c.71 0 1.185.08 1.432.24.245.16.367.435.367.83 0 .38-.13.646-.39.804-.265.154-.747.232-1.452.232h-.57V9.08h.615z" |
|
/> |
|
</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: "HatenaShareButton", |
|
components: { Icon }, |
|
props: { |
|
url: { type: String, default: getDocumentHref }, |
|
description: { type: String, default: getDocumentTitle }, |
|
btnText: { type: String, default: "Hatena" }, |
|
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: "Hatena" }); |
|
const configWindow = createWindow( |
|
this.$props.modalWidth, |
|
this.$props.modalHeight |
|
); |
|
const url = `http://b.hatena.ne.jp/bookmarklet?url=${encodeURIComponent( |
|
this.$props.url |
|
)}&btitle=${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(196, 100%, 44%, 1); |
|
$focus-color: hsla(196, 94%, 69%, 0.4); |
|
$hover-color: hsla(196, 100%, 44%, 0.9); |
|
$painted-color: hsla(195, 77%, 34%, 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>
|
|
|