mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-11-04 13:07:55 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			69 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			69 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
<template>
 | 
						|
  <li
 | 
						|
    class="option"
 | 
						|
    :class="{ 'is-selected': isSelected }"
 | 
						|
    :style="{ borderColor: widgetColor }"
 | 
						|
  >
 | 
						|
    <button class="option-button button" @click="onClick">
 | 
						|
      <span :style="{ color: widgetColor }">{{ action.title }}</span>
 | 
						|
    </button>
 | 
						|
  </li>
 | 
						|
</template>
 | 
						|
 | 
						|
<script>
 | 
						|
import { mapGetters } from 'vuex';
 | 
						|
export default {
 | 
						|
  components: {},
 | 
						|
  props: {
 | 
						|
    action: {
 | 
						|
      type: Object,
 | 
						|
      default: () => {},
 | 
						|
    },
 | 
						|
    isSelected: {
 | 
						|
      type: Boolean,
 | 
						|
      default: false,
 | 
						|
    },
 | 
						|
  },
 | 
						|
  computed: {
 | 
						|
    ...mapGetters({
 | 
						|
      widgetColor: 'appConfig/getWidgetColor',
 | 
						|
    }),
 | 
						|
  },
 | 
						|
  methods: {
 | 
						|
    onClick() {
 | 
						|
      this.$emit('click', this.action);
 | 
						|
    },
 | 
						|
  },
 | 
						|
};
 | 
						|
</script>
 | 
						|
 | 
						|
<style scoped lang="scss">
 | 
						|
@import '~widget/assets/scss/variables.scss';
 | 
						|
 | 
						|
.option {
 | 
						|
  border: 1px solid $color-woot;
 | 
						|
  border-radius: $space-jumbo;
 | 
						|
  float: left;
 | 
						|
  margin: $space-smaller;
 | 
						|
 | 
						|
  .option-button {
 | 
						|
    background: transparent;
 | 
						|
    border-radius: $space-large;
 | 
						|
    border: 0;
 | 
						|
    color: $color-woot;
 | 
						|
    cursor: pointer;
 | 
						|
    text-align: left;
 | 
						|
 | 
						|
    span {
 | 
						|
      display: inline-block;
 | 
						|
      vertical-align: middle;
 | 
						|
    }
 | 
						|
 | 
						|
    > .icon {
 | 
						|
      margin-right: $space-smaller;
 | 
						|
      font-size: $font-size-medium;
 | 
						|
    }
 | 
						|
  }
 | 
						|
}
 | 
						|
</style>
 |