mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-11-04 13:07:55 +00:00 
			
		
		
		
	* feat: Add vue-router to widget Co-authored-by: Pranav <pranav@chatwoot.com> * Move to dynamic imports * Move to routerMixin * Fix popup button display * Remove unnecessary import * router -> route * Fix open state * Fix issues * Remove used CSS * Fix specs * Fix specs * Fix widgetColor specs * Fix mutation specs * Fixes broken lint errors * Fixes issues with widget flow Co-authored-by: Nithin <nithin@chatwoot.com> Co-authored-by: Nithin David <1277421+nithindavid@users.noreply.github.com> Co-authored-by: Muhsin Keloth <muhsinkeramam@gmail.com>
		
			
				
	
	
		
			94 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			94 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
<template>
 | 
						|
  <div
 | 
						|
    class="avatar-container"
 | 
						|
    :style="[style, customStyle]"
 | 
						|
    aria-hidden="true"
 | 
						|
  >
 | 
						|
    <span>{{ userInitial }}</span>
 | 
						|
  </div>
 | 
						|
</template>
 | 
						|
 | 
						|
<script>
 | 
						|
export default {
 | 
						|
  name: 'Avatar',
 | 
						|
  props: {
 | 
						|
    username: {
 | 
						|
      type: String,
 | 
						|
      default: '',
 | 
						|
    },
 | 
						|
    backgroundColor: {
 | 
						|
      type: String,
 | 
						|
      default: '#c2e1ff',
 | 
						|
    },
 | 
						|
    color: {
 | 
						|
      type: String,
 | 
						|
      default: '#1976cc',
 | 
						|
    },
 | 
						|
    customStyle: {
 | 
						|
      type: Object,
 | 
						|
      default: undefined,
 | 
						|
    },
 | 
						|
    size: {
 | 
						|
      type: Number,
 | 
						|
      default: 40,
 | 
						|
    },
 | 
						|
    src: {
 | 
						|
      type: String,
 | 
						|
      default: '',
 | 
						|
    },
 | 
						|
    rounded: {
 | 
						|
      type: Boolean,
 | 
						|
      default: true,
 | 
						|
    },
 | 
						|
  },
 | 
						|
  computed: {
 | 
						|
    style() {
 | 
						|
      let style = {
 | 
						|
        width: `${this.size}px`,
 | 
						|
        height: `${this.size}px`,
 | 
						|
        borderRadius: this.rounded ? '50%' : 0,
 | 
						|
        lineHeight: `${this.size + Math.floor(this.size / 20)}px`,
 | 
						|
        fontSize: `${Math.floor(this.size / 2.5)}px`,
 | 
						|
      };
 | 
						|
 | 
						|
      if (this.backgroundColor) {
 | 
						|
        style = { ...style, backgroundColor: this.backgroundColor };
 | 
						|
      }
 | 
						|
      if (this.color) {
 | 
						|
        style = { ...style, color: this.color };
 | 
						|
      }
 | 
						|
      return style;
 | 
						|
    },
 | 
						|
    userInitial() {
 | 
						|
      return this.initials || this.initial(this.username);
 | 
						|
    },
 | 
						|
  },
 | 
						|
  methods: {
 | 
						|
    initial(username) {
 | 
						|
      const parts = username ? username.split(/[ -]/) : [];
 | 
						|
      let initials = '';
 | 
						|
      for (let i = 0; i < parts.length; i += 1) {
 | 
						|
        initials += parts[i].charAt(0);
 | 
						|
      }
 | 
						|
      if (initials.length > 2 && initials.search(/[A-Z]/) !== -1) {
 | 
						|
        initials = initials.replace(/[a-z]+/g, '');
 | 
						|
      }
 | 
						|
      initials = initials.substr(0, 2).toUpperCase();
 | 
						|
      return initials;
 | 
						|
    },
 | 
						|
  },
 | 
						|
};
 | 
						|
</script>
 | 
						|
 | 
						|
<style lang="scss" scoped>
 | 
						|
.avatar-container {
 | 
						|
  display: flex;
 | 
						|
  font-weight: 500;
 | 
						|
  align-items: center;
 | 
						|
  justify-content: center;
 | 
						|
  text-align: center;
 | 
						|
  background-image: linear-gradient(to top, var(--w-100) 0%, var(--w-75) 100%);
 | 
						|
  color: var(--w-600);
 | 
						|
}
 | 
						|
</style>
 |