Skip to content

溢出隐藏

超长文本的两种处理方式,全局配 textOverflow,列上同名字段可覆盖:

取值行为
ellipsis单行 + 省略号,不提供查看完整内容的手段
tooltip省略号 + 内置浮层:只在文本真被裁掉时弹出,延迟可调(tooltip: { delay },默认 150ms),长文本自动换行,贴边自动翻转/夹取,跟随明暗主题

使用的 API

ts
type Column = {
  key: string;  // 列标识(必填)
  title: string;  // 列标题(必填)
  width: number;  // 列宽(必填)
  textOverflow: 'ellipsis' | 'tooltip';  // 列级覆盖全局设置
}

type Options = {
  list: T[];  // 数据列表
  itemKey: string;  // 行唯一标识字段名
  estimatedSize: number;  // 行预估高度(px)
  buffer: number;  // 缓冲区行数
  border: boolean;  // 是否显示边框
  textOverflow: 'ellipsis' | 'tooltip';  // 全局文本溢出处理
}

示例

微应用尚未挂载。

源码

点击查看源码
ts
import { faker } from '@faker-js/faker';
import { VirtTable } from '@virt-table/vanilla';

/** 两种溢出处理交替,方便横向对比;列多于容器宽度,顺带能看到贴右边时浮层的夹取 */
const MODES = ['ellipsis', 'tooltip'] as const;
const MODE_DESC: Record<(typeof MODES)[number], string> = {
  ellipsis: '仅省略号',
  tooltip: '省略号 + 自绘浮层(悬停 150ms)',
};
const COL_COUNT = 6;
const ROW_COUNT = 1000;

export function bootstrapTableOverflow(root: HTMLElement): () => void {
  const columns = Array.from({ length: COL_COUNT }, (_, i) => {
    const mode = MODES[i % MODES.length];
    return {
      key: `col_${i}`,
      title: `列 ${i} · ${mode}`,
      width: 220,
      // 列级覆盖全局的 textOverflow
      textOverflow: mode,
    };
  });

  const list = Array.from({ length: ROW_COUNT }, (_, i) => {
    const row: Record<string, any> = { id: i };
    for (let c = 0; c < COL_COUNT; c++) {
      // 掺一些短文本:没被裁掉的单元格不该弹浮层
      row[`col_${c}`] = c % 2 === 1 && i % 4 === 0 ? '短' : faker.lorem.sentences(3);
    }
    return row;
  });

  root.innerHTML = `
    <div class="status-text">${MODES.map((m) => `<code>${m}</code> ${MODE_DESC[m]}`).join(' · ')}</div>
    <div style="width:800px;height:600px;" class="demo-container" id="tableContainer"></div>
  `;
  const container = root.querySelector('#tableContainer') as HTMLElement;

  const table = new VirtTable(container, {
    list,
    columns,
    itemKey: 'id',
    estimatedSize: 40,
    buffer: 4,
    textOverflow: 'ellipsis',
    border: true,
  });

  return () => {
    table.destroy();
    root.innerHTML = '';
  };
}