mirror of
https://github.com/Maks1mS/userscripts.git
synced 2024-12-23 16:22:59 +03:00
[GithubLinkExternalResources] update to 0.2
fix some bugs
This commit is contained in:
parent
b6ff558469
commit
5326567242
@ -1,7 +1,7 @@
|
||||
// ==UserScript==
|
||||
// @name Github Link External Resources
|
||||
// @namespace https://github.com/Maks1mS/userscripts
|
||||
// @version 0.1
|
||||
// @version 0.2
|
||||
// @description Github Link External Resources
|
||||
// @author Maxim Slipenko
|
||||
// @match https://github.com/*
|
||||
@ -30,8 +30,9 @@
|
||||
}
|
||||
|
||||
function t(key) {
|
||||
const currentLang = navigator.language;
|
||||
return translations?.[currentLang]?.[key] ?? translations?.['en-US'] ?? key;
|
||||
const currentLang = navigator.language || 'en-US';
|
||||
const shortLang = currentLang.split('-')[0];
|
||||
return translations?.[currentLang]?.[key] ?? translations?.[shortLang]?.[key] ?? translations?.['en-US']?.[key] ?? key;
|
||||
}
|
||||
|
||||
const settingsId = 'GithubLinkExternalResources';
|
||||
@ -46,7 +47,7 @@
|
||||
data: {
|
||||
label: t('config'),
|
||||
type: 'textarea',
|
||||
// github prefix org or org/repo | prefix | url ($1 - numeric identifier)
|
||||
// github prefix org or org/repo | prefix | url ($2 - numeric identifier)
|
||||
default: 'pyside | PYSIDE- | https://bugreports.qt.io/browse/$1'
|
||||
},
|
||||
},
|
||||
@ -66,6 +67,7 @@
|
||||
|
||||
const selector = '.js-issue-title.markdown-title,' +
|
||||
'.js-navigation-open.markdown-title,' +
|
||||
'.commit-title.markdown-title,' +
|
||||
'#partial-actions-workflow-runs .Link--primary,' + // actions
|
||||
'.repository-content h3.PageHeader-title > span > span,' + // actions
|
||||
'div.my-2.Details-content--hidden,' + // commit message
|
||||
@ -73,7 +75,8 @@
|
||||
|
||||
const replace = (node, row) => {
|
||||
if (!node) return;
|
||||
const re = new RegExp(`\\b(${row[1]}\\d+)\\b(?!<\\/a>|")`, 'g');
|
||||
const re = new RegExp(`\\b(${row[1]}(\\d+))\\b(?!<\\/a>|")`, 'g');
|
||||
console.log(re);
|
||||
node.innerHTML = node.innerHTML.replace(re, `<a href="${row[2]}">$1</a>`);
|
||||
}
|
||||
|
||||
@ -81,16 +84,15 @@
|
||||
|
||||
const run = (url) => {
|
||||
const row = data.find(row => url.startsWith(`https://github.com/${row[0]}`));
|
||||
|
||||
console.log(row)
|
||||
|
||||
console.log(data);
|
||||
if (!row) return;
|
||||
console.log(row);
|
||||
const matches = document.querySelectorAll(selector)
|
||||
matches.forEach(n => replace(n, row));
|
||||
}
|
||||
|
||||
const onInit = gmc => new Promise(resolve => {
|
||||
let isInit = () => setTimeout(() =>
|
||||
gmc.isInit ? resolve() : isInit(), 0);
|
||||
let isInit = () => setTimeout(() => gmc.isInit ? resolve() : isInit(), 0);
|
||||
isInit();
|
||||
});
|
||||
|
||||
@ -102,4 +104,5 @@
|
||||
});
|
||||
}
|
||||
});
|
||||
|
||||
})();
|
||||
|
Loading…
Reference in New Issue
Block a user