mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-11-03 20:48:07 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			64 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			64 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
<template>
 | 
						|
  <div class="text--container">
 | 
						|
    <woot-button size="small" class="button--text" @click="onCopy">
 | 
						|
      {{ $t('COMPONENTS.CODE.BUTTON_TEXT') }}
 | 
						|
    </woot-button>
 | 
						|
    <woot-button
 | 
						|
      variant="clear"
 | 
						|
      size="small"
 | 
						|
      class="button--visibility"
 | 
						|
      color-scheme="secondary"
 | 
						|
      :icon="masked ? 'eye-show' : 'eye-hide'"
 | 
						|
      @click.prevent="toggleMasked"
 | 
						|
    />
 | 
						|
    <highlightjs v-if="value" :code="masked ? '•'.repeat(10) : value" />
 | 
						|
  </div>
 | 
						|
</template>
 | 
						|
 | 
						|
<script>
 | 
						|
import 'highlight.js/styles/default.css';
 | 
						|
import { copyTextToClipboard } from 'shared/helpers/clipboard';
 | 
						|
 | 
						|
export default {
 | 
						|
  props: {
 | 
						|
    value: {
 | 
						|
      type: String,
 | 
						|
      default: '',
 | 
						|
    },
 | 
						|
  },
 | 
						|
  data() {
 | 
						|
    return {
 | 
						|
      masked: true,
 | 
						|
    };
 | 
						|
  },
 | 
						|
  methods: {
 | 
						|
    async onCopy(e) {
 | 
						|
      e.preventDefault();
 | 
						|
      await copyTextToClipboard(this.value);
 | 
						|
      bus.$emit('newToastMessage', this.$t('COMPONENTS.CODE.COPY_SUCCESSFUL'));
 | 
						|
    },
 | 
						|
    toggleMasked() {
 | 
						|
      this.masked = !this.masked;
 | 
						|
    },
 | 
						|
  },
 | 
						|
};
 | 
						|
</script>
 | 
						|
 | 
						|
<style lang="scss" scoped>
 | 
						|
.text--container {
 | 
						|
  position: relative;
 | 
						|
  text-align: left;
 | 
						|
 | 
						|
  .button--text,
 | 
						|
  .button--visibility {
 | 
						|
    margin-top: 0;
 | 
						|
    position: absolute;
 | 
						|
    right: 0;
 | 
						|
  }
 | 
						|
 | 
						|
  .button--visibility {
 | 
						|
    right: 60px;
 | 
						|
  }
 | 
						|
}
 | 
						|
</style>
 |