import './limit-commit-title-length.css'; import select from 'select-dom'; import features from '../libs/features'; import onPrMergePanelOpen from '../libs/on-pr-merge-panel-open'; function init(): void { const inputField = select([ '#commit-summary-input', // Commit title on edit file page '#merge_title_field' // PR merge message field ].join(',')); // The input field doesn't exist on PR merge page if you don't have access to that repo if (!inputField) { return; } inputField.addEventListener('input', () => { inputField.setCustomValidity(inputField.value.length > 72 ? `The title should be maximum 72 characters, but is ${inputField.value.length}` : ''); }); // For PR merges, GitHub restores any saved commit messages on page load // Triggering input event for these fields immediately validates the form onPrMergePanelOpen(() => { inputField.dispatchEvent(new Event('input')); }); } features.add({ id: __featureName__, description: 'Limits the commit title fields to 72 characters.', screenshot: 'https://user-images.githubusercontent.com/37769974/60379478-106b3280-9a51-11e9-88b9-0e3607f214cd.gif', load: features.onAjaxedPages, include: [ features.isPRConversation, features.isEditingFile ], init });