MediaWiki:MarcEditorDynamicLinks.js: mudanças entre as edições

Ir para navegação Ir para pesquisar
sem sumário de edição
Sem resumo de edição
Etiqueta: Revertido
Sem resumo de edição
Etiqueta: Reversão manual
/*jshint esversion: 6 */
function main() {
let tag = '';
let tagFromDropdown = '';
 
function createMarcFieldHelpLink() {
const tagInputs = document.body.querySelectorAll('.tagInput');
tagInputs.forEach((elem) => {
const marcFieldHelpLink = document.createElement('a');
marcFieldHelpLink.setAttribute('target', '_blank');
marcFieldHelpLink.innerText = '(?)';
 
const marcFieldHelpLinkClass = elem.closest('table')
.querySelector('.marcFieldHelpLink');
marcFieldHelpLinkClass.innerHTML = "";
marcFieldHelpLinkClass.appendChild(marcFieldHelpLink);
 
// find the tag value from the chosen dropdown
marcFieldHelpLinkClass.addEventListener('mouseover', (event) => {
tagFromDropdown = event.target.closest('.instanceMain')
.querySelector('.oo-ui-inputWidget-input')
.getAttribute('title') || '00x';
tagFromDropdown = tagFromDropdown.substring(0, 3);
marcFieldHelpLink.setAttribute(
'title',
`Documentação do campo ${tagFromDropdown}`
);
// build the URL
if (window.location.href.match(/A\d{6}/)
|| window.location.href.match(/AutRecord/)) {
marcFieldHelpLink.setAttribute(
'href',
`http://marc.febab.org/a${tagFromDropdown}`
);
} else {
marcFieldHelpLink.setAttribute(
'href',
`https://www.loc.gov/marc/bibliographic/bd${tagFromDropdown}.html`
);
}
});
});
}
 
function createAuthorityLinks() {
const inputs = document.body.querySelectorAll('.instanceMain div table .oo-ui-inputWidget-input');
inputs.forEach((elem) => {
const authorityLink = document.createElement('a');
authorityLink.setAttribute('title', 'Abre uma nova aba para criar ou editar um registro de autoridade');
authorityLink.setAttribute('target', '_blank');
authorityLink.innerText = 'Criar registro de autoridade';
authorityLink.style.display = 'none';
 
const createAuthorityLink = elem.closest('table')
.querySelector('.createAuthorityLink');
createAuthorityLink.innerHTML = "";
createAuthorityLink.appendChild(authorityLink);
 
const pattern1 = /\$0\sA\d{6}/;
const pattern2 = /\$0\s\(BN\)\d{9}/;
 
elem.addEventListener('focusout', () => {
// if already recorded
if (pattern1.test(elem.value)) {
// build the URL for Wikincat aut record edit
authorityLink.innerText = 'Editar autoridade';
authorityLink.setAttribute(
'href',
`/wiki/Special:FormEdit/AutRecord/Autoridade:${
elem.value.match(/A\d{6}/)}`
);
} else if (pattern2.test(elem.value)) {
// build the URL for BN aut record view
authorityLink.innerText = 'Ver registro de autoridade na BN';
authorityLink.setAttribute(
'href',
`http://acervo.bn.gov.br/sophia_web/autoridade/detalhe/${
elem.value.match(/\d{9}/)}`
);
} else {
// find the tag value from the chosen dropdown
tagFromDropdown = elem.closest('.instanceMain')
.querySelector('.oo-ui-inputWidget-input')
.getAttribute('title') || '00x';
tagFromDropdown = tagFromDropdown.substring(0, 3);
// find the tag value from checked radio button
marcFieldHelpLink.setAttribute(
 
'title',
const tagFromRadio = elem.closest('.instanceMain')
`Documentação do campo ${tagFromDropdown}`
.querySelector('input[origname=\'Field[authorityType]\']:checked')
);
// build the URL.value;
 
if (window.location.href.match(/A\d{6}/)
const authorityTypes = {
|| window.location.href.match(/AutRecord/)) {
marcFieldHelpLink.setAttribute('Pessoa': '100',
'Entidade coletiva': 'href110',
'Evento': '111',
`http://marc.febab.org/a${tagFromDropdown}`
);'Título uniforme': '130',
} else {'Tópico': '150',
marcFieldHelpLink.setAttribute('Local': '151'
'href',};
 
`https://www.loc.gov/marc/bibliographic/bd${tagFromDropdown}.html`
if (tagFromRadio in authorityTypes); {
tag = authorityTypes[tagFromRadio];
}
 
});
// declare the indicators default values
});
let ind1 = elem.closest('.instanceMain')
}
.querySelector('select[origname=\'Field[ind1]\'] option:checked')
.value;
function createAuthorityLinks() {
const inputs let ind2 = documentelem.body.querySelectorAllclosest('.instanceMain div table .oo-ui-inputWidget-input');
.querySelector('select[origname=\'Field[ind2]\'] option:checked')
inputs.forEach((elem) => {
const authorityLink = document .createElement('a')value;
 
authorityLink.setAttribute('title', 'Abre uma nova aba para criar ou editar um registro de autoridade');
// declare the 008 field default values
authorityLink.setAttribute('target', '_blank');
let directOrIndirectGeogSubdiv = ''; // 06
authorityLink.innerText = 'Criar registro de autoridade';
authorityLink.style.display let kindOfRecord = 'none'; // 09
let descriptiveCatalogingRules = 'c'; // 10
const createAuthorityLink let subjectHeadingSystem = elem.closest('tablen'); // 11
.querySelector(let typeOfSeries = '.createAuthorityLinkn'); // 12
createAuthorityLink.innerHTML let numberedOrUnnumberedSeries = ""'n'; // 13
let headingUseMainOrAddedEntry = 'a'; // 14
createAuthorityLink.appendChild(authorityLink);
let headingUseSubjectAddedEntry = 'a'; // 15
const pattern1 let headingUseSeriesAddedEntry = 'b'; /\$0\sA\d{6}/; 16
let typeOfSubjectSubdivision = 'n'; // 17
const pattern2 = /\$0\s\(BN\)\d{9}/;
let undifferentiatedPersonalName = 'n'; // 32
let levelOfEstablishment = 'a'; // 33
elem.addEventListener('focusout', () => {
 
// if already recorded
// set the 008 field and indicadors specific values
if (pattern1.test(elem.value)) {
if (tag //=== build'100') the URL for Wikincat aut record edit{
authorityLink.innerTextundifferentiatedPersonalName = 'Editar autoridadea';
authorityLink.setAttribute(ind2 = '';
'href',}
if (tag === '110') {
`/wiki/Special:FormEdit/AutRecord/Autoridade:${
// in case of elem.value.match(/A\d{6}/)}`autocomplete of 260
if (tagFromDropdown === '260'); {
directOrIndirectGeogSubdiv = 'n';
} else if (pattern2.test(elem.value)) {
// build thekindOfRecord URL= for BN aut record view'b';
authorityLink.innerText headingUseMainOrAddedEntry = 'Ver registro de autoridade na BNb';
authorityLink.setAttribute( headingUseSubjectAddedEntry = 'b';
levelOfEstablishment = 'hrefn',;
ind1 = '1';
`http://acervo.bn.gov.br/sophia_web/autoridade/detalhe/${
elem.value.match(/\d{9}/)}`
);
} else {
// find the tag value from the chosen dropdown
tagFromDropdown = elem.closest('.instanceMain')
.querySelector('.oo-ui-inputWidget-input')
.getAttribute('title') || '00x';
tagFromDropdown = tagFromDropdown.substring(0, 3);
// find the tag value from checked radio button
const tagFromRadio = elem.closest('.instanceMain')
.querySelector('input[origname=\'Field[authorityType]\']:checked')
.value;
const authorityTypes = {
'Pessoa': '100',
'Entidade coletiva': '110',
'Evento': '111',
'Título uniforme': '130',
'Tópico': '150',
'Local': '151'
};
if (tagFromRadio in authorityTypes) {
tag = authorityTypes[tagFromRadio];
}
ind2 = '';
}
// declare the indicators default values
if let ind1(tag === elem.closest('.instanceMain111') {
ind1 = '2';
.querySelector('select[origname=\'Field[ind1]\'] option:checked')
ind2 = .value'';
}
let ind2 = elem.closest('.instanceMain')
if (tag === '130') {
.querySelector('select[origname=\'Field[ind2]\'] option:checked')
typeOfSeries = .value'a';
numberedOrUnnumberedSeries = 'b';
headingUseSeriesAddedEntry = 'a';
// declare the 008 field default values
letif directOrIndirectGeogSubdiv(tagFromDropdown === '130'; // 06
let kindOfRecord || tagFromDropdown === '630'; // 09
let descriptiveCatalogingRules || tagFromDropdown === 'c730'; //) 10{
let subjectHeadingSystem ind2 = 'n'ind1; // 11an inverted value happens here, see and
let typeOfSeries ind1 = 'n'; // 12compare bib. and auth. 130 MARC definitions
let numberedOrUnnumberedSeries = 'n'; // 13
let headingUseMainOrAddedEntry = 'a'; // 14
let headingUseSubjectAddedEntry = 'a'; // 15
let headingUseSeriesAddedEntry = 'b'; // 16
let typeOfSubjectSubdivision = 'n'; // 17
let undifferentiatedPersonalName = 'n'; // 32
let levelOfEstablishment = 'a'; // 33
// set the 008 field and indicadors specific values
if (tag === '100') {
undifferentiatedPersonalName = 'a';
ind2 = '';
}
if (tagind1 === '110') {;
// in case of autocomplete of 260}
if (tag === '150' if|| (tagFromDropdowntag === '260151') {
directOrIndirectGeogSubdivdescriptiveCatalogingRules = 'n';
kindOfRecordsubjectHeadingSystem = 'bz';
headingUseMainOrAddedEntry = 'b';
ind1 = ''; // 150 and 151 indicators must be empty in
headingUseSubjectAddedEntry = 'b';
levelOfEstablishmentind2 = 'n'; // authority MARC records
if ind1(tag === '1151';) {
}typeOfSubjectSubdivision = 'd';
ind2 = '';
}
if (tag === '111') {}
// build the ind1 = '2';URL
const ind2autRecordParams = '';{
}AutRecord: {
if (tag === '130') {directOrIndirectGeogSubdiv,
typeOfSeries = 'a';kindOfRecord,
numberedOrUnnumberedSeries = 'b';descriptiveCatalogingRules,
headingUseSeriesAddedEntry = 'a';subjectHeadingSystem,
if (tagFromDropdown === '130'typeOfSeries,
|| tagFromDropdown === '630'numberedOrUnnumberedSeries,
|| tagFromDropdown === '730') {headingUseMainOrAddedEntry,
ind2 = ind1; // an inverted value happens hereheadingUseSubjectAddedEntry, see and
headingUseSeriesAddedEntry,
ind1 = ''; // compare bib. and auth. 130 MARC definitions
}typeOfSubjectSubdivision,
ind1 = '';undifferentiatedPersonalName,
} levelOfEstablishment
if (tag === '150' || tag === '151') {},
Field: descriptiveCatalogingRules = 'n';{
subjectHeadingSystem = 'z1';: {
headingUseMainOrAddedEntry = tag: 'b040';,
ind1 = data: '';$a //BR-FlWIK 150$b andpor 151$c indicatorsBR-FlWIK must$d be empty inBR-FlUSC'
ind2 = ''; // authority MARC records
if (tag === '151') {
typeOfSubjectSubdivision = 'd';
}
}
// build the URL
const autRecordParams = {
AutRecord: {
directOrIndirectGeogSubdiv,
kindOfRecord,
descriptiveCatalogingRules,
subjectHeadingSystem,
typeOfSeries,
numberedOrUnnumberedSeries,
headingUseMainOrAddedEntry,
headingUseSubjectAddedEntry,
headingUseSeriesAddedEntry,
typeOfSubjectSubdivision,
undifferentiatedPersonalName,
levelOfEstablishment
},
Field'2': {
'1': {tag,
tag: '040'ind1,
data: '$a BR-FlWIK $b por $c BR-FlWIK $d BR-FlUSC'ind2,
},data: elem.value
'2': {},
'3': tag,{
tag: ind1'670',
data: '$a ind2,'
data: elem.value
},
'3': {
tag: '670',
data: '$a '
}
}
};
};
 
const url = new URL(`${window.location.origin}/wiki/Special:FormEdit/AutRecord`);
const url = new URL(`${window.location.origin}/wiki/Special:FormEdit/AutRecord`);
// function to transform a 3rd level object to URL query strings
// function constto makeUrlParamstransform =a (obj)3rd =>level {object to URL query strings
for (const [key,makeUrlParams value]= of Object.entries(obj)) => {
for (const [key, value] ifof Object.entries(typeof value === 'object'obj)) {
forif (consttypeof [key2,value value2]=== of Object.entries(value)'object') {
for (const [key2, value2] ifof Object.entries(typeof value2 === 'object'value)) {
forif (consttypeof [key3,value2 value3]=== of Object.entries(value2)'object') {
for (const url.searchParams.set(`${key}[${key2}][${key3}]`, value3] of Object.entries(value2);) {
url.searchParams.set(`${key}[${key2}][${key3}]`, value3);
} else {
url.searchParams.set(`${key}[${key2}]`, value2);
}
} else {
url.searchParams.set(`${key}[${key2}]`, value2);
}
} else {
url.searchParams.set(key, value);
}
} else {
url.searchParams.set(key, value);
}
};
makeUrlParams(autRecordParams)};
makeUrlParams(autRecordParams);
authorityLink.innerText = 'Criar registro de autoridade';
authorityLink.innerText = 'Criar registro de autoridade';
authorityLink.setAttribute('href', url.pathname + url.search);
authorityLink.setAttribute('href', url.pathname + url.search);
}
}
authorityLink.style.display = '';
})authorityLink.style.display = '';
});
});
}
 
function rmCarriageReturn() {
function rmCarriageReturn() {
const textareas = document.body.querySelectorAll('textarea');
const textareas textareas= document.forEach(body.querySelectorAll('textarea') => {;
textareas.forEach((textarea) => {
const element = textarea;
const element.value = element.value.replace('
', '')textarea;
element.value = element.value.replace('
', '');
});
}
 
function rmHtmlTags() {
const textareas = document.body.querySelectorAll('textarea');
textareas.forEach((textarea) => {
const element = textarea;
element.value = element.value.replace(/<(?:"[^"]*"['"]*|'[^']*'['"]*|[^'">])+>/g, '');
});
}
 
function rmTxtFromHiddenFields() {
const spans = document.body.querySelectorAll('span.hiddenByPF');
spans.forEach((elem) => {
elem.querySelectorAll('.input.oo-ui-inputWidget-input').forEach((input) => {
const element = input;
element.value = '';
});
elem.querySelectorAll('textarea').forEach((input) => {
}
const element = input;
element.value = '';
function rmHtmlTags() {
const textareas = document.body.querySelectorAll('textarea');
textareas.forEach((textarea) => {
const element = textarea;
element.value = element.value.replace(/<(?:"[^"]*"['"]*|'[^']*'['"]*|[^'">])+>/g, '');
});
}
function rmTxtFromHiddenFields() {
const spans = document.body.querySelectorAll('span.hiddenByPF');
spans.forEach((elem) => {
elem.querySelectorAll('.input.oo-ui-inputWidget-input').forEach((input) => {
const element = input;
element.value = '';
});
elem.querySelectorAll('textarea').forEach((input) => {
const element = input;
element.value = '';
});
});
}
function normalizeInput() {
const instanceMains = document.body.querySelectorAll('.instanceMain div table');
instanceMains.forEach((instanceMain) => {
instanceMain.querySelectorAll('.oo-ui-inputWidget-input').forEach((input) => {
const normalizedInput = input;
normalizedInput.value = normalizedInput.value
// "$a Bar \n$b Baz" > " $a Bar $b Baz"
.replace(/\s*(\$[a-z0-8])\s*/g, ' $1 ')
// "$a Bar\nFoo" > "$a Bar Foo" ou "$a Bar Foo" > "$a Bar Foo"
.replace(/\n|\s\s+|\t/g, ' ')
// replace "|" by "%7C" (Ex.: http://viaf.org/processed/WKP|Q2484404)
.replace('|', '%7C');
});
instanceMain.querySelectorAll('textarea').forEach((textarea) => {
const normalizedInput = textarea;
textarea.value = normalizedInput.value
// "$a Bar \n$b Baz" > " $a Bar $b Baz"
.replace(/\s*(\$[a-z0-8])\s*/g, ' $1 ')
// "$a Bar\nFoo" > "$a Bar Foo" ou "$a Bar Foo" > "$a Bar Foo"
.replace(/\n|\s\s+|\t/g, ' ')
// replace "|" by "%7C" (Ex.: http://viaf.org/processed/WKP|Q2484404)
.replace('|', '%7C');
});
});
}
// calls main functions
createMarcFieldHelpLink();
createAuthorityLinks();
rmCarriageReturn();
rmHtmlTags();
// Como instâncias do formulário são criadas pelo botão "Adicionar campo",
// é necessário observar o DOM a partir da classe ".multipleTemplateList".
// Toda vez que o DOM é alterado (mais especificamente, quando uma nova
// child de ".multipleTemplateList" é criada), as funções
// createMarcFieldHelpLink() e createAuthorityLinks() são novamente chamadas.
// https://developer.mozilla.org/en-US/docs/Web/API/MutationObserver
// create an observer instance
const observer = new MutationObserver((mutations) => {
mutations.forEach((mutation) => {
const newNodes = mutation.addedNodes; // DOM NodeList
if (newNodes.length !== 0) { // if there are new nodes added
createMarcFieldHelpLink();
createAuthorityLinks();
}
});
});
}
 
// select the target node
function normalizeInput() {
const target = document.querySelector('.multipleTemplateList');
const instanceMains = document.body.querySelectorAll('.instanceMain div table');
instanceMains.forEach((instanceMain) => {
// configuration of the observer
instanceMain.querySelectorAll('.oo-ui-inputWidget-input').forEach((input) => {
const config = {
const normalizedInput = input;
childList: true,
normalizedInput.value = normalizedInput.value
attributes: false,
// "$a Bar \n$b Baz" > " $a Bar $b Baz"
subtree: false,
.replace(/\s*(\$[a-z0-8])\s*/g, ' $1 ')
};
// "$a Bar\nFoo" > "$a Bar Foo" ou "$a Bar Foo" > "$a Bar Foo"
.replace(/\n|\s\s+|\t/g, ' ')
// pass in the target node, as well as the observer options
// replace "|" by "%7C" (Ex.: http://viaf.org/processed/WKP|Q2484404)
observer.observe(target, config);
.replace('|', '%7C');
});
// when clicking save...
instanceMain.querySelectorAll('textarea').forEach((textarea) => {
const saveBtn = document.body.querySelector('#wpSave');
const normalizedInput = textarea;
saveBtn.addEventListener('click', () => {
textarea.value = normalizedInput.value
observer.disconnect();
// "$a Bar \n$b Baz" > " $a Bar $b Baz"
rmTxtFromHiddenFields();
.replace(/\s*(\$[a-z0-8])\s*/g, ' $1 ')
rmCarriageReturn();
// "$a Bar\nFoo" > "$a Bar Foo" ou "$a Bar Foo" > "$a Bar Foo"
rmHtmlTags();
.replace(/\n|\s\s+|\t/g, ' ')
normalizeInput();
// replace "|" by "%7C" (Ex.: http://viaf.org/processed/WKP|Q2484404)
.replace('|', '%7C');
});
});
}
 
// calls main functions
createMarcFieldHelpLink();
createAuthorityLinks();
rmCarriageReturn();
rmHtmlTags();
 
// Como instâncias do formulário são criadas pelo botão "Adicionar campo",
// é necessário observar o DOM a partir da classe ".multipleTemplateList".
// Toda vez que o DOM é alterado (mais especificamente, quando uma nova
// child de ".multipleTemplateList" é criada), as funções
// createMarcFieldHelpLink() e createAuthorityLinks() são novamente chamadas.
// https://developer.mozilla.org/en-US/docs/Web/API/MutationObserver
 
// create an observer instance
const observer = new MutationObserver((mutations) => {
mutations.forEach((mutation) => {
const newNodes = mutation.addedNodes; // DOM NodeList
if (newNodes.length !== 0) { // if there are new nodes added
createMarcFieldHelpLink();
createAuthorityLinks();
}
});
});
 
// select the target node
const target = document.querySelector('.multipleTemplateList');
 
// configuration of the observer
const config = {
childList: true,
attributes: false,
subtree: false,
};
 
// pass in the target node, as well as the observer options
observer.observe(target, config);
 
// when clicking save...
const saveBtn = document.body.querySelector('#wpSave');
saveBtn.addEventListener('click', () => {
observer.disconnect();
rmTxtFromHiddenFields();
rmCarriageReturn();
rmHtmlTags();
normalizeInput();
});
}
 
if (document.readyState === 'complete' || (document.readyState !== 'loading')) {
main();
} else {
document.addEventListener('DOMContentLoaded', main);
}
 
// if (document.readyState === 'complete' || (document.readyState !== 'loading')) {
// main();
// } else {
// document.addEventListener('DOMContentLoaded', main);
// }
// for no obvious reason to me, the first call to the "main" function is not
// occurring, so wait 3 seconds and call it anyway.
setIntervalsetTimeout(main, 3000);

Menu de navegação