2020-01-29 19:37:25 +00:00
|
|
|
<template>
|
2022-07-16 11:53:53 +00:00
|
|
|
<button
|
2022-12-19 23:50:48 +00:00
|
|
|
v-if="!link"
|
|
|
|
ref="el" class="bghgjjyj _button"
|
2022-12-28 09:22:46 +00:00
|
|
|
:class="{ inline, primary, gradate, danger, rounded, full, small }"
|
2020-01-29 19:37:25 +00:00
|
|
|
:type="type"
|
2022-09-06 08:37:58 +00:00
|
|
|
@click="emit('click', $event)"
|
2020-01-29 19:37:25 +00:00
|
|
|
@mousedown="onMousedown"
|
|
|
|
>
|
|
|
|
<div ref="ripples" class="ripples"></div>
|
|
|
|
<div class="content">
|
|
|
|
<slot></slot>
|
|
|
|
</div>
|
2021-10-11 16:04:50 +00:00
|
|
|
</button>
|
2022-07-16 11:53:53 +00:00
|
|
|
<MkA
|
|
|
|
v-else class="bghgjjyj _button"
|
2022-12-28 09:22:46 +00:00
|
|
|
:class="{ inline, primary, gradate, danger, rounded, full, small }"
|
2021-10-11 16:04:50 +00:00
|
|
|
:to="to"
|
|
|
|
@mousedown="onMousedown"
|
|
|
|
>
|
|
|
|
<div ref="ripples" class="ripples"></div>
|
|
|
|
<div class="content">
|
|
|
|
<slot></slot>
|
|
|
|
</div>
|
|
|
|
</MkA>
|
2020-01-29 19:37:25 +00:00
|
|
|
</template>
|
|
|
|
|
2022-09-06 08:37:58 +00:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { nextTick, onMounted } from 'vue';
|
2020-10-17 11:12:00 +00:00
|
|
|
|
2022-09-06 08:37:58 +00:00
|
|
|
const props = defineProps<{
|
|
|
|
type?: 'button' | 'submit' | 'reset';
|
|
|
|
primary?: boolean;
|
|
|
|
gradate?: boolean;
|
|
|
|
rounded?: boolean;
|
|
|
|
inline?: boolean;
|
|
|
|
link?: boolean;
|
|
|
|
to?: string;
|
|
|
|
autofocus?: boolean;
|
|
|
|
wait?: boolean;
|
|
|
|
danger?: boolean;
|
|
|
|
full?: boolean;
|
2022-12-28 09:22:46 +00:00
|
|
|
small?: boolean;
|
2022-09-06 08:37:58 +00:00
|
|
|
}>();
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2022-09-06 08:37:58 +00:00
|
|
|
const emit = defineEmits<{
|
|
|
|
(ev: 'click', payload: MouseEvent): void;
|
|
|
|
}>();
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2022-09-06 08:37:58 +00:00
|
|
|
let el = $ref<HTMLElement | null>(null);
|
|
|
|
let ripples = $ref<HTMLElement | null>(null);
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2022-09-06 08:37:58 +00:00
|
|
|
onMounted(() => {
|
|
|
|
if (props.autofocus) {
|
|
|
|
nextTick(() => {
|
|
|
|
el!.focus();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2022-09-06 08:37:58 +00:00
|
|
|
function distance(p, q): number {
|
|
|
|
return Math.hypot(p.x - q.x, p.y - q.y);
|
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2022-09-06 08:37:58 +00:00
|
|
|
function calcCircleScale(boxW, boxH, circleCenterX, circleCenterY): number {
|
|
|
|
const origin = { x: circleCenterX, y: circleCenterY };
|
|
|
|
const dist1 = distance({ x: 0, y: 0 }, origin);
|
|
|
|
const dist2 = distance({ x: boxW, y: 0 }, origin);
|
|
|
|
const dist3 = distance({ x: 0, y: boxH }, origin);
|
|
|
|
const dist4 = distance({ x: boxW, y: boxH }, origin);
|
|
|
|
return Math.max(dist1, dist2, dist3, dist4) * 2;
|
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2022-09-06 08:37:58 +00:00
|
|
|
function onMousedown(evt: MouseEvent): void {
|
|
|
|
const target = evt.target! as HTMLElement;
|
|
|
|
const rect = target.getBoundingClientRect();
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2022-09-06 08:37:58 +00:00
|
|
|
const ripple = document.createElement('div');
|
|
|
|
ripple.style.top = (evt.clientY - rect.top - 1).toString() + 'px';
|
|
|
|
ripple.style.left = (evt.clientX - rect.left - 1).toString() + 'px';
|
|
|
|
|
|
|
|
ripples!.appendChild(ripple);
|
|
|
|
|
|
|
|
const circleCenterX = evt.clientX - rect.left;
|
|
|
|
const circleCenterY = evt.clientY - rect.top;
|
|
|
|
|
|
|
|
const scale = calcCircleScale(target.clientWidth, target.clientHeight, circleCenterX, circleCenterY);
|
|
|
|
|
|
|
|
window.setTimeout(() => {
|
|
|
|
ripple.style.transform = 'scale(' + (scale / 2) + ')';
|
|
|
|
}, 1);
|
|
|
|
window.setTimeout(() => {
|
|
|
|
ripple.style.transition = 'all 1s ease';
|
|
|
|
ripple.style.opacity = '0';
|
|
|
|
}, 1000);
|
|
|
|
window.setTimeout(() => {
|
|
|
|
if (ripples) ripples.removeChild(ripple);
|
|
|
|
}, 2000);
|
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
</script>
|
|
|
|
|
2022-12-27 09:29:39 +00:00
|
|
|
<style lang="scss" scoped>
|
2020-01-29 19:37:25 +00:00
|
|
|
.bghgjjyj {
|
|
|
|
position: relative;
|
2020-10-17 11:12:00 +00:00
|
|
|
z-index: 1; // 他コンポーネントのbox-shadowに隠されないようにするため
|
2020-01-29 19:37:25 +00:00
|
|
|
display: block;
|
|
|
|
min-width: 100px;
|
2021-08-08 03:19:10 +00:00
|
|
|
width: max-content;
|
2022-12-19 23:50:48 +00:00
|
|
|
padding: 7px 14px;
|
2020-01-29 19:37:25 +00:00
|
|
|
text-align: center;
|
|
|
|
font-weight: normal;
|
2022-12-19 23:50:48 +00:00
|
|
|
font-size: 95%;
|
2020-01-29 19:37:25 +00:00
|
|
|
box-shadow: none;
|
|
|
|
text-decoration: none;
|
|
|
|
background: var(--buttonBg);
|
2021-11-28 11:07:37 +00:00
|
|
|
border-radius: 5px;
|
2022-07-13 12:41:06 +00:00
|
|
|
overflow: clip;
|
2021-08-07 08:55:16 +00:00
|
|
|
box-sizing: border-box;
|
2021-08-09 09:01:12 +00:00
|
|
|
transition: background 0.1s ease;
|
2020-01-29 19:37:25 +00:00
|
|
|
|
|
|
|
&:not(:disabled):hover {
|
|
|
|
background: var(--buttonHoverBg);
|
|
|
|
}
|
|
|
|
|
|
|
|
&:not(:disabled):active {
|
|
|
|
background: var(--buttonHoverBg);
|
|
|
|
}
|
|
|
|
|
2022-12-28 09:22:46 +00:00
|
|
|
&.small {
|
|
|
|
font-size: 90%;
|
|
|
|
padding: 6px 12px;
|
|
|
|
}
|
|
|
|
|
2020-10-17 11:12:00 +00:00
|
|
|
&.full {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2021-10-02 17:46:58 +00:00
|
|
|
&.rounded {
|
|
|
|
border-radius: 999px;
|
|
|
|
}
|
|
|
|
|
2020-01-29 19:37:25 +00:00
|
|
|
&.primary {
|
2021-04-24 13:38:24 +00:00
|
|
|
font-weight: bold;
|
2021-08-08 12:59:18 +00:00
|
|
|
color: var(--fgOnAccent) !important;
|
2020-01-29 19:37:25 +00:00
|
|
|
background: var(--accent);
|
|
|
|
|
|
|
|
&:not(:disabled):hover {
|
2021-10-13 16:27:45 +00:00
|
|
|
background: var(--X8);
|
|
|
|
}
|
|
|
|
|
|
|
|
&:not(:disabled):active {
|
|
|
|
background: var(--X8);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.gradate {
|
|
|
|
font-weight: bold;
|
|
|
|
color: var(--fgOnAccent) !important;
|
|
|
|
background: linear-gradient(90deg, var(--buttonGradateA), var(--buttonGradateB));
|
|
|
|
|
|
|
|
&:not(:disabled):hover {
|
2021-10-16 06:00:55 +00:00
|
|
|
background: linear-gradient(90deg, var(--X8), var(--X8));
|
2020-01-29 19:37:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&:not(:disabled):active {
|
2021-10-16 06:00:55 +00:00
|
|
|
background: linear-gradient(90deg, var(--X8), var(--X8));
|
2020-01-29 19:37:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-17 11:12:00 +00:00
|
|
|
&.danger {
|
|
|
|
color: #ff2a2a;
|
|
|
|
|
|
|
|
&.primary {
|
|
|
|
color: #fff;
|
|
|
|
background: #ff2a2a;
|
|
|
|
|
|
|
|
&:not(:disabled):hover {
|
|
|
|
background: #ff4242;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:not(:disabled):active {
|
|
|
|
background: #d42e2e;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-29 19:37:25 +00:00
|
|
|
&:disabled {
|
|
|
|
opacity: 0.7;
|
|
|
|
}
|
|
|
|
|
2021-10-02 17:46:58 +00:00
|
|
|
&:focus-visible {
|
2021-08-10 15:21:24 +00:00
|
|
|
outline: solid 2px var(--focus);
|
|
|
|
outline-offset: 2px;
|
2020-01-29 19:37:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&.inline {
|
|
|
|
display: inline-block;
|
|
|
|
width: auto;
|
|
|
|
min-width: 100px;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .ripples {
|
|
|
|
position: absolute;
|
|
|
|
z-index: 0;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
border-radius: 6px;
|
2023-01-02 03:15:26 +00:00
|
|
|
overflow: clip;
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2020-10-17 11:12:00 +00:00
|
|
|
::v-deep(div) {
|
2020-01-29 19:37:25 +00:00
|
|
|
position: absolute;
|
|
|
|
width: 2px;
|
|
|
|
height: 2px;
|
|
|
|
border-radius: 100%;
|
|
|
|
background: rgba(0, 0, 0, 0.1);
|
|
|
|
opacity: 1;
|
|
|
|
transform: scale(1);
|
|
|
|
transition: all 0.5s cubic-bezier(0,.5,0,1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-17 11:12:00 +00:00
|
|
|
&.primary > .ripples ::v-deep(div) {
|
2020-01-29 19:37:25 +00:00
|
|
|
background: rgba(0, 0, 0, 0.15);
|
|
|
|
}
|
|
|
|
|
|
|
|
> .content {
|
|
|
|
position: relative;
|
|
|
|
z-index: 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|