Files
Automata/packages/editor-ui/src/components/SaveButton.vue
Iván Ovejero 1d991824d1 🚚 Rename $i to $locale
2021-12-15 13:16:53 +01:00

63 lines
1.0 KiB
Vue

<template>
<span :class="$style.container">
<span :class="$style.saved" v-if="saved">{{ $locale.baseText('saveButton.saved') }}</span>
<n8n-button
v-else
:label="saveButtonLabel"
:loading="isSaving"
:disabled="disabled"
@click="$emit('click')"
/>
</span>
</template>
<script lang="ts">
import Vue from 'vue';
export default Vue.extend({
name: "SaveButton",
props: {
saved: {
type: Boolean,
},
isSaving: {
type: Boolean,
},
disabled: {
type: Boolean,
},
saveLabel: {
type: String,
},
savingLabel: {
type: String,
},
savedLabel: {
type: String,
},
},
computed: {
saveButtonLabel() {
return this.isSaving
? this.$locale.baseText('saveButton.saving')
: this.$locale.baseText('saveButton.save');
},
},
});
</script>
<style lang="scss" module>
.container {
width: 65px;
}
.saved {
color: $--custom-font-very-light;
font-size: 12px;
font-weight: 600;
line-height: 12px;
text-align: center;
padding: var(--spacing-2xs) var(--spacing-xs);
}
</style>