mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-11-04 04:57:51 +00:00 
			
		
		
		
	This PR makes the following changes 1. Update v-model bindings for components using the old `value` prop and `input` event method 2. Remove components that were not used anywhere --------- Co-authored-by: Muhsin Keloth <muhsinkeramam@gmail.com>
		
			
				
	
	
		
			65 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			65 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
<script>
 | 
						|
export default {
 | 
						|
  props: {
 | 
						|
    teams: { type: Array, required: true },
 | 
						|
    modelValue: { type: Object, required: true },
 | 
						|
  },
 | 
						|
  emits: ['update:modelValue'],
 | 
						|
  data() {
 | 
						|
    return {
 | 
						|
      selectedTeams: [],
 | 
						|
      message: '',
 | 
						|
    };
 | 
						|
  },
 | 
						|
  mounted() {
 | 
						|
    const { team_ids: teamIds } = this.modelValue;
 | 
						|
    this.selectedTeams = teamIds;
 | 
						|
    this.message = this.modelValue.message;
 | 
						|
  },
 | 
						|
  methods: {
 | 
						|
    updateValue() {
 | 
						|
      this.$emit('update:modelValue', {
 | 
						|
        team_ids: this.selectedTeams.map(team => team.id),
 | 
						|
        message: this.message,
 | 
						|
      });
 | 
						|
    },
 | 
						|
  },
 | 
						|
};
 | 
						|
</script>
 | 
						|
 | 
						|
<template>
 | 
						|
  <div>
 | 
						|
    <div class="multiselect-wrap--small">
 | 
						|
      <multiselect
 | 
						|
        v-model="selectedTeams"
 | 
						|
        track-by="id"
 | 
						|
        label="name"
 | 
						|
        :placeholder="$t('AUTOMATION.ACTION.TEAM_DROPDOWN_PLACEHOLDER')"
 | 
						|
        multiple
 | 
						|
        selected-label
 | 
						|
        :select-label="$t('FORMS.MULTISELECT.ENTER_TO_SELECT')"
 | 
						|
        deselect-label=""
 | 
						|
        :max-height="160"
 | 
						|
        :options="teams"
 | 
						|
        :allow-empty="false"
 | 
						|
        @update:model-value="updateValue"
 | 
						|
      />
 | 
						|
      <textarea
 | 
						|
        v-model="message"
 | 
						|
        rows="4"
 | 
						|
        :placeholder="$t('AUTOMATION.ACTION.TEAM_MESSAGE_INPUT_PLACEHOLDER')"
 | 
						|
        @input="updateValue"
 | 
						|
      />
 | 
						|
    </div>
 | 
						|
  </div>
 | 
						|
</template>
 | 
						|
 | 
						|
<style scoped>
 | 
						|
.multiselect {
 | 
						|
  margin: var(--space-smaller) var(--space-zero);
 | 
						|
}
 | 
						|
textarea {
 | 
						|
  margin-bottom: var(--space-zero);
 | 
						|
}
 | 
						|
</style>
 |