better layouting for import-export, error display fixes
This commit is contained in:
parent
c189a08dff
commit
83b85cd412
@ -1,8 +1,11 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="import-export">
|
<div class="import-export-container">
|
||||||
|
<slot name="before"/>
|
||||||
<button class="btn" @click="exportData">{{ exportLabel }}</button>
|
<button class="btn" @click="exportData">{{ exportLabel }}</button>
|
||||||
<button class="btn" @click="importData">{{ importLabel }}</button>
|
<button class="btn" @click="importData">{{ importLabel }}</button>
|
||||||
<p v-if="importFailed" class="import-warning">{{ importFailedText }}</p>
|
<slot name="afterButtons"/>
|
||||||
|
<p v-if="importFailed" class="alert error">{{ importFailedText }}</p>
|
||||||
|
<slot name="afterError"/>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
@ -73,3 +76,12 @@ export default {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
<style lang="scss">
|
||||||
|
.import-export-container {
|
||||||
|
display: flex;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
align-items: baseline;
|
||||||
|
justify-content: center;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
@ -2,30 +2,32 @@
|
|||||||
<div class="style-switcher">
|
<div class="style-switcher">
|
||||||
<div class="presets-container">
|
<div class="presets-container">
|
||||||
<div class="save-load">
|
<div class="save-load">
|
||||||
<div class="presets">
|
|
||||||
{{$t('settings.presets')}}
|
|
||||||
<label for="preset-switcher" class='select'>
|
|
||||||
<select id="preset-switcher" v-model="selected" class="preset-switcher">
|
|
||||||
<option v-for="style in availableStyles"
|
|
||||||
:value="style"
|
|
||||||
:style="{
|
|
||||||
backgroundColor: style[1] || style.theme.colors.bg,
|
|
||||||
color: style[3] || style.theme.colors.text
|
|
||||||
}">
|
|
||||||
{{style[0] || style.name}}
|
|
||||||
</option>
|
|
||||||
</select>
|
|
||||||
<i class="icon-down-open"/>
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
<export-import
|
<export-import
|
||||||
:exportObject='exportedTheme'
|
:exportObject='exportedTheme'
|
||||||
:exportLabel='$t("settings.export_theme")'
|
:exportLabel='$t("settings.export_theme")'
|
||||||
:importLabel='$t("settings.import_theme")'
|
:importLabel='$t("settings.import_theme")'
|
||||||
:importFailedText='$t("settings.invalid_theme_imported")'
|
:importFailedText='$t("settings.invalid_theme_imported")'
|
||||||
:onImport='onImport'
|
:onImport='onImport'
|
||||||
:validator='importValidator'
|
:validator='importValidator'>
|
||||||
/>
|
<template slot="before">
|
||||||
|
<div class="presets">
|
||||||
|
{{$t('settings.presets')}}
|
||||||
|
<label for="preset-switcher" class='select'>
|
||||||
|
<select id="preset-switcher" v-model="selected" class="preset-switcher">
|
||||||
|
<option v-for="style in availableStyles"
|
||||||
|
:value="style"
|
||||||
|
:style="{
|
||||||
|
backgroundColor: style[1] || style.theme.colors.bg,
|
||||||
|
color: style[3] || style.theme.colors.text
|
||||||
|
}">
|
||||||
|
{{style[0] || style.name}}
|
||||||
|
</option>
|
||||||
|
</select>
|
||||||
|
<i class="icon-down-open"/>
|
||||||
|
</label>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
</export-import>
|
||||||
</div>
|
</div>
|
||||||
<div class="save-load-options">
|
<div class="save-load-options">
|
||||||
<span class="keep-option">
|
<span class="keep-option">
|
||||||
|
Loading…
Reference in New Issue
Block a user