未読のページにランダムジャンプするUserScript:ページを開かずに未読を判定&PageMenuのItemにログを表示するver
ページを開かずに未読を判定&PageMenuのItemにログを表示するver
script.jsconst jumpToUnreadPage = 'Jump to an unread page';
scrapbox.PageMenu.addMenu({
title: jumpToUnreadPage,
image: 'https://gyazo.com/f74d4fc373248fb2abac31ff1f69b482/raw',
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 title = pages[Math.floor(Math.random() * pages.length)].title;
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;
}
script.js const a = document.createElement('a');
a.href = `./${encodeURIComponent(nextPage.title)}#${unreadLine.id}`;
document.body.appendChild(a);
a.click();
a.remove();
return;
}
},
});
こんな手があるのか
軽くなった
これいらないみたいです
<a>
をどこかのDOMに挿入してからクリックすれば、SPAを維持してページ遷移できる
PageMenuのitemがリセットされなくなったのでリセットするようにした
既読ページ12枚くらいログに出た
わかる