未読のページにランダムジャンプするUserScript:ページを開かずに未読を判定&PageMenuのItemにログを表示するver
ページを開かずに未読を判定&PageMenuのItemにログを表示するver
code:script.js
const jumpToUnreadPage = 'Jump to an unread page';
scrapbox.PageMenu.addMenu({
title: jumpToUnreadPage,
onClick: async () => {
const project = scrapbox.Project.name;
const pages = scrapbox.Project.pages.filter(
page => page.exists && page.title !== scrapbox.Page.title
);
const getNextPage = async () => {
const nextPage = await fetch(/api/pages/${project}/${encodeURIComponent(title)});
return await nextPage.json();
}
const menu = scrapbox.PageMenu(jumpToUnreadPage);
menu.removeAllItems();
menu.emitChange();
let count = 1;
while (true) {
const nextPage = await getNextPage();
const msg = ${count}: /${project}/${nextPage.title};
menu.addItem({ title: msg, onClick: () => {} });
console.log(msg);
const unreadLine = nextPage.lines.find(line => nextPage.lastAccessed < line.updated);
if (!unreadLine) {
count++;
continue;
}
code:script.js
const a = document.createElement('a');
a.href = ./${encodeURIComponent(nextPage.title)}#${unreadLine.id};
document.body.appendChild(a);
a.click();
a.remove();
return;
}
},
});
こんな手があるのかyosider.icon
軽くなった
これいらないみたいですtakker.icon
<a>をどこかのDOMに挿入してからクリックすれば、SPAを維持してページ遷移できる
/icons/感謝.iconyosider.icon
PageMenuのitemがリセットされなくなったのでリセットするようにした
dnin.icon
既読ページ12枚くらいログに出た
わかるyosider.iconyosider.icon