forked from Happy-Coding-Clans/vue-easytable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathve-table-cell-ellipsis.spec.js
154 lines (147 loc) · 4.54 KB
/
ve-table-cell-ellipsis.spec.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
import { mount } from "@vue/test-utils";
import veTable from "@/ve-table";
import { later } from "../util";
describe("veTable cell ellipsis", () => {
const TABLE_DATA = [
{
name: "John",
date: "1900-05-20",
hobby: "coding and coding repeat",
address:
"No.1 Century Avenue, Shanghai,this is a long text,this is a long text,this is a long text,this is a long text,this is a long text,this is a long text",
rowkey: 0,
},
{
name: "Dickerson",
date: "1910-06-20",
hobby: "coding and coding repeat",
address:
"No.1 Century Avenue, Beijing,this is a long text,this is a long text,this is a long text,this is a long text",
rowkey: 1,
},
{
name: "Larsen",
date: "2000-07-20",
hobby: "coding and coding repeat",
address:
"No.1 Century Avenue, Chongqing,this is a long text,this is a long text,this is a long text,this is a long text,this is a long text,this is a long text,this is a long text,this is a long text",
rowkey: 2,
},
{
name: "Geneva",
date: "2010-08-20",
hobby: "coding and coding repeat",
address:
"No.1 Century Avenue, Xiamen,this is a long text,this is a long text",
rowkey: 3,
},
{
name: "Jami",
date: "2020-09-20",
hobby: "coding and coding repeat",
address: "No.1 Century Avenue, Shenzhen",
rowkey: 4,
},
];
const COLUMNS = [
{
field: "name",
key: "a",
title: "Name",
align: "left",
width: "15%",
},
{
field: "date",
key: "b",
title: "Date",
align: "left",
width: "15%",
},
{
field: "hobby",
key: "c",
title: "Hobby",
align: "center",
width: "30%",
},
{
field: "address",
key: "d",
title: "Address",
align: "left",
width: "40%",
ellipsis: {},
},
];
it("render single line ellipsis", () => {
const wrapper = mount(veTable, {
propsData: {
columns: COLUMNS,
tableData: TABLE_DATA,
rowKeyFieldName: "rowKey",
},
});
expect(wrapper.html()).toMatchSnapshot();
});
it("render multiline ellipsis", async () => {
const wrapper = mount(veTable, {
propsData: {
columns: [
{
field: "name",
key: "a",
title: "Name",
align: "left",
width: "15%",
},
{
field: "date",
key: "b",
title: "Date",
align: "left",
width: "15%",
},
{
field: "hobby",
key: "c",
title: "Hobby",
align: "center",
width: "30%",
},
{
field: "address",
key: "d",
title: "Address",
align: "left",
width: "40%",
ellipsis: {
lineClamp: 3,
},
},
],
// table data
tableData: TABLE_DATA,
rowKeyFieldName: "rowKey",
fixedHeader: true,
},
});
await later();
const trEl = wrapper.findAll(".ve-table-body-tr").at(0);
expect(
trEl
.findAll(".ve-table-body-td")
.at(3)
.find(".ve-table-body-td-span-ellipsis")
.exists(),
).toBe(true);
// doesn't support -webkit-line-clamp style attr
/* expect(
trEl
.findAll(".ve-table-body-td")
.at(3)
.find(".ve-table-body-td-span-ellipsis")
.attributes("style")
).toBe("-webkit-line-clamp: 3;"); */
});
});