import { OnInit } from '@angular/core'; import { _HttpClient } from '@delon/theme'; import { BtnConfig, DialogService } from 'icc-common-lib'; export declare class TikTokCommentComponent implements OnInit { private http; private dialogService; constructor(http: _HttpClient, dialogService: DialogService); static NAME: string; /** 评论列表 */ commentList: any[]; /** 评论的按钮配置 */ commentConfig: BtnConfig[]; /** 评论回复的按钮配置 */ replyConfig: BtnConfig[]; /** 标签列表 */ tagList: any[]; /** 文章卡片 */ cardList: any[]; /** 当前卡片索引 */ actCardIndex: number; /** 卡片总页数 */ cardTotal: number; /** 当前卡片处于第几页 */ actCardPageIndex: number; /** 当前标签索引 */ actTagIndex: number; /** 当前标签评论总数 */ commentTotal: number; /** 群发消息列表是否为空 */ isCardListEmpty: boolean; /** 评论列表是否为空 */ isCommentListEmpty: boolean; url: string; selectedValue: any; channels: any[]; searchOptions: any; params1: { pi: number; ps: number; params: any; }; params2: { pi: number; ps: number; params: any; }; /** 回复弹窗控制*/ isOpenReplyDialog: boolean; replyContent: any; commentItemNow: any; selectedCommentItems: any[]; isReplyBatch: boolean; commentMediaNow: any; isSyncLoading: boolean; nzSpinning: boolean; ngOnInit(): void; checkChangeHandle(value: any, item: any): void; clickHandle(index: number, item: any): void; /** 改变标签 */ changeTag(index: number, item: any): void; resetParams2(): void; getChannel(): void; getCommentMedia(): void; resetCommentMedia(): void; getCommentItem(): void; /** 卡片翻页 */ toggleCardPage(prev: boolean): void; comfirm(item: any): void; /** * 置顶获取取消置顶评论 * @param item */ makeCommentTopOrCancel(item: any): void; /** 批量回复打开窗口*/ replyBatchOpenDialog(): void; cancelReplyDialog(): void; ensureReplyDialog(): void; /** 回复单条评论*/ replyCommentOne(): void; /** 批量回复评论*/ replyCommentBatch(): void; resetTagList(): void; /** 手动同步数据*/ pullMediaComment(): void; onOkDate($event?: any): void; }