mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-11-03 12:37:56 +00:00 
			
		
		
		
	* chore: Fix self-closing tag issues * Fix merge conflicts Co-authored-by: Fayaz Ahmed <15716057+fayazara@users.noreply.github.com>
		
			
				
	
	
		
			63 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			63 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
<template>
 | 
						|
  <div>
 | 
						|
    <div class="multiselect-wrap--small">
 | 
						|
      <multiselect
 | 
						|
        v-model="selectedTeams"
 | 
						|
        track-by="id"
 | 
						|
        label="name"
 | 
						|
        :placeholder="$t('AUTOMATION.ACTION.TEAM_DROPDOWN_PLACEHOLDER')"
 | 
						|
        :multiple="true"
 | 
						|
        selected-label
 | 
						|
        :select-label="$t('FORMS.MULTISELECT.ENTER_TO_SELECT')"
 | 
						|
        deselect-label=""
 | 
						|
        :max-height="160"
 | 
						|
        :options="teams"
 | 
						|
        :allow-empty="false"
 | 
						|
        @input="updateValue"
 | 
						|
      />
 | 
						|
      <textarea
 | 
						|
        v-model="message"
 | 
						|
        rows="4"
 | 
						|
        :placeholder="$t('AUTOMATION.ACTION.TEAM_MESSAGE_INPUT_PLACEHOLDER')"
 | 
						|
        @input="updateValue"
 | 
						|
      />
 | 
						|
    </div>
 | 
						|
  </div>
 | 
						|
</template>
 | 
						|
 | 
						|
<script>
 | 
						|
export default {
 | 
						|
  // The value types are dynamic, hence prop validation removed to work with our action schema
 | 
						|
  // eslint-disable-next-line vue/require-prop-types
 | 
						|
  props: ['teams', 'value'],
 | 
						|
  data() {
 | 
						|
    return {
 | 
						|
      selectedTeams: [],
 | 
						|
      message: '',
 | 
						|
    };
 | 
						|
  },
 | 
						|
  mounted() {
 | 
						|
    const { team_ids: teamIds } = this.value;
 | 
						|
    this.selectedTeams = teamIds;
 | 
						|
    this.message = this.value.message;
 | 
						|
  },
 | 
						|
  methods: {
 | 
						|
    updateValue() {
 | 
						|
      this.$emit('input', {
 | 
						|
        team_ids: this.selectedTeams.map(team => team.id),
 | 
						|
        message: this.message,
 | 
						|
      });
 | 
						|
    },
 | 
						|
  },
 | 
						|
};
 | 
						|
</script>
 | 
						|
 | 
						|
<style scoped>
 | 
						|
.multiselect {
 | 
						|
  margin: var(--space-smaller) var(--space-zero);
 | 
						|
}
 | 
						|
textarea {
 | 
						|
  margin-bottom: var(--space-zero);
 | 
						|
}
 | 
						|
</style>
 |