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