mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-01 03:27:52 +00:00
# Pull Request Template ## Description Replaces darkModeMixin with the new useDarkMode composable and replaces wll usages of mixin the the composable in components and pages Fixes https://linear.app/chatwoot/issue/CW-3474/rewrite-darkmodemixin-mixin-to-a-composable ## Type of change Please delete options that are not relevant. - [x] New feature (non-breaking change which adds functionality) --------- Co-authored-by: Muhsin Keloth <muhsinkeramam@gmail.com> Co-authored-by: Sivin Varghese <64252451+iamsivin@users.noreply.github.com>
95 lines
1.9 KiB
Vue
95 lines
1.9 KiB
Vue
<script>
|
|
import CardButton from 'shared/components/CardButton.vue';
|
|
import { useDarkMode } from 'widget/composables/useDarkMode';
|
|
|
|
export default {
|
|
components: {
|
|
CardButton,
|
|
},
|
|
props: {
|
|
title: {
|
|
type: String,
|
|
default: '',
|
|
},
|
|
description: {
|
|
type: String,
|
|
default: '',
|
|
},
|
|
mediaUrl: {
|
|
type: String,
|
|
default: '',
|
|
},
|
|
actions: {
|
|
type: Array,
|
|
default: () => [],
|
|
},
|
|
},
|
|
setup() {
|
|
const { getThemeClass } = useDarkMode();
|
|
return { getThemeClass };
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<template>
|
|
<div
|
|
class="card-message chat-bubble agent"
|
|
:class="getThemeClass('bg-white', 'dark:bg-slate-700')"
|
|
>
|
|
<img class="media" :src="mediaUrl" />
|
|
<div class="card-body">
|
|
<h4
|
|
class="title"
|
|
:class="getThemeClass('text-black-900', 'dark:text-slate-50')"
|
|
>
|
|
{{ title }}
|
|
</h4>
|
|
<p
|
|
class="body"
|
|
:class="getThemeClass('text-black-700', 'dark:text-slate-100')"
|
|
>
|
|
{{ description }}
|
|
</p>
|
|
<CardButton v-for="action in actions" :key="action.id" :action="action" />
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped lang="scss">
|
|
@import '~widget/assets/scss/variables.scss';
|
|
@import '~dashboard/assets/scss/mixins.scss';
|
|
|
|
.card-message {
|
|
max-width: 220px;
|
|
padding: $space-small;
|
|
border-radius: $space-small;
|
|
overflow: hidden;
|
|
|
|
.title {
|
|
font-size: $font-size-default;
|
|
font-weight: $font-weight-medium;
|
|
margin-top: $space-smaller;
|
|
margin-bottom: $space-smaller;
|
|
line-height: 1.5;
|
|
}
|
|
|
|
.body {
|
|
margin-bottom: $space-smaller;
|
|
}
|
|
|
|
.media {
|
|
@include border-light;
|
|
width: 100%;
|
|
object-fit: contain;
|
|
max-height: 150px;
|
|
border-radius: 5px;
|
|
}
|
|
|
|
.action-button + .action-button {
|
|
background: $color-white;
|
|
@include thin-border($color-woot);
|
|
color: $color-woot;
|
|
}
|
|
}
|
|
</style>
|