<template>
  <v-select
    :value="annotatedLabel"
    chips
    :items="labels"
    item-text="text"
    hide-details
    hide-selected
    return-object
    class="pt-0"
    @change="addOrRemove"
  >
    <template v-slot:selection="{ attrs, item, select, selected }">
      <v-chip
        v-if="item.backgroundColor"
        v-bind="attrs"
        :input-value="selected"
        :color="item.backgroundColor"
        :text-color="$contrastColor(item.backgroundColor)"
        close
        @click="select"
        @click:close="remove(item)"
      >
        <v-avatar
          v-if="item.suffixKey"
          left
          color="white"
          class="black--text font-weight-bold"
        >
          {{ item.suffixKey }}
        </v-avatar>
        {{ item.text }}
      </v-chip>
    </template>
    <template v-slot:item="{ item }">
      <v-chip
        :color="item.backgroundColor"
        :text-color="$contrastColor(item.backgroundColor)"
      >
        <v-avatar
          v-if="item.suffixKey"
          left
          color="white"
          class="black--text font-weight-bold"
        >
          {{ item.suffixKey }}
        </v-avatar>
        {{ item.text }}
      </v-chip>
    </template>
  </v-select>
</template>

<script>
export default {
  props: {
    labels: {
      type: Array,
      default: () => [],
      required: true
    },
    annotations: {
      type: Array,
      default: () => ([]),
      required: true
    }
  },

  computed: {
    annotatedLabel() {
      const labelIds = this.annotations.map(item => item.label)
      return this.labels.find(item => labelIds.includes(item.id))
    }
  },

  methods: {
    addOrRemove(val) {
      if (val) {
        this.add(val)
      } else {
        this.remove(this.annotatedLabel)
      }
    },

    add(label) {
      this.$emit('add', label.id)
    },

    remove(label) {
      const annotation = this.annotations.find(item => item.label === label.id)
      this.$emit('remove', annotation.id)
    }
  }
}
</script>