feat: Reverse the contact merge (#8057)

Co-authored-by: Pranav Raj S <pranav@chatwoot.com>
This commit is contained in:
Sivin Varghese
2023-10-10 08:20:48 +05:30
committed by GitHub
parent 86ca90aa15
commit b6ba0f343e
6 changed files with 87 additions and 126 deletions

View File

@@ -1,26 +1,29 @@
<template>
<div v-if="childContactName" class="merge-summary callout">
<h5 class="text-block-title">
<div
v-if="parentContactName"
class="my-4 relative p-2.5 border rounded-[4px] text-slate-800 dark:text-slate-100 border-slate-100 dark:border-slate-700 bg-white dark:bg-slate-800"
>
<h5 class="text-base font-medium text-slate-900 dark:text-white">
{{ $t('MERGE_CONTACTS.SUMMARY.TITLE') }}
</h5>
<ul class="summary-items">
<ul class="ml-0 list-none">
<li>
<span class="bullet"></span>
<span class="inline-block mr-1"></span>
<span
v-dompurify-html="
$t('MERGE_CONTACTS.SUMMARY.DELETE_WARNING', {
childContactName,
primaryContactName,
})
"
/>
</li>
<li>
<span class="bullet">✅</span>
<span class="inline-block mr-1">✅</span>
<span
v-dompurify-html="
$t('MERGE_CONTACTS.SUMMARY.ATTRIBUTE_WARNING', {
childContactName,
primaryContactName,
parentContactName,
})
"
/>
@@ -36,32 +39,10 @@ export default {
type: String,
default: '',
},
childContactName: {
parentContactName: {
type: String,
default: '',
},
},
computed: {},
};
</script>
<style lang="scss" scoped>
.merge-summary {
margin-top: var(--space-normal);
}
.summary-items {
margin-left: 0;
list-style: none;
li {
margin-bottom: var(--space-smaller);
}
}
.bullet {
display: inline-block;
margin-right: var(--space-smaller);
}
</style>