| | |
| | |
| | |
| | |
| |
|
| | const buttonSelectors = [ |
| | '.menu_button', |
| | '.right_menu_button', |
| | '.mes_button', |
| | '.drawer-icon', |
| | '.inline-drawer-icon', |
| | '.swipe_left', |
| | '.swipe_right', |
| | '.character_select', |
| | '.tags .tag', |
| | '.jg-menu .jg-button', |
| | '.bg_example .mobile-only-menu-toggle', |
| | '.paginationjs-pages li a', |
| | ].join(', '); |
| |
|
| | const listSelectors = [ |
| | '.options-content', |
| | '.list-group', |
| | '#rm_print_characters_block', |
| | '#rm_group_members', |
| | '#rm_group_add_members', |
| | '.tag_view_list_tags', |
| | '.secretKeyManagerList', |
| | '.recentChatList', |
| | '.dataMaidCategoryContent', |
| | '#userList', |
| | '.bg_list', |
| | ].join(', '); |
| |
|
| | const listItemSelectors = [ |
| | '.options-content .list-group-item', |
| | '.list-group .list-group-item', |
| | '#rm_print_characters_block .entity_block', |
| | '#rm_group_members .group_member', |
| | '#rm_group_add_members .group_member', |
| | '.tag_view_list_tags .tag_view_item', |
| | '.secretKeyManagerList .secretKeyManagerItem', |
| | '.recentChatList .recentChat', |
| | '.dataMaidCategoryContent .dataMaidItem', |
| | '#userList .userSelect', |
| | '.bg_list .bg_example', |
| | ].join(', '); |
| |
|
| | const toolbarSelectors = [ |
| | '.jg-menu', |
| | ].join(', '); |
| |
|
| | const tabListSelectors = [ |
| | '#bg_tabs .bg_tabs_list', |
| | ].join(', '); |
| |
|
| | const tabItemSelectors = [ |
| | '#bg_tabs .bg_tabs_list .bg_tab_button', |
| | ].join(', '); |
| |
|
| | |
| | const a11yRules = { |
| | [buttonSelectors]: (element) => { |
| | element.setAttribute('role', 'button'); |
| | }, |
| | [listSelectors]: (element) => { |
| | element.setAttribute('role', 'list'); |
| | }, |
| | [listItemSelectors]: (element) => { |
| | element.setAttribute('role', 'listitem'); |
| | }, |
| | [toolbarSelectors]: (element) => { |
| | element.setAttribute('role', 'toolbar'); |
| | }, |
| | [tabListSelectors]: (element) => { |
| | element.setAttribute('role', 'tablist'); |
| | }, |
| | [tabItemSelectors]: (element) => { |
| | element.setAttribute('role', 'tab'); |
| | }, |
| | '#toast-container .toast': (element) => { |
| | element.setAttribute('role', 'status'); |
| | }, |
| | }; |
| |
|
| | |
| | |
| | |
| | |
| | function applyA11yRules(element) { |
| | try { |
| | for (const [selector, rule] of Object.entries(a11yRules)) { |
| | |
| | if (element.matches(selector)) { |
| | rule(element); |
| | } |
| | |
| | element.querySelectorAll(selector).forEach(rule); |
| | } |
| | } catch (error) { |
| | console.error('Error applying accessibility rules to element:', element, error); |
| | } |
| | } |
| |
|
| | function setAccessibilityObserver() { |
| | |
| | applyA11yRules(document.body); |
| |
|
| | |
| | const observer = new MutationObserver((mutationsList) => { |
| | for (const mutation of mutationsList) { |
| | if (mutation.type === 'childList') { |
| | for (const addedNode of mutation.addedNodes) { |
| | if (addedNode instanceof Element && addedNode.nodeType === Node.ELEMENT_NODE) { |
| | applyA11yRules(addedNode); |
| | } |
| | } |
| | } |
| | } |
| | }); |
| |
|
| | observer.observe(document.body, { |
| | childList: true, |
| | subtree: true, |
| | }); |
| | } |
| |
|
| | export function initAccessibility() { |
| | setAccessibilityObserver(); |
| | } |
| |
|