pinafore/routes/_components/compose/ComposeButton.html

72 lines
1.7 KiB
HTML
Raw Normal View History

2018-03-27 09:02:55 +02:00
<div class="compose-box-button-halo frosted-glass">
<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 {{$postingStatus ? 'spin' : 'hidden'}}"
aria-hidden="true">
<svg class="compose-box-button-svg">
<use xlink:href="#fa-spinner" />
</svg>
</div>
<div class="compose-box-button-compose {{sticky ? '' : 'hidden'}}"
aria-hidden="true">
<svg class="compose-box-button-svg">
<use xlink:href="#fa-pencil" />
</svg>
</div>
</button>
</div>
2018-02-27 07:22:56 +01:00
<style>
2018-03-27 09:02:55 +02:00
.compose-box-button-halo {
border-radius: 2px;
margin: 5px 15px 15px 5px;
background: var(--compose-button-halo);
}
2018-02-27 07:22:56 +01:00
.compose-box-button {
grid-area: button;
justify-self: right;
text-transform: uppercase;
2018-03-05 01:27:15 +01:00
position: relative;
2018-03-27 09:02:55 +02:00
margin: 5px;
2018-03-05 01:27:15 +01:00
}
2018-03-27 09:02:55 +02:00
.compose-box-button-spinner, .compose-box-button-compose {
2018-03-05 01:27:15 +01:00
position: absolute;
display: flex;
justify-content: center;
align-items: center;
z-index: 10;
top: 0;
bottom: 0;
left: 0;
right: 0;
}
2018-03-27 09:02:55 +02:00
.compose-box-button-svg {
2018-03-05 01:27:15 +01:00
width: 24px;
height: 24px;
fill: var(--button-primary-text);
2018-02-27 07:22:56 +01:00
}
2018-03-27 09:02:55 +02:00
@media (max-width: 767px) {
.compose-box-button-halo {
margin: 5px;
}
.compose-box-button {
margin: 5px;
}
}
2018-02-27 07:22:56 +01:00
</style>
<script>
import { store } from '../../_store/store'
export default {
store: () => store,
computed: {
disabled: ($postingStatus, overLimit) => $postingStatus || overLimit
2018-02-27 07:22:56 +01:00
}
}
</script>