iceshrimp/packages/client/src/components/global/MkLoading.vue

130 lines
1.8 KiB
Vue
Raw Normal View History

<template>
2023-04-08 09:01:42 +09:00
<div
:class="[
$style.root,
{
[$style.inline]: inline,
[$style.colored]: colored,
[$style.mini]: mini,
},
]"
>
<div :class="$style.container" aria-hidden="true">
<svg
:class="[$style.spinner]"
viewBox="0 0 50 50"
xmlns="http://www.w3.org/2000/svg"
>
<circle
:class="[$style.path]"
cx="25"
cy="25"
r="20"
fill="none"
stroke-width="6px"
style="fill: none; stroke: currentColor; stroke-width: 6px"
></circle>
</svg>
</div>
</div>
</template>
<script lang="ts" setup>
2023-04-08 09:01:42 +09:00
import {} from "vue";
2023-04-08 09:01:42 +09:00
const props = withDefaults(
defineProps<{
inline?: boolean;
colored?: boolean;
mini?: boolean;
em?: boolean;
}>(),
{
inline: false,
colored: true,
mini: false,
em: false,
}
);
</script>
<style lang="scss" module>
2022-07-28 03:19:57 +09:00
/* Credit to https://codepen.io/supah/pen/BjYLdW */
2020-02-10 20:44:59 +09:00
2022-07-28 04:27:09 +09:00
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
@keyframes dash {
0% {
stroke-dasharray: 1, 150;
stroke-dashoffset: 0;
}
50% {
stroke-dasharray: 90, 150;
stroke-dashoffset: -35;
}
100% {
stroke-dasharray: 90, 150;
stroke-dashoffset: -124;
}
}
.root {
padding: 32px;
text-align: center;
2021-04-16 23:04:25 +09:00
cursor: wait;
2022-07-28 04:28:36 +09:00
--size: 40px;
2021-04-16 23:04:25 +09:00
&.colored {
color: var(--accent);
}
2020-02-12 02:52:37 +09:00
&.inline {
display: inline;
padding: 0;
--size: 32px;
}
2020-02-12 02:52:37 +09:00
&.mini {
padding: 16px;
--size: 32px;
2020-02-12 02:52:37 +09:00
}
2023-02-19 12:48:25 +09:00
&.em {
display: inline-block;
vertical-align: middle;
padding: 0;
--size: 1em;
}
}
2020-02-12 02:52:37 +09:00
.container {
position: relative;
width: var(--size);
height: var(--size);
margin: 0 auto;
}
2020-02-10 20:44:59 +09:00
.spinner {
position: absolute;
top: 0;
left: 0;
2022-07-28 03:46:52 +09:00
z-index: 999;
width: var(--size);
height: var(--size);
2022-07-28 04:27:09 +09:00
animation: spin 2s linear infinite;
2022-07-28 04:32:14 +09:00
}
2022-07-28 03:52:10 +09:00
2022-07-28 04:32:14 +09:00
.path {
stroke: var(--accent);
stroke-linecap: round;
2022-07-28 04:34:23 +09:00
animation: dash 1.2s ease-in-out infinite;
}
</style>