# Pull Request Template ## Description This PR includes: 1. Removes multiselect usage from the Merge Contact modal (Conversation sidebar) and replaces it with the existing component used on the Contact Details page. 2. Replaces legacy form and multiselect elements in Add and Edit automations flows with next components.**(Also check Macros)** 3. Replace multiselect with ComboBox in contact form country field. 4. Replace multiselect with TagInput in create/edit attribute form. 5. Replace multiselect with TagInput for agent selection in inbox creation. 6. Replace multiselect with ComboBox in Facebook channel page selection ## Type of change - [x] New feature (non-breaking change which adds functionality) ## How Has This Been Tested? **Screenshots** 1. **Merge modal** <img width="741" height="449" alt="image" src="https://github.com/user-attachments/assets/a05a96ec-0692-4d94-9e27-d3e85fd143e4" /> <img width="741" height="449" alt="image" src="https://github.com/user-attachments/assets/fc1dc977-689d-4440-869d-2124e4ca9083" /> 2. **Automations** <img width="849" height="1089" alt="image" src="https://github.com/user-attachments/assets/b0155f06-ab21-4f90-a2c8-5bfbd97b08f7" /> <img width="813" height="879" alt="image" src="https://github.com/user-attachments/assets/0921ac4a-88f5-49ac-a776-cc02941b479c" /> <img width="849" height="826" alt="image" src="https://github.com/user-attachments/assets/44358dae-a076-4e10-b7ba-a4e40ccd817f" /> 3. **Country field** <img width="462" height="483" alt="image" src="https://github.com/user-attachments/assets/d5db9aa1-b859-4327-9960-957d7091678f" /> 4. **Add/Edit attribute form** <img width="619" height="646" alt="image" src="https://github.com/user-attachments/assets/6ab2ea94-73e5-40b8-ac29-399c0543fa7b" /> <img width="619" height="646" alt="image" src="https://github.com/user-attachments/assets/b4c5bb0e-baa0-4ef7-a6a2-adb0f0203243" /> <img width="635" height="731" alt="image" src="https://github.com/user-attachments/assets/74890c80-b213-4567-bf5f-4789dda39d2d" /> 5. **Agent selection in inbox creation** <img width="635" height="534" alt="image" src="https://github.com/user-attachments/assets/0003bad1-1a75-4f20-b014-587e1c19a620" /> <img width="809" height="602" alt="image" src="https://github.com/user-attachments/assets/5e7ab635-7340-420a-a191-e6cd49c02704" /> 7. **Facebook channel page selection** <img width="597" height="444" alt="image" src="https://github.com/user-attachments/assets/f7ec8d84-0a7d-4bc6-92a1-a1365178e319" /> <img width="597" height="444" alt="image" src="https://github.com/user-attachments/assets/d0596c4d-94c1-4544-8b50-e7103ff207a6" /> <img width="597" height="444" alt="image" src="https://github.com/user-attachments/assets/be097921-011b-4dbe-b5f1-5d1306e25349" /> ## Checklist: - [x] My code follows the style guidelines of this project - [x] I have performed a self-review of my code - [x] I have commented on my code, particularly in hard-to-understand areas - [ ] I have made corresponding changes to the documentation - [x] My changes generate no new warnings - [x] I have added tests that prove my fix is effective or that my feature works - [x] New and existing unit tests pass locally with my changes - [ ] Any dependent changes have been merged and published in downstream modules --------- Co-authored-by: Shivam Mishra <scm.mymail@gmail.com>
98 lines
2.4 KiB
Vue
98 lines
2.4 KiB
Vue
<script>
|
|
import { useAlert } from 'dashboard/composables';
|
|
import Spinner from 'shared/components/Spinner.vue';
|
|
export default {
|
|
components: {
|
|
Spinner,
|
|
},
|
|
props: {
|
|
initialFileName: {
|
|
type: String,
|
|
default: '',
|
|
},
|
|
},
|
|
emits: ['update:modelValue'],
|
|
data() {
|
|
return {
|
|
uploadState: 'idle',
|
|
label: this.$t('AUTOMATION.ATTACHMENT.LABEL_IDLE'),
|
|
};
|
|
},
|
|
mounted() {
|
|
if (this.initialFileName) {
|
|
this.label = this.initialFileName;
|
|
this.uploadState = 'uploaded';
|
|
}
|
|
},
|
|
methods: {
|
|
async onChangeFile(event) {
|
|
this.uploadState = 'processing';
|
|
this.label = this.$t('AUTOMATION.ATTACHMENT.LABEL_UPLOADING');
|
|
try {
|
|
const file = event.target.files[0];
|
|
const id = await this.$store.dispatch(
|
|
'automations/uploadAttachment',
|
|
file
|
|
);
|
|
this.$emit('update:modelValue', [id]);
|
|
this.uploadState = 'uploaded';
|
|
this.label = this.$t('AUTOMATION.ATTACHMENT.LABEL_UPLOADED');
|
|
} catch (error) {
|
|
this.uploadState = 'failed';
|
|
this.label = this.$t('AUTOMATION.ATTACHMENT.LABEL_UPLOAD_FAILED');
|
|
useAlert(this.$t('AUTOMATION.ATTACHMENT.UPLOAD_ERROR'));
|
|
}
|
|
},
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<template>
|
|
<label class="input-wrapper" :class="uploadState">
|
|
<input
|
|
v-if="uploadState !== 'processing'"
|
|
type="file"
|
|
name="attachment"
|
|
:class="uploadState === 'processing' ? 'disabled' : ''"
|
|
@change="onChangeFile"
|
|
/>
|
|
<Spinner v-if="uploadState === 'processing'" />
|
|
<fluent-icon v-if="uploadState === 'idle'" icon="file-upload" />
|
|
<fluent-icon
|
|
v-if="uploadState === 'uploaded'"
|
|
icon="checkmark-circle"
|
|
type="outline"
|
|
class="success-icon"
|
|
/>
|
|
<fluent-icon
|
|
v-if="uploadState === 'failed'"
|
|
icon="dismiss-circle"
|
|
type="outline"
|
|
class="error-icon"
|
|
/>
|
|
<p class="file-button">{{ label }}</p>
|
|
</label>
|
|
</template>
|
|
|
|
<style scoped>
|
|
input[type='file'] {
|
|
@apply hidden;
|
|
}
|
|
.input-wrapper {
|
|
@apply flex h-8 bg-n-background py-1 px-2 items-center text-xs cursor-pointer rounded-lg border border-dashed border-n-strong;
|
|
}
|
|
.success-icon {
|
|
@apply text-n-teal-9 mr-2;
|
|
}
|
|
.error-icon {
|
|
@apply text-n-ruby-9 mr-2;
|
|
}
|
|
|
|
.processing {
|
|
@apply cursor-not-allowed opacity-90;
|
|
}
|
|
.file-button {
|
|
@apply whitespace-nowrap overflow-hidden text-ellipsis w-full mb-0;
|
|
}
|
|
</style>
|