mirror of
https://github.com/thangisme/notes.git
synced 2024-11-01 01:17:29 -04:00
79 lines
1.7 KiB
JavaScript
79 lines
1.7 KiB
JavaScript
/* eslint-disable max-nested-callbacks */
|
|
|
|
import {
|
|
expect
|
|
} from 'chai';
|
|
import calculateRowHeightIndex from './../src/calculateRowHeightIndex';
|
|
|
|
describe('calculateRowHeightIndex', () => {
|
|
context('single column', () => {
|
|
context('cell content width is lesser than column width', () => {
|
|
it('is equal to 1', () => {
|
|
const data = [
|
|
[
|
|
'aaa'
|
|
]
|
|
];
|
|
|
|
const config = {
|
|
columns: {
|
|
0: {
|
|
width: 10,
|
|
wrapWord: false
|
|
}
|
|
}
|
|
};
|
|
|
|
const rowSpanIndex = calculateRowHeightIndex(data, config);
|
|
|
|
expect(rowSpanIndex[0]).to.equal(1);
|
|
});
|
|
});
|
|
context('cell content width is twice the size of the column width', () => {
|
|
it('is equal to 2', () => {
|
|
const data = [
|
|
[
|
|
'aaabbb'
|
|
]
|
|
];
|
|
|
|
const config = {
|
|
columns: {
|
|
0: {
|
|
width: 3,
|
|
wrapWord: false
|
|
}
|
|
}
|
|
};
|
|
|
|
const rowSpanIndex = calculateRowHeightIndex(data, config);
|
|
|
|
expect(rowSpanIndex[0]).to.equal(2);
|
|
});
|
|
});
|
|
});
|
|
context('multiple columns', () => {
|
|
context('multiple cell content width is greater than the column width', () => {
|
|
it('uses the largest height', () => {
|
|
const data = [
|
|
['aaabbb'],
|
|
['aaabbb']
|
|
];
|
|
|
|
const config = {
|
|
columns: {
|
|
0: {
|
|
width: 2,
|
|
wrapWord: false
|
|
}
|
|
}
|
|
};
|
|
|
|
const rowSpanIndex = calculateRowHeightIndex(data, config);
|
|
|
|
expect(rowSpanIndex[0]).to.equal(3);
|
|
});
|
|
});
|
|
});
|
|
});
|