880bc7a38a
* perf: use a separate icons.svg file This splits icons into inline and non-inline. The inline ones are high priority; the rest go in an icons.svg file. * create SvgIcon.html * determine inlined svgs at build time
79 lines
1.9 KiB
HTML
79 lines
1.9 KiB
HTML
<div class="compose-box-button-halo {sticky ? 'compose-box-button-halo-sticky' : ''}">
|
|
<button class="primary compose-box-button"
|
|
{disabled}
|
|
aria-label={sticky ? 'Compose' : 'Toot!'}
|
|
on:click>
|
|
<span class={$postingStatus || sticky ? 'hidden' : ''}>
|
|
Toot!
|
|
</span>
|
|
<div class="compose-box-button-spinner"
|
|
aria-hidden="true">
|
|
<SvgIcon className="compose-box-button-svg {$postingStatus ? 'spin' : 'hidden'}"
|
|
href="#fa-spinner" />
|
|
</div>
|
|
|
|
<div class="compose-box-button-compose {sticky ? '' : 'hidden'}"
|
|
aria-hidden="true">
|
|
<SvgIcon className="compose-box-button-svg"
|
|
href="#fa-pencil" />
|
|
</div>
|
|
</button>
|
|
</div>
|
|
<style>
|
|
.compose-box-button-halo {
|
|
border-radius: 2px;
|
|
margin: 5px 15px 15px 5px;
|
|
pointer-events: auto;
|
|
}
|
|
.compose-box-button-halo-sticky {
|
|
background-color: var(--compose-button-halo);
|
|
}
|
|
.compose-box-button {
|
|
grid-area: button;
|
|
justify-self: right;
|
|
text-transform: uppercase;
|
|
position: relative;
|
|
margin: 5px;
|
|
pointer-events: auto;
|
|
}
|
|
.compose-box-button-spinner, .compose-box-button-compose {
|
|
position: absolute;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
z-index: 10;
|
|
top: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
}
|
|
:global(.compose-box-button-svg) {
|
|
width: 24px;
|
|
height: 24px;
|
|
fill: var(--button-primary-text);
|
|
}
|
|
|
|
@media (max-width: 767px) {
|
|
.compose-box-button-halo {
|
|
margin: 5px;
|
|
}
|
|
.compose-box-button {
|
|
margin: 5px;
|
|
}
|
|
}
|
|
</style>
|
|
<script>
|
|
import SvgIcon from '../SvgIcon.html'
|
|
import { store } from '../../_store/store'
|
|
|
|
export default {
|
|
store: () => store,
|
|
computed: {
|
|
disabled: ({ $postingStatus, overLimit }) => $postingStatus || overLimit
|
|
},
|
|
components: {
|
|
SvgIcon
|
|
}
|
|
}
|
|
</script>
|