2022-02-21 21:03:07 +00:00
|
|
|
const mustache = require( 'mustache' );
|
|
|
|
const fs = require( 'fs' );
|
|
|
|
const stickyHeaderTemplate = fs.readFileSync( 'includes/templates/StickyHeader.mustache', 'utf8' );
|
|
|
|
const buttonTemplate = fs.readFileSync( 'includes/templates/Button.mustache', 'utf8' );
|
2022-02-18 16:47:44 +00:00
|
|
|
const sticky = require( '../../resources/skins.vector.es6/stickyHeader.js' );
|
2022-11-02 23:00:04 +00:00
|
|
|
const { userLinksHTML, dropdownPartials } = require( './userLinksData.js' );
|
2022-02-21 21:03:07 +00:00
|
|
|
|
|
|
|
const defaultButtonsTemplateData = [ {
|
|
|
|
href: '#',
|
|
|
|
id: 'ca-talk-sticky-header',
|
|
|
|
event: 'talk-sticky-header',
|
|
|
|
icon: 'wikimedia-speechBubbles',
|
|
|
|
'is-quiet': true,
|
|
|
|
'tab-index': '-1',
|
|
|
|
class: 'sticky-header-icon'
|
|
|
|
}, {
|
|
|
|
href: '#',
|
|
|
|
id: 'ca-history-sticky-header',
|
|
|
|
event: 'history-sticky-header',
|
|
|
|
icon: 'wikimedia-history',
|
|
|
|
'is-quiet': true,
|
|
|
|
'tab-index': '-1',
|
|
|
|
class: 'sticky-header-icon'
|
|
|
|
}, {
|
|
|
|
href: '#',
|
|
|
|
id: 'ca-watchstar-sticky-header',
|
|
|
|
event: 'watch-sticky-header',
|
|
|
|
icon: 'wikimedia-star',
|
|
|
|
'is-quiet': true,
|
|
|
|
'tab-index': '-1',
|
|
|
|
class: 'sticky-header-icon mw-watchlink'
|
|
|
|
} ];
|
|
|
|
|
|
|
|
const editButtonsTemplateData = [ {
|
|
|
|
href: '#',
|
|
|
|
id: 'ca-ve-edit-sticky-header',
|
|
|
|
event: 've-edit-sticky-header',
|
|
|
|
icon: 'wikimedia-edit',
|
|
|
|
'is-quiet': true,
|
|
|
|
'tab-index': '-1',
|
|
|
|
class: 'sticky-header-icon'
|
|
|
|
}, {
|
|
|
|
href: '#',
|
|
|
|
id: 'ca-edit-sticky-header',
|
|
|
|
event: 'wikitext-edit-sticky-header',
|
|
|
|
icon: 'wikimedia-wikiText',
|
|
|
|
'is-quiet': true,
|
|
|
|
'tab-index': '-1',
|
|
|
|
class: 'sticky-header-icon'
|
|
|
|
}, {
|
|
|
|
href: '#',
|
|
|
|
id: 'ca-viewsource-sticky-header',
|
|
|
|
event: 'wikimedia-editLock',
|
|
|
|
icon: 'wikimedia-star',
|
|
|
|
'is-quiet': true,
|
|
|
|
'tab-index': '-1',
|
|
|
|
class: 'sticky-header-icon'
|
|
|
|
} ];
|
|
|
|
|
|
|
|
const templateData = {
|
2023-01-06 01:21:22 +00:00
|
|
|
'data-sticky-header-toc-dropdown': {
|
2022-10-20 21:32:07 +00:00
|
|
|
id: 'vector-sticky-header-toc',
|
2022-07-01 20:19:57 +00:00
|
|
|
class: 'mw-portlet mw-portlet-sticky-header-toc vector-sticky-header-toc',
|
|
|
|
'html-items': '',
|
|
|
|
'html-vector-menu-checkbox-attributes': 'tabindex="-1"',
|
|
|
|
'html-vector-menu-heading-attributes': 'tabindex="-1"',
|
|
|
|
'heading-class': 'mw-ui-button mw-ui-quiet mw-ui-icon mw-ui-icon-element mw-ui-icon-wikimedia-listBullet'
|
|
|
|
},
|
2022-02-21 21:03:07 +00:00
|
|
|
'data-primary-action': {
|
|
|
|
id: 'p-lang-btn-sticky-header',
|
|
|
|
class: 'mw-interlanguage-selector',
|
|
|
|
'is-quiet': true,
|
|
|
|
tabindex: '-1',
|
|
|
|
label: '0 languages',
|
|
|
|
'html-vector-button-icon': '<span class="mw-ui-icon mw-ui-icon-wikimedia-language"></span>',
|
|
|
|
event: 'ui.dropdown-p-lang-btn-sticky-header'
|
|
|
|
},
|
|
|
|
'data-button-start': {
|
|
|
|
label: 'search',
|
|
|
|
icon: 'wikimedia-search',
|
|
|
|
'is-quiet': true,
|
|
|
|
tabindex: '-1',
|
|
|
|
class: 'vector-sticky-header-search-toggle',
|
|
|
|
event: 'ui.vector-sticky-search-form.icon'
|
|
|
|
},
|
|
|
|
'data-search': {},
|
|
|
|
'data-buttons': defaultButtonsTemplateData.concat( editButtonsTemplateData )
|
|
|
|
};
|
|
|
|
|
2022-10-20 21:32:07 +00:00
|
|
|
const renderedHTML = mustache.render(
|
|
|
|
stickyHeaderTemplate, templateData, Object.assign( {}, dropdownPartials, {
|
|
|
|
Button: buttonTemplate,
|
|
|
|
SearchBox: '<div> </div>' // ignore SearchBox for this test
|
|
|
|
} ) );
|
2022-02-21 21:03:07 +00:00
|
|
|
|
|
|
|
beforeEach( () => {
|
|
|
|
document.body.innerHTML = renderedHTML;
|
|
|
|
} );
|
|
|
|
|
|
|
|
test( 'Sticky header renders', () => {
|
|
|
|
expect( document.body.innerHTML ).toMatchSnapshot();
|
|
|
|
} );
|
2022-02-18 16:47:44 +00:00
|
|
|
|
|
|
|
describe( 'sticky header', () => {
|
|
|
|
test( 'prepareUserMenu removes gadgets from dropdown', async () => {
|
|
|
|
const menu = document.createElement( 'div' );
|
2022-02-21 21:03:07 +00:00
|
|
|
menu.innerHTML = userLinksHTML;
|
|
|
|
const userMenu = /** @type {Element} */ ( menu.querySelector( '#' + sticky.USER_MENU_ID ) );
|
|
|
|
const newMenu = sticky.prepareUserMenu( userMenu );
|
2022-02-18 16:47:44 +00:00
|
|
|
// check classes have been updated and removed.
|
2022-02-21 21:03:07 +00:00
|
|
|
expect( userMenu.querySelectorAll( '.user-links-collapsible-item' ).length > 0 ).toBeTruthy();
|
|
|
|
expect( userMenu.querySelectorAll( '.mw-list-item-js' ).length > 0 ).toBeTruthy();
|
2022-02-18 16:47:44 +00:00
|
|
|
expect( newMenu.querySelectorAll( '.user-links-collapsible-item' ).length ).toBe( 0 );
|
|
|
|
expect( newMenu.querySelectorAll( '.mw-list-item-js' ).length ).toBe( 0 );
|
|
|
|
} );
|
|
|
|
} );
|