mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-11-04 04:57:51 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			79 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			79 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
<template>
 | 
						|
  <a
 | 
						|
    :href="url"
 | 
						|
    target="_blank"
 | 
						|
    rel="noreferrer noopener nofollow"
 | 
						|
    class="image"
 | 
						|
  >
 | 
						|
    <div class="wrap">
 | 
						|
      <img
 | 
						|
        :src="thumb"
 | 
						|
        alt="Picture message"
 | 
						|
        @click="onClick"
 | 
						|
        @error="onImgError"
 | 
						|
      />
 | 
						|
      <span class="time">{{ readableTime }}</span>
 | 
						|
    </div>
 | 
						|
  </a>
 | 
						|
</template>
 | 
						|
 | 
						|
<script>
 | 
						|
export default {
 | 
						|
  props: {
 | 
						|
    url: { type: String, default: '' },
 | 
						|
    thumb: { type: String, default: '' },
 | 
						|
    readableTime: { type: String, default: '' },
 | 
						|
  },
 | 
						|
  methods: {
 | 
						|
    onImgError() {
 | 
						|
      this.$emit('error');
 | 
						|
    },
 | 
						|
    onClick() {
 | 
						|
      this.$emit('click');
 | 
						|
    },
 | 
						|
  },
 | 
						|
};
 | 
						|
</script>
 | 
						|
<style lang="scss" scoped>
 | 
						|
@import '~widget/assets/scss/variables.scss';
 | 
						|
 | 
						|
.image {
 | 
						|
  display: block;
 | 
						|
 | 
						|
  .wrap {
 | 
						|
    position: relative;
 | 
						|
    display: flex;
 | 
						|
    max-width: 100%;
 | 
						|
 | 
						|
    &::before {
 | 
						|
      background-image: linear-gradient(
 | 
						|
        -180deg,
 | 
						|
        transparent 3%,
 | 
						|
        $color-heading 130%
 | 
						|
      );
 | 
						|
      bottom: 0;
 | 
						|
      content: '';
 | 
						|
      height: 20%;
 | 
						|
      left: 0;
 | 
						|
      opacity: 0.8;
 | 
						|
      position: absolute;
 | 
						|
      width: 100%;
 | 
						|
    }
 | 
						|
  }
 | 
						|
 | 
						|
  img {
 | 
						|
    width: 100%;
 | 
						|
    max-width: 250px;
 | 
						|
  }
 | 
						|
 | 
						|
  .time {
 | 
						|
    font-size: $font-size-small;
 | 
						|
    bottom: $space-smaller;
 | 
						|
    color: $color-white;
 | 
						|
    position: absolute;
 | 
						|
    right: $space-slab;
 | 
						|
    white-space: nowrap;
 | 
						|
  }
 | 
						|
}
 | 
						|
</style>
 |