MediaWiki:Gadget-summaryLock.js

/*!
 * Zablokowanie opisów zmian.
 * Używać w wyjątkowych przypadkach.
 */

/*
	Instrukcja:
	1. Zablokuj /common.js danego użytkownika.
	2. Wstaw do /common.js ładowanie skryptu blokującego (jeśli nie masz uprawnień poproś [[WP:AI]] o asystę):
		mw.loader.load('https://pl.wikipedia.org/wiki/MediaWiki:Gadget-summaryLock.js?action=raw&ctype=text/javascript');
	3. Poinformuj użytkownika o blokadzie (powinno się zwrócić uwagę - jak zawsze - że obchodzenie blokady może skutkować je wydłużeniem lub zaostrzeniem).
*/

/** CSS at any time head is ready. */
function summaryLockCss() {
	const style = document.createElement('style');
	style.textContent = `
		body #wpSummaryWidget {
			display: flex !important;
		}
		body #wpSummary {
			pointer-events: none  !important;
		}
		#wpSummaryWidget > .summary-clear-btn {
			flex-shrink: 0;
			padding: 4px 8px;
			margin-left: 8px;
			cursor: pointer;
			font-size: 0.9em;
		}
	`;
	document.head.appendChild(style);
}
/** Init events at any time. */
function dynamicLockInit() {
	let lock = (e) => {
		if (e.target.id === 'wpSummary') {
			e.target.readOnly = true;
		}
	}
	document.addEventListener('focusin', lock);
	document.addEventListener('input', lock);
}

let summaryLockDone = false;
/** Init input when it is added to page. */
function summaryLockInput() {
	if (summaryLockDone) return;
	const summaryInput = document.querySelector('#wpSummary');
	if (!summaryInput) return;
	
	summaryInput.readOnly = true;

	summaryLockDone = true;
	const clearButton = document.createElement('button');
	clearButton.textContent = '❌';
	clearButton.title = 'czyść';
	clearButton.type = 'button';
	clearButton.className = 'summary-clear-btn';
	clearButton.addEventListener('click', () => {
		summaryInput.value = '';
	});
	summaryInput.parentNode.insertBefore(clearButton, summaryInput.nextSibling);
}

$(function(){
	summaryLockCss();
	dynamicLockInit();
	summaryLockInput();
});
// backup	
mw.hook('userjs.przyciskiOpis.gotowe').add(()=>{
	summaryLockInput();
});

Content Disclaimer

Informasi ini disarikan dari Wikipedia dan disajikan kembali untuk tujuan edukasi. Konten tersedia di bawah lisensi CC BY-SA 3.0. Kami tidak bertanggung jawab atas ketidakakuratan data yang bersumber dari kontribusi publik tersebut.

  1. The information displayed on this website is sourced in part or in whole from Wikipedia and has been adapted for the purpose of restating it. We strive to provide accurate and relevant information, however:
  2. There is no guarantee of absolute accuracy. Wikipedia is an open, collaborative project that can be edited by anyone, so information is subject to change.
  3. It is not intended to constitute professional advice. The content displayed is for informational and educational purposes only. For important decisions (e.g., medical, legal, or financial), please consult a professional.
  4. Content copyright. Wikipedia is licensed under the Creative Commons Attribution-ShareAlike License (CC BY-SA). This means that content may be reused with appropriate attribution and shared under a similar license.
  5. Responsible use. Any risk arising from the use of information from this website is entirely the responsibility of the user.
Kembali kehalaman sebelumnya