mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-10 12:27:31 -08:00
5ca2148c7e
* ⚡ Adjust `format` script * 🔥 Remove exemption for `editor-ui` * 🎨 Prettify * 👕 Fix lint
77 lines
1.2 KiB
Vue
77 lines
1.2 KiB
Vue
<template>
|
|
<span :class="$style.container" data-test-id="save-button">
|
|
<span :class="$style.saved" v-if="saved">{{ $locale.baseText('saveButton.saved') }}</span>
|
|
<n8n-button
|
|
v-else
|
|
:label="saveButtonLabel"
|
|
:loading="isSaving"
|
|
:disabled="disabled"
|
|
:class="$style.button"
|
|
:type="type"
|
|
@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,
|
|
},
|
|
type: {
|
|
type: String,
|
|
default: 'primary',
|
|
},
|
|
},
|
|
computed: {
|
|
saveButtonLabel() {
|
|
return this.isSaving
|
|
? this.$locale.baseText('saveButton.saving')
|
|
: this.$locale.baseText('saveButton.save');
|
|
},
|
|
},
|
|
});
|
|
</script>
|
|
|
|
<style lang="scss" module>
|
|
.container {
|
|
display: inline-flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 30px;
|
|
}
|
|
|
|
.button {
|
|
height: 30px;
|
|
}
|
|
|
|
.saved {
|
|
color: $custom-font-very-light;
|
|
font-size: 12px;
|
|
font-weight: 600;
|
|
line-height: 12px;
|
|
text-align: center;
|
|
padding: var(--spacing-2xs) var(--spacing-2xs);
|
|
min-width: 53px;
|
|
}
|
|
</style>
|