mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-02 03:57:52 +00:00
* feat: Remove foundation * chore: Minor fix * Minor fix * Update _forms.scss * chore: More changes * chore: Minor fix * chore: Clean up * fix: font-weight * chore: More changes * chore: Setting page * chore: Editor fix * chore: Reports page * chore: More changes * chore: Minor changes * chore: More fixes * chore: More changes * chore: More changes * chore: More changes * chore: Minor fix * chore: More changes * chore: More changes * chore: More changes * chore: More changes * chore: Clean up * chore: Minor fix * chore: Clean ups * chore: Rename basic file * chore: Remove unused files * chore: Fix expanded input * Fix campaign rendering * chore: Clean up * chore: More changes * chore: Remove unused files * fix: Overflow issue * chore: Minor fix * chore: Clean up * chore: Minor fix * chore: Remove unused files * chore: Minor fix * chore: Minor fix * fix: autoprefixer start/end value has mixed support * chore: Minor fix * chore: Remove unused files * chore: Minor fix * chore: Minor fix * chore: Minor fix * Add responsive design to label settings * fix inbox view * chore: Minor fix * w-60% to w-2/3 * chore: Fix team * chore: Fix button * w-[34%] to w-1/3 * chore: Fix border * Add support mobile views in team page * chore: fix snackbar * chore: clean up * chore: Clean up * fix: loading state alignment * fix: alert styles * chore: Minor fix * fix: spacing for agent bot row * fix: layout * fix: layout for SLA * fix: checkbox * fix: SLA checkbox spacing * Update inbox settings pages * fix macros listing page layout * fix canned responses * chore: Fix bot page * chore: fix automation page * chore: fix agents page * chore: fix canned response editor * chore: Fix settings table * chore: fix settings layout * chore: Minor fix * fix: canned response table layou * fix: layout for table header for webhooks * fix: webhook row layout * fix: dashboard app modal layout * fix: add title to canned response truncated shortcode * fix: dashboard apps row layuot * fix: layouts hooks * fix: body color * fix: delete action color in portal locales * fix: text color for campagin title * fix: success button color --------- Co-authored-by: Pranav <pranav@chatwoot.com> Co-authored-by: Vishnu Narayanan <iamwishnu@gmail.com> Co-authored-by: Shivam Mishra <scm.mymail@gmail.com>
111 lines
2.6 KiB
Vue
111 lines
2.6 KiB
Vue
<template>
|
|
<div
|
|
v-show="activeLabels.length"
|
|
ref="labelContainer"
|
|
class="label-container mt-0.5 mx-2 mb-0"
|
|
>
|
|
<div
|
|
class="labels-wrap flex items-end min-w-0 flex-shrink gap-y-1 flex-wrap"
|
|
:class="{ expand: showAllLabels }"
|
|
>
|
|
<woot-label
|
|
v-for="(label, index) in activeLabels"
|
|
:key="label.id"
|
|
:title="label.title"
|
|
:description="label.description"
|
|
:color="label.color"
|
|
variant="smooth"
|
|
class="!mb-0 max-w-[calc(100%-0.5rem)]"
|
|
small
|
|
:class="{ hidden: !showAllLabels && index > labelPosition }"
|
|
/>
|
|
<woot-button
|
|
v-if="showExpandLabelButton"
|
|
:title="
|
|
showAllLabels
|
|
? $t('CONVERSATION.CARD.HIDE_LABELS')
|
|
: $t('CONVERSATION.CARD.SHOW_LABELS')
|
|
"
|
|
class="show-more--button sticky flex-shrink-0 right-0 mr-6 rtl:rotate-180"
|
|
color-scheme="secondary"
|
|
variant="hollow"
|
|
:icon="showAllLabels ? 'chevron-left' : 'chevron-right'"
|
|
size="tiny"
|
|
@click="onShowLabels"
|
|
/>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
import conversationLabelMixin from 'dashboard/mixins/conversation/labelMixin';
|
|
export default {
|
|
mixins: [conversationLabelMixin],
|
|
props: {
|
|
conversationId: {
|
|
type: Number,
|
|
required: true,
|
|
},
|
|
},
|
|
data() {
|
|
return {
|
|
showAllLabels: false,
|
|
showExpandLabelButton: false,
|
|
labelPosition: -1,
|
|
};
|
|
},
|
|
watch: {
|
|
activeLabels() {
|
|
this.$nextTick(() => this.computeVisibleLabelPosition());
|
|
},
|
|
},
|
|
mounted() {
|
|
this.computeVisibleLabelPosition();
|
|
},
|
|
methods: {
|
|
onShowLabels(e) {
|
|
e.stopPropagation();
|
|
this.showAllLabels = !this.showAllLabels;
|
|
},
|
|
computeVisibleLabelPosition() {
|
|
const labelContainer = this.$refs.labelContainer;
|
|
const labels = this.$refs.labelContainer.querySelectorAll('.label');
|
|
let labelOffset = 0;
|
|
this.showExpandLabelButton = false;
|
|
|
|
Array.from(labels).forEach((label, index) => {
|
|
labelOffset += label.offsetWidth + 8;
|
|
|
|
if (labelOffset < labelContainer.clientWidth - 16) {
|
|
this.labelPosition = index;
|
|
} else {
|
|
this.showExpandLabelButton = true;
|
|
}
|
|
});
|
|
},
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.show-more--button {
|
|
@apply h-5;
|
|
&.secondary:focus {
|
|
@apply text-slate-700 dark:text-slate-200 border-slate-300 dark:border-slate-700;
|
|
}
|
|
}
|
|
|
|
.labels-wrap {
|
|
&.expand {
|
|
@apply h-auto overflow-visible flex-row flex-wrap;
|
|
}
|
|
|
|
.secondary {
|
|
@apply border border-solid border-slate-100 dark:border-slate-700;
|
|
}
|
|
}
|
|
|
|
.hidden {
|
|
@apply invisible absolute;
|
|
}
|
|
</style>
|