2020-08-20 05:09:55 -04:00
|
|
|
import createFlash, {
|
|
|
|
deprecatedCreateFlash,
|
2020-08-11 08:09:55 -04:00
|
|
|
createFlashEl,
|
|
|
|
createAction,
|
|
|
|
hideFlash,
|
|
|
|
removeFlashClickListener,
|
|
|
|
} from '~/flash';
|
2017-10-04 07:13:11 -04:00
|
|
|
|
|
|
|
describe('Flash', () => {
|
|
|
|
describe('createFlashEl', () => {
|
|
|
|
let el;
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
el = document.createElement('div');
|
|
|
|
});
|
|
|
|
|
|
|
|
afterEach(() => {
|
|
|
|
el.innerHTML = '';
|
|
|
|
});
|
|
|
|
|
|
|
|
it('creates flash element with type', () => {
|
|
|
|
el.innerHTML = createFlashEl('testing', 'alert');
|
|
|
|
|
2018-10-17 03:13:26 -04:00
|
|
|
expect(el.querySelector('.flash-alert')).not.toBeNull();
|
2017-10-04 07:13:11 -04:00
|
|
|
});
|
|
|
|
|
|
|
|
it('escapes text', () => {
|
|
|
|
el.innerHTML = createFlashEl('<script>alert("a");</script>', 'alert');
|
|
|
|
|
2018-10-17 03:13:26 -04:00
|
|
|
expect(el.querySelector('.flash-text').textContent.trim()).toBe(
|
|
|
|
'<script>alert("a");</script>',
|
|
|
|
);
|
2017-10-04 07:13:11 -04:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('hideFlash', () => {
|
|
|
|
let el;
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
el = document.createElement('div');
|
|
|
|
el.className = 'js-testing';
|
|
|
|
});
|
|
|
|
|
|
|
|
it('sets transition style', () => {
|
|
|
|
hideFlash(el);
|
|
|
|
|
2020-05-11 11:09:37 -04:00
|
|
|
expect(el.style.transition).toBe('opacity 0.15s');
|
2017-10-04 07:13:11 -04:00
|
|
|
});
|
|
|
|
|
|
|
|
it('sets opacity style', () => {
|
|
|
|
hideFlash(el);
|
|
|
|
|
2018-10-17 03:13:26 -04:00
|
|
|
expect(el.style.opacity).toBe('0');
|
2017-10-04 07:13:11 -04:00
|
|
|
});
|
|
|
|
|
2017-10-05 05:27:43 -04:00
|
|
|
it('does not set styles when fadeTransition is false', () => {
|
|
|
|
hideFlash(el, false);
|
|
|
|
|
2018-10-17 03:13:26 -04:00
|
|
|
expect(el.style.opacity).toBe('');
|
2020-05-11 11:09:37 -04:00
|
|
|
expect(el.style.transition).toBeFalsy();
|
2017-10-05 05:27:43 -04:00
|
|
|
});
|
|
|
|
|
2017-10-04 07:13:11 -04:00
|
|
|
it('removes element after transitionend', () => {
|
|
|
|
document.body.appendChild(el);
|
|
|
|
|
|
|
|
hideFlash(el);
|
|
|
|
el.dispatchEvent(new Event('transitionend'));
|
|
|
|
|
2018-10-17 03:13:26 -04:00
|
|
|
expect(document.querySelector('.js-testing')).toBeNull();
|
2017-10-04 07:13:11 -04:00
|
|
|
});
|
|
|
|
|
|
|
|
it('calls event listener callback once', () => {
|
2020-05-11 11:09:37 -04:00
|
|
|
jest.spyOn(el, 'remove');
|
2017-10-04 07:13:11 -04:00
|
|
|
document.body.appendChild(el);
|
|
|
|
|
|
|
|
hideFlash(el);
|
|
|
|
|
|
|
|
el.dispatchEvent(new Event('transitionend'));
|
|
|
|
el.dispatchEvent(new Event('transitionend'));
|
|
|
|
|
2020-05-11 11:09:37 -04:00
|
|
|
expect(el.remove.mock.calls.length).toBe(1);
|
2017-10-04 07:13:11 -04:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('createAction', () => {
|
|
|
|
let el;
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
el = document.createElement('div');
|
|
|
|
});
|
|
|
|
|
|
|
|
it('creates link with href', () => {
|
|
|
|
el.innerHTML = createAction({
|
|
|
|
href: 'testing',
|
|
|
|
title: 'test',
|
|
|
|
});
|
|
|
|
|
2018-10-17 03:13:26 -04:00
|
|
|
expect(el.querySelector('.flash-action').href).toContain('testing');
|
2017-10-04 07:13:11 -04:00
|
|
|
});
|
|
|
|
|
|
|
|
it('uses hash as href when no href is present', () => {
|
|
|
|
el.innerHTML = createAction({
|
|
|
|
title: 'test',
|
|
|
|
});
|
|
|
|
|
2018-10-17 03:13:26 -04:00
|
|
|
expect(el.querySelector('.flash-action').href).toContain('#');
|
2017-10-04 07:13:11 -04:00
|
|
|
});
|
|
|
|
|
|
|
|
it('adds role when no href is present', () => {
|
|
|
|
el.innerHTML = createAction({
|
|
|
|
title: 'test',
|
|
|
|
});
|
|
|
|
|
2018-10-17 03:13:26 -04:00
|
|
|
expect(el.querySelector('.flash-action').getAttribute('role')).toBe('button');
|
2017-10-04 07:13:11 -04:00
|
|
|
});
|
|
|
|
|
|
|
|
it('escapes the title text', () => {
|
|
|
|
el.innerHTML = createAction({
|
|
|
|
title: '<script>alert("a")</script>',
|
|
|
|
});
|
|
|
|
|
2018-10-17 03:13:26 -04:00
|
|
|
expect(el.querySelector('.flash-action').textContent.trim()).toBe(
|
|
|
|
'<script>alert("a")</script>',
|
|
|
|
);
|
2017-10-04 07:13:11 -04:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2020-08-20 05:09:55 -04:00
|
|
|
describe('deprecatedCreateFlash', () => {
|
2021-03-16 11:11:17 -04:00
|
|
|
const message = 'test';
|
|
|
|
const type = 'alert';
|
|
|
|
const parent = document;
|
|
|
|
const actionConfig = null;
|
|
|
|
const fadeTransition = false;
|
|
|
|
const addBodyClass = true;
|
|
|
|
const defaultParams = [message, type, parent, actionConfig, fadeTransition, addBodyClass];
|
|
|
|
|
2017-10-04 07:13:11 -04:00
|
|
|
describe('no flash-container', () => {
|
|
|
|
it('does not add to the DOM', () => {
|
2021-03-16 11:11:17 -04:00
|
|
|
const flashEl = deprecatedCreateFlash(message);
|
2017-10-04 07:13:11 -04:00
|
|
|
|
2018-10-17 03:13:26 -04:00
|
|
|
expect(flashEl).toBeNull();
|
2018-10-09 14:03:09 -04:00
|
|
|
|
2018-10-17 03:13:26 -04:00
|
|
|
expect(document.querySelector('.flash-alert')).toBeNull();
|
2017-10-04 07:13:11 -04:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('with flash-container', () => {
|
|
|
|
beforeEach(() => {
|
2021-03-16 11:11:17 -04:00
|
|
|
setFixtures(
|
|
|
|
'<div class="content-wrapper js-content-wrapper"><div class="flash-container"></div></div>',
|
|
|
|
);
|
2017-10-04 07:13:11 -04:00
|
|
|
});
|
|
|
|
|
|
|
|
afterEach(() => {
|
|
|
|
document.querySelector('.js-content-wrapper').remove();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('adds flash element into container', () => {
|
2021-03-16 11:11:17 -04:00
|
|
|
deprecatedCreateFlash(...defaultParams);
|
2017-10-04 07:13:11 -04:00
|
|
|
|
2018-10-17 03:13:26 -04:00
|
|
|
expect(document.querySelector('.flash-alert')).not.toBeNull();
|
2018-01-19 04:38:34 -05:00
|
|
|
|
2018-10-17 03:13:26 -04:00
|
|
|
expect(document.body.className).toContain('flash-shown');
|
2017-10-04 07:13:11 -04:00
|
|
|
});
|
|
|
|
|
|
|
|
it('adds flash into specified parent', () => {
|
2021-03-16 11:11:17 -04:00
|
|
|
deprecatedCreateFlash(
|
|
|
|
message,
|
|
|
|
type,
|
|
|
|
document.querySelector('.content-wrapper'),
|
|
|
|
actionConfig,
|
|
|
|
fadeTransition,
|
|
|
|
addBodyClass,
|
|
|
|
);
|
2017-10-04 07:13:11 -04:00
|
|
|
|
2018-10-17 03:13:26 -04:00
|
|
|
expect(document.querySelector('.content-wrapper .flash-alert')).not.toBeNull();
|
2021-03-16 11:11:17 -04:00
|
|
|
expect(document.querySelector('.content-wrapper').innerText.trim()).toEqual(message);
|
2017-10-04 07:13:11 -04:00
|
|
|
});
|
|
|
|
|
|
|
|
it('adds container classes when inside content-wrapper', () => {
|
2021-03-16 11:11:17 -04:00
|
|
|
deprecatedCreateFlash(...defaultParams);
|
2017-10-04 07:13:11 -04:00
|
|
|
|
2019-09-03 05:03:35 -04:00
|
|
|
expect(document.querySelector('.flash-text').className).toBe('flash-text');
|
2021-03-16 11:11:17 -04:00
|
|
|
expect(document.querySelector('.content-wrapper').innerText.trim()).toEqual(message);
|
2017-10-04 07:13:11 -04:00
|
|
|
});
|
|
|
|
|
|
|
|
it('does not add container when outside of content-wrapper', () => {
|
|
|
|
document.querySelector('.content-wrapper').className = 'js-content-wrapper';
|
2021-03-16 11:11:17 -04:00
|
|
|
deprecatedCreateFlash(...defaultParams);
|
2017-10-04 07:13:11 -04:00
|
|
|
|
2018-10-19 05:56:12 -04:00
|
|
|
expect(document.querySelector('.flash-text').className.trim()).toContain('flash-text');
|
2017-10-04 07:13:11 -04:00
|
|
|
});
|
|
|
|
|
|
|
|
it('removes element after clicking', () => {
|
2021-03-16 11:11:17 -04:00
|
|
|
deprecatedCreateFlash(...defaultParams);
|
2017-10-04 07:13:11 -04:00
|
|
|
|
2019-10-01 20:06:26 -04:00
|
|
|
document.querySelector('.flash-alert .js-close-icon').click();
|
2017-10-04 07:13:11 -04:00
|
|
|
|
2018-10-17 03:13:26 -04:00
|
|
|
expect(document.querySelector('.flash-alert')).toBeNull();
|
2018-01-19 04:38:34 -05:00
|
|
|
|
2018-10-17 03:13:26 -04:00
|
|
|
expect(document.body.className).not.toContain('flash-shown');
|
2017-10-04 07:13:11 -04:00
|
|
|
});
|
|
|
|
|
|
|
|
describe('with actionConfig', () => {
|
|
|
|
it('adds action link', () => {
|
2021-03-16 11:11:17 -04:00
|
|
|
const newActionConfig = { title: 'test' };
|
|
|
|
deprecatedCreateFlash(
|
|
|
|
message,
|
|
|
|
type,
|
|
|
|
parent,
|
|
|
|
newActionConfig,
|
|
|
|
fadeTransition,
|
|
|
|
addBodyClass,
|
|
|
|
);
|
2018-10-17 03:13:26 -04:00
|
|
|
|
|
|
|
expect(document.querySelector('.flash-action')).not.toBeNull();
|
2017-10-04 07:13:11 -04:00
|
|
|
});
|
|
|
|
|
|
|
|
it('calls actionConfig clickHandler on click', () => {
|
2021-03-16 11:11:17 -04:00
|
|
|
const newActionConfig = {
|
2017-10-04 07:13:11 -04:00
|
|
|
title: 'test',
|
2020-05-11 11:09:37 -04:00
|
|
|
clickHandler: jest.fn(),
|
2017-10-04 07:13:11 -04:00
|
|
|
};
|
|
|
|
|
2021-03-16 11:11:17 -04:00
|
|
|
deprecatedCreateFlash(
|
|
|
|
message,
|
|
|
|
type,
|
|
|
|
parent,
|
|
|
|
newActionConfig,
|
|
|
|
fadeTransition,
|
|
|
|
addBodyClass,
|
|
|
|
);
|
2017-10-04 07:13:11 -04:00
|
|
|
|
|
|
|
document.querySelector('.flash-action').click();
|
|
|
|
|
2021-03-16 11:11:17 -04:00
|
|
|
expect(newActionConfig.clickHandler).toHaveBeenCalled();
|
2017-10-04 07:13:11 -04:00
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2017-10-13 05:35:40 -04:00
|
|
|
|
2020-08-20 05:09:55 -04:00
|
|
|
describe('createFlash', () => {
|
2020-08-11 08:09:55 -04:00
|
|
|
const message = 'test';
|
|
|
|
const type = 'alert';
|
|
|
|
const parent = document;
|
|
|
|
const fadeTransition = false;
|
|
|
|
const addBodyClass = true;
|
|
|
|
const defaultParams = {
|
|
|
|
message,
|
|
|
|
type,
|
|
|
|
parent,
|
|
|
|
actionConfig: null,
|
|
|
|
fadeTransition,
|
|
|
|
addBodyClass,
|
|
|
|
};
|
|
|
|
|
|
|
|
describe('no flash-container', () => {
|
|
|
|
it('does not add to the DOM', () => {
|
2020-08-20 05:09:55 -04:00
|
|
|
const flashEl = createFlash({ message });
|
2020-08-11 08:09:55 -04:00
|
|
|
|
|
|
|
expect(flashEl).toBeNull();
|
|
|
|
|
|
|
|
expect(document.querySelector('.flash-alert')).toBeNull();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('with flash-container', () => {
|
|
|
|
beforeEach(() => {
|
|
|
|
setFixtures(
|
|
|
|
'<div class="content-wrapper js-content-wrapper"><div class="flash-container"></div></div>',
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
|
|
|
afterEach(() => {
|
|
|
|
document.querySelector('.js-content-wrapper').remove();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('adds flash element into container', () => {
|
2020-08-20 05:09:55 -04:00
|
|
|
createFlash({ ...defaultParams });
|
2020-08-11 08:09:55 -04:00
|
|
|
|
|
|
|
expect(document.querySelector('.flash-alert')).not.toBeNull();
|
|
|
|
|
|
|
|
expect(document.body.className).toContain('flash-shown');
|
|
|
|
});
|
|
|
|
|
|
|
|
it('adds flash into specified parent', () => {
|
2020-08-20 05:09:55 -04:00
|
|
|
createFlash({ ...defaultParams, parent: document.querySelector('.content-wrapper') });
|
2020-08-11 08:09:55 -04:00
|
|
|
|
|
|
|
expect(document.querySelector('.content-wrapper .flash-alert')).not.toBeNull();
|
|
|
|
expect(document.querySelector('.content-wrapper').innerText.trim()).toEqual(message);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('adds container classes when inside content-wrapper', () => {
|
2020-08-20 05:09:55 -04:00
|
|
|
createFlash(defaultParams);
|
2020-08-11 08:09:55 -04:00
|
|
|
|
|
|
|
expect(document.querySelector('.flash-text').className).toBe('flash-text');
|
|
|
|
expect(document.querySelector('.content-wrapper').innerText.trim()).toEqual(message);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('does not add container when outside of content-wrapper', () => {
|
|
|
|
document.querySelector('.content-wrapper').className = 'js-content-wrapper';
|
2020-08-20 05:09:55 -04:00
|
|
|
createFlash(defaultParams);
|
2020-08-11 08:09:55 -04:00
|
|
|
|
|
|
|
expect(document.querySelector('.flash-text').className.trim()).toContain('flash-text');
|
|
|
|
});
|
|
|
|
|
|
|
|
it('removes element after clicking', () => {
|
2020-08-20 05:09:55 -04:00
|
|
|
createFlash({ ...defaultParams });
|
2020-08-11 08:09:55 -04:00
|
|
|
|
|
|
|
document.querySelector('.flash-alert .js-close-icon').click();
|
|
|
|
|
|
|
|
expect(document.querySelector('.flash-alert')).toBeNull();
|
|
|
|
|
|
|
|
expect(document.body.className).not.toContain('flash-shown');
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('with actionConfig', () => {
|
|
|
|
it('adds action link', () => {
|
2020-08-20 05:09:55 -04:00
|
|
|
createFlash({
|
2020-08-11 08:09:55 -04:00
|
|
|
...defaultParams,
|
|
|
|
actionConfig: {
|
|
|
|
title: 'test',
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
expect(document.querySelector('.flash-action')).not.toBeNull();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('calls actionConfig clickHandler on click', () => {
|
|
|
|
const actionConfig = {
|
|
|
|
title: 'test',
|
|
|
|
clickHandler: jest.fn(),
|
|
|
|
};
|
|
|
|
|
2020-08-20 05:09:55 -04:00
|
|
|
createFlash({ ...defaultParams, actionConfig });
|
2020-08-11 08:09:55 -04:00
|
|
|
|
|
|
|
document.querySelector('.flash-action').click();
|
|
|
|
|
|
|
|
expect(actionConfig.clickHandler).toHaveBeenCalled();
|
|
|
|
});
|
|
|
|
});
|
2021-04-29 11:10:07 -04:00
|
|
|
|
|
|
|
describe('additional behavior', () => {
|
|
|
|
describe('close', () => {
|
|
|
|
it('clicks the close icon', () => {
|
|
|
|
const flash = createFlash({ ...defaultParams });
|
|
|
|
const close = document.querySelector('.flash-alert .js-close-icon');
|
|
|
|
|
|
|
|
jest.spyOn(close, 'click');
|
|
|
|
flash.close();
|
|
|
|
|
|
|
|
expect(close.click.mock.calls.length).toBe(1);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2020-08-11 08:09:55 -04:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2017-10-13 05:35:40 -04:00
|
|
|
describe('removeFlashClickListener', () => {
|
2021-05-25 11:10:33 -04:00
|
|
|
let el;
|
|
|
|
|
|
|
|
describe('with close icon', () => {
|
|
|
|
beforeEach(() => {
|
|
|
|
el = document.createElement('div');
|
|
|
|
el.innerHTML = `
|
|
|
|
<div class="flash-container">
|
|
|
|
<div class="flash">
|
|
|
|
<div class="close-icon js-close-icon"></div>
|
|
|
|
</div>
|
2019-10-01 20:06:26 -04:00
|
|
|
</div>
|
2021-05-25 11:10:33 -04:00
|
|
|
`;
|
|
|
|
});
|
2017-10-13 05:35:40 -04:00
|
|
|
|
2021-05-25 11:10:33 -04:00
|
|
|
it('removes global flash on click', (done) => {
|
|
|
|
removeFlashClickListener(el, false);
|
2017-10-13 05:35:40 -04:00
|
|
|
|
2021-05-25 11:10:33 -04:00
|
|
|
el.querySelector('.js-close-icon').click();
|
2017-10-13 05:35:40 -04:00
|
|
|
|
2021-05-25 11:10:33 -04:00
|
|
|
setImmediate(() => {
|
|
|
|
expect(document.querySelector('.flash')).toBeNull();
|
2017-10-13 05:35:40 -04:00
|
|
|
|
2021-05-25 11:10:33 -04:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('without close icon', () => {
|
|
|
|
beforeEach(() => {
|
|
|
|
el = document.createElement('div');
|
|
|
|
el.innerHTML = `
|
|
|
|
<div class="flash-container">
|
|
|
|
<div class="flash">
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
`;
|
|
|
|
});
|
2017-10-13 05:35:40 -04:00
|
|
|
|
2021-05-25 11:10:33 -04:00
|
|
|
it('does not throw', () => {
|
|
|
|
expect(() => removeFlashClickListener(el, false)).not.toThrow();
|
2017-10-13 05:35:40 -04:00
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2017-10-04 07:13:11 -04:00
|
|
|
});
|