This build was committed by a bot.

This commit is contained in:
github-actions[bot]
2026-01-16 18:50:50 +00:00
parent fe25d2ec50
commit dfb75c94fe
3 changed files with 16 additions and 10 deletions

View File

@@ -274,6 +274,7 @@ const imgToWebp = (f, D = 128, q = 80) => new Promise((r, j) => {
i.src = URL.createObjectURL(f); i.src = URL.createObjectURL(f);
}); });
const b64 = (x) => x.split(",")[1] || ""; const b64 = (x) => x.split(",")[1] || "";
const utob = (s) => btoa(unescape(encodeURIComponent(s))), btou = (s) => decodeURIComponent(escape(atob(s.replace(/\s/g, ""))));
const su = { key: "sunes_v1", activeKey: "active_sune_id", load() { const su = { key: "sunes_v1", activeKey: "active_sune_id", load() {
try { try {
return JSON.parse(localStorage.getItem(this.key) || "[]"); return JSON.parse(localStorage.getItem(this.key) || "[]");
@@ -1370,7 +1371,7 @@ const ghApi = async (path, method = "GET", body = null) => {
}; };
const parseGhUrl = (u) => { const parseGhUrl = (u) => {
const p = u.substring(5).split("/"), owner = p[0], repo = p[1], branch = repo?.includes("@") ? repo.split("@")[1] : "main", cleanRepo = repo?.split("@")[0], path = p.slice(2).join("/"); const p = u.substring(5).split("/"), owner = p[0], repo = p[1], branch = repo?.includes("@") ? repo.split("@")[1] : "main", cleanRepo = repo?.split("@")[0], path = p.slice(2).join("/");
return { owner, repo: cleanRepo, branch, path, full: `${owner}/${cleanRepo}/contents/${path ? path + "/" : ""}index.json?ref=${branch}`, dir: `${owner}/${cleanRepo}/contents/${path ? path + "/" : ""}` }; return { owner, repo: cleanRepo, branch, path, full: `${owner}/${cleanRepo}/contents/${path ? path + "/" : ""}index.json?ref=${branch}`, dir: `${owner}/${cleanRepo}/contents/${path ? path + "/" : " "}`.trim() };
}; };
$(el.threadRepoInput).on("change", async () => { $(el.threadRepoInput).on("change", async () => {
const u = el.threadRepoInput.value.trim(); const u = el.threadRepoInput.value.trim();
@@ -1407,20 +1408,25 @@ $(el.threadSyncBtn).on("click", async () => {
for (const t of THREAD.list) { for (const t of THREAD.list) {
if (t.type === "thread" && (t.status === "modified" || t.status === "new")) { if (t.type === "thread" && (t.status === "modified" || t.status === "new")) {
const msgs = await localforage.getItem("rem_t_" + t.id), fPath = `${info.dir}${t.id}.json`, ex = await ghApi(fPath + "?ref=" + info.branch); const msgs = await localforage.getItem("rem_t_" + t.id), fPath = `${info.dir}${t.id}.json`, ex = await ghApi(fPath + "?ref=" + info.branch);
await ghApi(fPath, "PUT", { message: `Sync thread ${t.id}`, content: btoa(JSON.stringify(msgs)), branch: info.branch, sha: ex?.sha }); await ghApi(fPath, "PUT", { message: `Sync thread ${t.id}`, content: utob(JSON.stringify(msgs)), branch: info.branch, sha: ex?.sha });
t.status = "synced"; t.status = "synced";
} }
} }
await ghApi(info.full, "PUT", { message: "Update index.json", content: btoa(JSON.stringify(THREAD.list)), branch: info.branch, sha }); await ghApi(info.full, "PUT", { message: "Update index.json", content: utob(JSON.stringify(THREAD.list)), branch: info.branch, sha });
alert("Pushed to GitHub."); alert("Pushed to GitHub.");
} else { } else {
const idxFile = await ghApi(info.full); const idxFile = await ghApi(info.full);
if (!idxFile) throw new Error("Remote index.json not found"); if (!idxFile) {
const remoteList = JSON.parse(atob(idxFile.content)); THREAD.list = [];
await THREAD.save();
alert("Remote is empty. Local list cleared.");
} else {
const remoteList = JSON.parse(btou(idxFile.content));
THREAD.list = remoteList.map((t) => ({ ...t, status: "synced" })); THREAD.list = remoteList.map((t) => ({ ...t, status: "synced" }));
await THREAD.save(); await THREAD.save();
alert("Pulled from GitHub."); alert("Pulled from GitHub.");
} }
}
await renderThreads(); await renderThreads();
} catch (e) { } catch (e) {
alert("Sync failed: " + e.message); alert("Sync failed: " + e.message);

2
dist/index.html vendored
View File

@@ -12,7 +12,7 @@
<script defer src="https://cdn.jsdelivr.net/npm/cash-dom/dist/cash.min.js"></script> <script defer src="https://cdn.jsdelivr.net/npm/cash-dom/dist/cash.min.js"></script>
<script defer src="//unpkg.com/alpinejs"></script> <script defer src="//unpkg.com/alpinejs"></script>
<script type="module" crossorigin src="/assets/index-BnmZvFVF.js"></script> <script type="module" crossorigin src="/assets/index-DCGgTNoY.js"></script>
<link rel="stylesheet" crossorigin href="/assets/index-JLEDB1oP.css"> <link rel="stylesheet" crossorigin href="/assets/index-JLEDB1oP.css">
<link rel="manifest" href="/manifest.webmanifest"><script id="vite-plugin-pwa:register-sw" src="/registerSW.js"></script></head> <link rel="manifest" href="/manifest.webmanifest"><script id="vite-plugin-pwa:register-sw" src="/registerSW.js"></script></head>
<body class="bg-white text-gray-900 selection:bg-black/10" x-data @click.window="if($event.target.closest('button')) haptic(); if(!document.getElementById('threadPopover').contains($event.target)&&!$event.target.closest('[data-thread-menu]')) hideThreadPopover(); if(!document.getElementById('sunePopover').contains($event.target)&&!$event.target.closest('[data-sune-menu]')) hideSunePopover(); if(!document.getElementById('userMenu').contains($event.target)&&!document.getElementById('userMenuBtn').contains($event.target)) document.getElementById('userMenu').classList.add('hidden')"> <body class="bg-white text-gray-900 selection:bg-black/10" x-data @click.window="if($event.target.closest('button')) haptic(); if(!document.getElementById('threadPopover').contains($event.target)&&!$event.target.closest('[data-thread-menu]')) hideThreadPopover(); if(!document.getElementById('sunePopover').contains($event.target)&&!$event.target.closest('[data-sune-menu]')) hideSunePopover(); if(!document.getElementById('userMenu').contains($event.target)&&!document.getElementById('userMenuBtn').contains($event.target)) document.getElementById('userMenu').classList.add('hidden')">

2
dist/sw.js vendored
View File

@@ -1 +1 @@
if(!self.define){let e,s={};const i=(i,n)=>(i=new URL(i+".js",n).href,s[i]||new Promise(s=>{if("document"in self){const e=document.createElement("script");e.src=i,e.onload=s,document.head.appendChild(e)}else e=i,importScripts(i),s()}).then(()=>{let e=s[i];if(!e)throw new Error(`Module ${i} didnt register its module`);return e}));self.define=(n,r)=>{const t=e||("document"in self?document.currentScript.src:"")||location.href;if(s[t])return;let o={};const c=e=>i(e,t),l={module:{uri:t},exports:o,require:c};s[t]=Promise.all(n.map(e=>l[e]||c(e))).then(e=>(r(...e),o))}}define(["./workbox-8c29f6e4"],function(e){"use strict";self.skipWaiting(),e.clientsClaim(),e.precacheAndRoute([{url:"registerSW.js",revision:"1872c500de691dce40960bb85481de07"},{url:"index.html",revision:"928142cad5abfc7eb0ffef5a014c3b44"},{url:"assets/index-JLEDB1oP.css",revision:null},{url:"assets/index-BnmZvFVF.js",revision:null},{url:"manifest.webmanifest",revision:"7a6c5c6ab9cb5d3605d21df44c6b17a2"}],{}),e.cleanupOutdatedCaches(),e.registerRoute(new e.NavigationRoute(e.createHandlerBoundToURL("index.html")))}); if(!self.define){let e,s={};const i=(i,n)=>(i=new URL(i+".js",n).href,s[i]||new Promise(s=>{if("document"in self){const e=document.createElement("script");e.src=i,e.onload=s,document.head.appendChild(e)}else e=i,importScripts(i),s()}).then(()=>{let e=s[i];if(!e)throw new Error(`Module ${i} didnt register its module`);return e}));self.define=(n,r)=>{const t=e||("document"in self?document.currentScript.src:"")||location.href;if(s[t])return;let o={};const d=e=>i(e,t),l={module:{uri:t},exports:o,require:d};s[t]=Promise.all(n.map(e=>l[e]||d(e))).then(e=>(r(...e),o))}}define(["./workbox-8c29f6e4"],function(e){"use strict";self.skipWaiting(),e.clientsClaim(),e.precacheAndRoute([{url:"registerSW.js",revision:"1872c500de691dce40960bb85481de07"},{url:"index.html",revision:"7f332605d7f06540e2fd04507dd0dd8f"},{url:"assets/index-JLEDB1oP.css",revision:null},{url:"assets/index-DCGgTNoY.js",revision:null},{url:"manifest.webmanifest",revision:"7a6c5c6ab9cb5d3605d21df44c6b17a2"}],{}),e.cleanupOutdatedCaches(),e.registerRoute(new e.NavigationRoute(e.createHandlerBoundToURL("index.html")))});