2020-07-11 02:09:15 -04:00
|
|
|
import {
|
|
|
|
addClassIfElementExists,
|
|
|
|
canScrollUp,
|
|
|
|
canScrollDown,
|
|
|
|
parseBooleanDataAttributes,
|
|
|
|
} from '~/lib/utils/dom_utils';
|
2018-12-07 11:29:32 -05:00
|
|
|
|
|
|
|
const TEST_MARGIN = 5;
|
2017-06-27 14:37:30 -04:00
|
|
|
|
|
|
|
describe('DOM Utils', () => {
|
|
|
|
describe('addClassIfElementExists', () => {
|
|
|
|
const className = 'biology';
|
|
|
|
const fixture = `
|
|
|
|
<div class="parent">
|
|
|
|
<div class="child"></div>
|
|
|
|
</div>
|
|
|
|
`;
|
|
|
|
|
|
|
|
let parentElement;
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
setFixtures(fixture);
|
|
|
|
parentElement = document.querySelector('.parent');
|
|
|
|
});
|
|
|
|
|
|
|
|
it('adds class if element exists', () => {
|
|
|
|
const childElement = parentElement.querySelector('.child');
|
2018-10-09 14:03:09 -04:00
|
|
|
|
2017-06-27 14:37:30 -04:00
|
|
|
expect(childElement).not.toBe(null);
|
|
|
|
|
|
|
|
addClassIfElementExists(childElement, className);
|
|
|
|
|
2019-12-02 19:06:28 -05:00
|
|
|
expect(childElement.classList).toContainEqual(className);
|
2017-06-27 14:37:30 -04:00
|
|
|
});
|
|
|
|
|
|
|
|
it('does not throw if element does not exist', () => {
|
|
|
|
const childElement = parentElement.querySelector('.other-child');
|
2018-10-09 14:03:09 -04:00
|
|
|
|
2017-06-27 14:37:30 -04:00
|
|
|
expect(childElement).toBe(null);
|
|
|
|
|
|
|
|
addClassIfElementExists(childElement, className);
|
|
|
|
});
|
|
|
|
});
|
2018-12-07 11:29:32 -05:00
|
|
|
|
|
|
|
describe('canScrollUp', () => {
|
|
|
|
[1, 100].forEach(scrollTop => {
|
|
|
|
it(`is true if scrollTop is > 0 (${scrollTop})`, () => {
|
2019-12-02 19:06:28 -05:00
|
|
|
expect(
|
|
|
|
canScrollUp({
|
|
|
|
scrollTop,
|
|
|
|
}),
|
|
|
|
).toBe(true);
|
2018-12-07 11:29:32 -05:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
[0, -10].forEach(scrollTop => {
|
|
|
|
it(`is false if scrollTop is <= 0 (${scrollTop})`, () => {
|
2019-12-02 19:06:28 -05:00
|
|
|
expect(
|
|
|
|
canScrollUp({
|
|
|
|
scrollTop,
|
|
|
|
}),
|
|
|
|
).toBe(false);
|
2018-12-07 11:29:32 -05:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('is true if scrollTop is > margin', () => {
|
2019-12-02 19:06:28 -05:00
|
|
|
expect(
|
|
|
|
canScrollUp(
|
|
|
|
{
|
|
|
|
scrollTop: TEST_MARGIN + 1,
|
|
|
|
},
|
|
|
|
TEST_MARGIN,
|
|
|
|
),
|
|
|
|
).toBe(true);
|
2018-12-07 11:29:32 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
it('is false if scrollTop is <= margin', () => {
|
2019-12-02 19:06:28 -05:00
|
|
|
expect(
|
|
|
|
canScrollUp(
|
|
|
|
{
|
|
|
|
scrollTop: TEST_MARGIN,
|
|
|
|
},
|
|
|
|
TEST_MARGIN,
|
|
|
|
),
|
|
|
|
).toBe(false);
|
2018-12-07 11:29:32 -05:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('canScrollDown', () => {
|
|
|
|
let element;
|
|
|
|
|
|
|
|
beforeEach(() => {
|
2019-12-02 19:06:28 -05:00
|
|
|
element = {
|
|
|
|
scrollTop: 7,
|
|
|
|
offsetHeight: 22,
|
|
|
|
scrollHeight: 30,
|
|
|
|
};
|
2018-12-07 11:29:32 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
it('is true if element can be scrolled down', () => {
|
|
|
|
expect(canScrollDown(element)).toBe(true);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('is false if element cannot be scrolled down', () => {
|
|
|
|
element.scrollHeight -= 1;
|
|
|
|
|
|
|
|
expect(canScrollDown(element)).toBe(false);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('is true if element can be scrolled down, with margin given', () => {
|
|
|
|
element.scrollHeight += TEST_MARGIN;
|
|
|
|
|
|
|
|
expect(canScrollDown(element, TEST_MARGIN)).toBe(true);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('is false if element cannot be scrolled down, with margin given', () => {
|
|
|
|
expect(canScrollDown(element, TEST_MARGIN)).toBe(false);
|
|
|
|
});
|
|
|
|
});
|
2020-07-11 02:09:15 -04:00
|
|
|
|
|
|
|
describe('parseBooleanDataAttributes', () => {
|
|
|
|
let element;
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
setFixtures('<div data-foo-bar data-baz data-qux="">');
|
|
|
|
element = document.querySelector('[data-foo-bar]');
|
|
|
|
});
|
|
|
|
|
|
|
|
it('throws if not given an element', () => {
|
|
|
|
expect(() => parseBooleanDataAttributes(null, ['baz'])).toThrow();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('throws if not given an array of dataset names', () => {
|
|
|
|
expect(() => parseBooleanDataAttributes(element)).toThrow();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('returns an empty object if given an empty array of names', () => {
|
|
|
|
expect(parseBooleanDataAttributes(element, [])).toEqual({});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('correctly parses boolean-like data attributes', () => {
|
|
|
|
expect(
|
|
|
|
parseBooleanDataAttributes(element, [
|
|
|
|
'fooBar',
|
|
|
|
'foobar',
|
|
|
|
'baz',
|
|
|
|
'qux',
|
|
|
|
'doesNotExist',
|
|
|
|
'toString',
|
|
|
|
]),
|
|
|
|
).toEqual({
|
|
|
|
fooBar: true,
|
|
|
|
foobar: false,
|
|
|
|
baz: true,
|
|
|
|
qux: true,
|
|
|
|
doesNotExist: false,
|
|
|
|
|
|
|
|
// Ensure prototype properties aren't false positives
|
|
|
|
toString: false,
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2017-06-27 14:37:30 -04:00
|
|
|
});
|