akkoma-fe/src/components/importer/importer.vue

56 lines
998 B
Vue
Raw Normal View History

<template>
<div class="importer">
<form>
2019-07-05 07:17:44 +00:00
<input
ref="input"
type="file"
@change="change"
>
</form>
2020-10-20 21:01:28 +00:00
<FAIcon
2019-07-05 07:17:44 +00:00
v-if="submitting"
2020-10-20 21:01:28 +00:00
class="importer-uploading"
spin
icon="circle-notch"
2019-07-05 07:17:44 +00:00
/>
<button
v-else
class="btn button-default"
2019-07-05 07:17:44 +00:00
@click="submit"
>
2021-04-25 11:12:34 +00:00
{{ submitButtonLabel || $t('importer.submit') }}
2019-07-05 07:17:44 +00:00
</button>
<button
v-if="success"
class="button-unstyled"
@click="dismiss"
>
2020-10-20 21:01:28 +00:00
<FAIcon
icon="times"
2019-07-05 07:17:44 +00:00
/>
2022-03-17 06:35:19 +00:00
<p>{{ successMessage || $t('importer.success') }}</p>
</button>
<button
v-else-if="error"
class="button-unstyled"
@click="dismiss"
>
2020-10-20 21:01:28 +00:00
<FAIcon
icon="times"
2019-07-05 07:17:44 +00:00
/>
2022-03-17 06:35:19 +00:00
<p>{{ errorMessage || $t('importer.error') }}</p>
</button>
</div>
</template>
<script src="./importer.js"></script>
2019-03-30 03:55:49 +00:00
<style lang="scss">
.importer {
2019-03-30 09:10:57 +00:00
&-uploading {
2019-03-30 03:55:49 +00:00
font-size: 1.5em;
margin: 0.25em;
}
}
</style>