mirror of
https://github.com/lingble/chatwoot.git
synced 2025-10-29 18:22:53 +00:00
This PR adds Google OAuth for all existing users, allowing users to log in or sign up via their Google account. --------- Co-authored-by: Pranav Raj S <pranav@chatwoot.com> Co-authored-by: Fayaz Ahmed <15716057+fayazara@users.noreply.github.com> Co-authored-by: Sojan <sojan@pepalo.com>
121 lines
2.5 KiB
Vue
121 lines
2.5 KiB
Vue
<template>
|
|
<div v-if="testimonials.length" class="testimonial--section">
|
|
<img src="/assets/images/auth/top-left.svg" class="top-left--img" />
|
|
<img src="/assets/images/auth/bottom-right.svg" class="bottom-right--img" />
|
|
<img src="/assets/images/auth/auth--bg.svg" class="center--img" />
|
|
<div class="testimonial--content">
|
|
<div class="testimonial--content-card">
|
|
<testimonial-card
|
|
v-for="(testimonial, index) in testimonials"
|
|
:key="testimonial.id"
|
|
:review-content="testimonial.authorReview"
|
|
:author-image="testimonial.authorImage"
|
|
:author-name="testimonial.authorName"
|
|
:author-designation="testimonial.authorCompany"
|
|
:class="`testimonial-${index ? 'right' : 'left'}--card`"
|
|
/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import TestimonialCard from './TestimonialCard.vue';
|
|
import { getTestimonialContent } from 'dashboard/api/testimonials';
|
|
export default {
|
|
components: {
|
|
TestimonialCard,
|
|
},
|
|
data() {
|
|
return {
|
|
testimonials: [],
|
|
};
|
|
},
|
|
beforeMount() {
|
|
this.fetchTestimonials();
|
|
},
|
|
methods: {
|
|
async fetchTestimonials() {
|
|
try {
|
|
const { data } = await getTestimonialContent();
|
|
this.testimonials = data;
|
|
} catch (error) {
|
|
// Ignoring the error as the UI wouldn't break
|
|
} finally {
|
|
this.$emit('resize-containers', !!this.testimonials.length);
|
|
}
|
|
},
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
@import '~dashboard/assets/scss/woot';
|
|
|
|
.top-left--img {
|
|
left: 0;
|
|
height: 16rem;
|
|
position: absolute;
|
|
top: 0;
|
|
width: 16rem;
|
|
}
|
|
|
|
.bottom-right--img {
|
|
bottom: 0;
|
|
height: 16rem;
|
|
position: absolute;
|
|
right: 0;
|
|
width: 16rem;
|
|
}
|
|
|
|
.center--img {
|
|
height: 96%;
|
|
left: 8%;
|
|
position: absolute;
|
|
top: 8%;
|
|
width: 86%;
|
|
}
|
|
|
|
.center-container {
|
|
padding: var(--space-medium) 0;
|
|
}
|
|
|
|
.testimonial--section {
|
|
background: var(--w-400);
|
|
display: flex;
|
|
flex: 1 1;
|
|
overflow: hidden;
|
|
position: relative;
|
|
}
|
|
|
|
.testimonial--content {
|
|
align-content: center;
|
|
display: flex;
|
|
flex-direction: column;
|
|
height: 100%;
|
|
justify-content: center;
|
|
width: 100%;
|
|
z-index: 1000;
|
|
}
|
|
|
|
.testimonial--content-card {
|
|
align-items: flex-start;
|
|
display: flex;
|
|
justify-content: center;
|
|
padding: var(--space-large);
|
|
}
|
|
|
|
.testimonial-left--card {
|
|
--signup-testimonial-top: 20%;
|
|
margin-top: var(--signup-testimonial-top);
|
|
margin-right: var(--space-minus-normal);
|
|
z-index: 10000;
|
|
}
|
|
|
|
@media screen and (max-width: 1200px) {
|
|
.testimonial--section {
|
|
display: none;
|
|
}
|
|
}
|
|
</style>
|