Card16Component.ets 4.87 KB
import { ContentDTO, CompDTO } from 'wdBean';
import { RmhTitle } from '../cardCommon/RmhTitle'
import { CardMediaInfo } from '../cardCommon/CardMediaInfo'
import { CommonConstants } from 'wdConstant/Index';
import { ProcessUtils } from 'wdRouter';
import {CarderInteraction} from '../CarderInteraction'
import { onlyWifiLoadImg } from '../../utils/lazyloadImg';
import { persistentStorage, hasClicked } from '../../utils/persistentStorage';
import { InfomationCardClick } from '../../utils/infomationCardClick'

const TAG = 'Card16Component';

interface fullColumnImgUrlItem {
  url: string
}


/**
 * 人民号-动态---16:人民号三图卡;
 */
@Component
export struct Card16Component {
  @ObjectLink compDTO: CompDTO
  @State pageId: string = '';
  @State pageName: string = '';
  @State contentDTO: ContentDTO = new ContentDTO();
  @State loadImg: boolean = false;
  @State clicked: boolean = false;
  @State titleMarked: boolean = false;
  @State str01: string = '';
  @State str02: string = '';
  @State str03: string = '';

  async aboutToAppear(): Promise<void> {
    this.titleInit();
    this.clicked = hasClicked(this.contentDTO.objectId)
    this.loadImg = await onlyWifiLoadImg();
  }

  titleInit() {
    if (this.contentDTO.title?.includes('<em>') && this.contentDTO.title?.includes('</em>')) {
      this.titleMarked = true;
      this.str01 = this.contentDTO.title?.split('<em>')[0] || '';
      this.str02 = this.contentDTO.title?.split('<em>')[1].split('</em>')[0] || '';
      this.str03 = this.contentDTO.title?.split('<em>')[1].split('</em>')[1] || '';
    }
  }

  build() {
    Column() {
      // rmh信息
      if (this.contentDTO.rmhInfo) {
        RmhTitle({ rmhInfo: this.contentDTO.rmhInfo, publishTime: this.contentDTO.publishTime })
      }
      // 标题
      if (this.contentDTO.newsTitle) {
        Text() {
          if (this.titleMarked) {
            Span(this.str01)
            Span(this.str02)
              .fontColor(0xED2800)
            Span(this.str03)
          } else {
            Span(this.contentDTO.newsTitle)
          }
        }
          .fontSize($r('app.float.font_size_18'))
          .fontColor(this.clicked ? 0x848484 : $r('app.color.color_222222'))
          .width(CommonConstants.FULL_WIDTH)
          .textOverflowStyle(2)
          .margin({ bottom: 8 })
          .lineHeight(25)
      }
      if (this.contentDTO.fullColumnImgUrls?.length > 0) {
        Flex() {
          ForEach(this.contentDTO.fullColumnImgUrls.slice(0, 3), (item: fullColumnImgUrlItem, index: number) => {
            Image(this.loadImg ? item.url : '')
              .backgroundColor(0xf5f5f5)
              .flexBasis(113)
              .height(75)
              .margin({ right: index > 1 ? 0 : 2 })
          })
        }
      }
      CarderInteraction({contentDTO: this.contentDTO})
      //TODO  底部的:分享、评论、点赞 功能;需要引用一个公共组件
    }
    .padding({
      left: $r('app.float.card_comp_pagePadding_lf'),
      right: $r('app.float.card_comp_pagePadding_lf'),
      top: $r('app.float.card_comp_pagePadding_tb'),
      bottom: $r('app.float.card_comp_pagePadding_tb')
    })
    .onClick((event: ClickEvent) => {
      InfomationCardClick.track(this.compDTO, this.contentDTO, this.pageId, this.pageName)
      this.clicked = true;
      persistentStorage(this.contentDTO.objectId);
      ProcessUtils.processPage(this.contentDTO)
    })
  }
}

interface radiusType {
  topLeft: number | Resource;
  topRight: number | Resource;
  bottomLeft: number | Resource;
  bottomRight: number | Resource;
}

@Component
struct createImg {
  @Prop contentDTO: ContentDTO
  @State loadImg: boolean = false;

  async aboutToAppear(): Promise<void> {
    this.loadImg = await onlyWifiLoadImg();
  }

  build() {
    GridRow() {
      if (this.contentDTO.fullColumnImgUrls[0].landscape === 1) {
        // 横屏
        GridCol({
          span: { xs: 12 }
        }) {
          Stack() {
            Image(this.loadImg ? this.contentDTO.coverUrl : '')
              .backgroundColor(0xf5f5f5)
              .width(CommonConstants.FULL_WIDTH)
              .aspectRatio(16 / 9)
              .borderRadius($r('app.float.image_border_radius'))
            CardMediaInfo({ contentDTO: this.contentDTO })
          }
          .align(Alignment.BottomEnd)
        }
      } else {
        // 竖图显示,宽度占50%,高度自适应
        GridCol({
          span: { xs: 6 }
        }) {
          Stack() {
            Image(this.loadImg ? this.contentDTO.coverUrl : '')
              .backgroundColor(0xf5f5f5)
              .width(CommonConstants.FULL_WIDTH)
              .borderRadius($r('app.float.image_border_radius'))
            CardMediaInfo({ contentDTO: this.contentDTO })
          }
          .align(Alignment.BottomEnd)
        }
      }
    }
  }
}


@Extend(Text)
function textOverflowStyle(maxLine: number) {
  .maxLines(maxLine)
  .textOverflow({ overflow: TextOverflow.Ellipsis })
}