mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-11-04 13:07:55 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			73 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			73 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
<template>
 | 
						|
  <a
 | 
						|
    v-if="isLink"
 | 
						|
    :key="action.uri"
 | 
						|
    class="action-button button"
 | 
						|
    :href="action.uri"
 | 
						|
    :style="{
 | 
						|
      background: widgetColor,
 | 
						|
      borderColor: widgetColor,
 | 
						|
      color: textColor,
 | 
						|
    }"
 | 
						|
    target="_blank"
 | 
						|
    rel="noopener nofollow noreferrer"
 | 
						|
  >
 | 
						|
    {{ action.text }}
 | 
						|
  </a>
 | 
						|
  <button
 | 
						|
    v-else
 | 
						|
    :key="action.payload"
 | 
						|
    class="action-button button"
 | 
						|
    :style="{ borderColor: widgetColor, color: widgetColor }"
 | 
						|
    @click="onClick"
 | 
						|
  >
 | 
						|
    {{ action.text }}
 | 
						|
  </button>
 | 
						|
</template>
 | 
						|
<script>
 | 
						|
import { mapGetters } from 'vuex';
 | 
						|
import { getContrastingTextColor } from '@chatwoot/utils';
 | 
						|
export default {
 | 
						|
  components: {},
 | 
						|
  props: {
 | 
						|
    action: {
 | 
						|
      type: Object,
 | 
						|
      default: () => {},
 | 
						|
    },
 | 
						|
  },
 | 
						|
  computed: {
 | 
						|
    ...mapGetters({
 | 
						|
      widgetColor: 'appConfig/getWidgetColor',
 | 
						|
    }),
 | 
						|
    textColor() {
 | 
						|
      return getContrastingTextColor(this.widgetColor);
 | 
						|
    },
 | 
						|
    isLink() {
 | 
						|
      return this.action.type === 'link';
 | 
						|
    },
 | 
						|
  },
 | 
						|
  methods: {
 | 
						|
    onClick() {
 | 
						|
      // Do postback here
 | 
						|
    },
 | 
						|
  },
 | 
						|
};
 | 
						|
</script>
 | 
						|
 | 
						|
<style scoped lang="scss">
 | 
						|
@import '~widget/assets/scss/variables.scss';
 | 
						|
@import '~dashboard/assets/scss/mixins.scss';
 | 
						|
 | 
						|
.action-button {
 | 
						|
  align-items: center;
 | 
						|
  border-radius: $space-micro;
 | 
						|
  display: flex;
 | 
						|
  font-weight: $font-weight-medium;
 | 
						|
  justify-content: center;
 | 
						|
  margin-top: $space-smaller;
 | 
						|
  max-height: 34px;
 | 
						|
  padding: 0;
 | 
						|
  width: 100%;
 | 
						|
}
 | 
						|
</style>
 |