mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-02 20:18:08 +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>
152 lines
3.7 KiB
Vue
152 lines
3.7 KiB
Vue
<template>
|
|
<div class="bg-black-50 flex justify-between dark:bg-slate-800">
|
|
<div class="button-group">
|
|
<woot-button
|
|
variant="clear"
|
|
class="button--reply"
|
|
:class="replyButtonClass"
|
|
@click="handleReplyClick"
|
|
>
|
|
{{ $t('CONVERSATION.REPLYBOX.REPLY') }}
|
|
</woot-button>
|
|
|
|
<woot-button
|
|
class="button--note"
|
|
variant="clear"
|
|
color-scheme="warning"
|
|
:class="noteButtonClass"
|
|
@click="handleNoteClick"
|
|
>
|
|
{{ $t('CONVERSATION.REPLYBOX.PRIVATE_NOTE') }}
|
|
</woot-button>
|
|
</div>
|
|
<div class="flex items-center my-0 mx-4">
|
|
<div v-if="isMessageLengthReachingThreshold" class="text-xs">
|
|
<span :class="charLengthClass">
|
|
{{ characterLengthWarning }}
|
|
</span>
|
|
</div>
|
|
</div>
|
|
<woot-button
|
|
v-if="popoutReplyBox"
|
|
variant="clear"
|
|
icon="dismiss"
|
|
color-scheme="secondary"
|
|
class-names="popout-button"
|
|
@click="$emit('click')"
|
|
/>
|
|
<woot-button
|
|
v-else
|
|
variant="clear"
|
|
icon="resize-large"
|
|
color-scheme="secondary"
|
|
class-names="popout-button"
|
|
@click="$emit('click')"
|
|
/>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { REPLY_EDITOR_MODES, CHAR_LENGTH_WARNING } from './constants';
|
|
import {
|
|
hasPressedAltAndPKey,
|
|
hasPressedAltAndLKey,
|
|
} from 'shared/helpers/KeyboardHelpers';
|
|
import eventListenerMixins from 'shared/mixins/eventListenerMixins';
|
|
export default {
|
|
name: 'ReplyTopPanel',
|
|
mixins: [eventListenerMixins],
|
|
props: {
|
|
mode: {
|
|
type: String,
|
|
default: REPLY_EDITOR_MODES.REPLY,
|
|
},
|
|
setReplyMode: {
|
|
type: Function,
|
|
default: () => {},
|
|
},
|
|
isMessageLengthReachingThreshold: {
|
|
type: Boolean,
|
|
default: () => false,
|
|
},
|
|
charactersRemaining: {
|
|
type: Number,
|
|
default: () => 0,
|
|
},
|
|
popoutReplyBox: {
|
|
type: Boolean,
|
|
default: false,
|
|
},
|
|
},
|
|
computed: {
|
|
replyButtonClass() {
|
|
return {
|
|
'is-active': this.mode === REPLY_EDITOR_MODES.REPLY,
|
|
};
|
|
},
|
|
noteButtonClass() {
|
|
return {
|
|
'is-active': this.mode === REPLY_EDITOR_MODES.NOTE,
|
|
};
|
|
},
|
|
charLengthClass() {
|
|
return this.charactersRemaining < 0 ? 'text-red-600' : 'text-slate-600';
|
|
},
|
|
characterLengthWarning() {
|
|
return this.charactersRemaining < 0
|
|
? `${-this.charactersRemaining} ${CHAR_LENGTH_WARNING.NEGATIVE}`
|
|
: `${this.charactersRemaining} ${CHAR_LENGTH_WARNING.UNDER_50}`;
|
|
},
|
|
},
|
|
methods: {
|
|
handleKeyEvents(e) {
|
|
if (hasPressedAltAndPKey(e)) {
|
|
this.handleNoteClick();
|
|
}
|
|
if (hasPressedAltAndLKey(e)) {
|
|
this.handleReplyClick();
|
|
}
|
|
},
|
|
handleReplyClick() {
|
|
this.setReplyMode(REPLY_EDITOR_MODES.REPLY);
|
|
},
|
|
handleNoteClick() {
|
|
this.setReplyMode(REPLY_EDITOR_MODES.NOTE);
|
|
},
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.button-group {
|
|
@apply flex border-0 p-0 m-0;
|
|
|
|
.button {
|
|
@apply text-sm font-medium py-2.5 px-4 m-0 relative z-10;
|
|
&.is-active {
|
|
@apply bg-white dark:bg-slate-900;
|
|
}
|
|
}
|
|
.button--reply {
|
|
@apply border-r rounded-none border-b-0 border-l-0 border-t-0 border-slate-50 dark:border-slate-700;
|
|
&:hover,
|
|
&:focus {
|
|
@apply border-r border-slate-50 dark:border-slate-700;
|
|
}
|
|
}
|
|
.button--note {
|
|
@apply border-l-0 rounded-none;
|
|
&.is-active {
|
|
@apply border-r border-b-0 bg-yellow-100 dark:bg-yellow-800 border-t-0 border-slate-50 dark:border-slate-700;
|
|
}
|
|
&:hover,
|
|
&:active {
|
|
@apply text-yellow-700 dark:text-yellow-700;
|
|
}
|
|
}
|
|
}
|
|
.button--note {
|
|
@apply text-yellow-600 dark:text-yellow-600 bg-transparent dark:bg-transparent;
|
|
}
|
|
</style>
|