151 lines
3.1 KiB
Vue
151 lines
3.1 KiB
Vue
<template>
|
|
<div>
|
|
<form
|
|
v-if="!hasSubmitted"
|
|
class="email-input-group"
|
|
@submit.prevent="onSubmit"
|
|
>
|
|
<input
|
|
v-model.trim="email"
|
|
class="form-input"
|
|
:placeholder="$t('EMAIL_PLACEHOLDER')"
|
|
:class="inputHasError"
|
|
@input="$v.email.$touch"
|
|
@keydown.enter="onSubmit"
|
|
/>
|
|
<button
|
|
class="button small"
|
|
:disabled="$v.email.$invalid"
|
|
:style="{
|
|
background: widgetColor,
|
|
borderColor: widgetColor,
|
|
color: textColor,
|
|
}"
|
|
>
|
|
<fluent-icon v-if="!isUpdating" icon="chevron-right" />
|
|
<spinner v-else class="mx-2" />
|
|
</button>
|
|
</form>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { mapGetters } from 'vuex';
|
|
import { required, email } from 'vuelidate/lib/validators';
|
|
import { getContrastingTextColor } from '@chatwoot/utils';
|
|
|
|
import FluentIcon from 'shared/components/FluentIcon/Index.vue';
|
|
import Spinner from 'shared/components/Spinner';
|
|
import darkModeMixin from 'widget/mixins/darkModeMixin.js';
|
|
|
|
export default {
|
|
components: {
|
|
FluentIcon,
|
|
Spinner,
|
|
},
|
|
mixins: [darkModeMixin],
|
|
props: {
|
|
messageId: {
|
|
type: Number,
|
|
required: true,
|
|
},
|
|
messageContentAttributes: {
|
|
type: Object,
|
|
default: () => {},
|
|
},
|
|
},
|
|
data() {
|
|
return {
|
|
email: '',
|
|
isUpdating: false,
|
|
};
|
|
},
|
|
computed: {
|
|
...mapGetters({
|
|
widgetColor: 'appConfig/getWidgetColor',
|
|
}),
|
|
textColor() {
|
|
return getContrastingTextColor(this.widgetColor);
|
|
},
|
|
hasSubmitted() {
|
|
return (
|
|
this.messageContentAttributes &&
|
|
this.messageContentAttributes.submitted_email
|
|
);
|
|
},
|
|
inputColor() {
|
|
return `${this.$dm('bg-white', 'dark:bg-slate-600')}
|
|
${this.$dm('text-black-900', 'dark:text-slate-50')}`;
|
|
},
|
|
inputHasError() {
|
|
return this.$v.email.$error
|
|
? `${this.inputColor} error`
|
|
: `${this.inputColor}`;
|
|
},
|
|
},
|
|
validations: {
|
|
email: {
|
|
required,
|
|
email,
|
|
},
|
|
},
|
|
methods: {
|
|
async onSubmit() {
|
|
if (this.$v.$invalid) {
|
|
return;
|
|
}
|
|
this.isUpdating = true;
|
|
try {
|
|
await this.$store.dispatch('message/update', {
|
|
email: this.email,
|
|
messageId: this.messageId,
|
|
});
|
|
} catch (error) {
|
|
// Ignore error
|
|
} finally {
|
|
this.isUpdating = false;
|
|
}
|
|
},
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
@import '~widget/assets/scss/variables.scss';
|
|
|
|
.email-input-group {
|
|
display: flex;
|
|
margin: $space-small 0;
|
|
min-width: 200px;
|
|
|
|
input {
|
|
border-bottom-right-radius: 0;
|
|
border-top-right-radius: 0;
|
|
padding: $space-one;
|
|
width: 100%;
|
|
|
|
&::placeholder {
|
|
color: $color-light-gray;
|
|
}
|
|
|
|
&.error {
|
|
border-color: $color-error;
|
|
}
|
|
}
|
|
|
|
.button {
|
|
border-bottom-left-radius: 0;
|
|
border-top-left-radius: 0;
|
|
font-size: $font-size-large;
|
|
height: auto;
|
|
margin-left: -1px;
|
|
|
|
.spinner {
|
|
display: block;
|
|
padding: 0;
|
|
height: auto;
|
|
width: auto;
|
|
}
|
|
}
|
|
}
|
|
</style>
|