@stelstone/server 0.26.1 → 0.26.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/adapters/github-content.mjs +18 -1
- package/src/version.mjs +1 -1
package/package.json
CHANGED
|
@@ -73,6 +73,8 @@ export function createGitHubContent({ token, owner, repo, branch, draftBranch, p
|
|
|
73
73
|
// Lazily create the draft branch off the published branch. Checked once per
|
|
74
74
|
// process; a 404 on the ref is the "first ever use" case, not an error.
|
|
75
75
|
let draftBranchReady = !draftMode;
|
|
76
|
+
let indexesStaleAfterSync = false;
|
|
77
|
+
const refreshedAfterSync = new Set();
|
|
76
78
|
async function ensureDraftBranch() {
|
|
77
79
|
if (draftBranchReady) return;
|
|
78
80
|
const ref = await apiGet(`/git/ref/heads/${draftBranch}`);
|
|
@@ -88,7 +90,13 @@ export function createGitHubContent({ token, owner, repo, branch, draftBranch, p
|
|
|
88
90
|
// on main from code and the admin listed an empty collection. Keep the
|
|
89
91
|
// draft current by merging the published branch in once per process.
|
|
90
92
|
try {
|
|
91
|
-
await apiPost(`/merges`, { base: draftBranch, head: branch });
|
|
93
|
+
const merged = await apiPost(`/merges`, { base: draftBranch, head: branch });
|
|
94
|
+
// A real merge means files changed under us — the per-collection
|
|
95
|
+
// _index.json manifests may now be stale (the empty-index variant of
|
|
96
|
+
// this bit stelstone.com: an index bootstrapped before content
|
|
97
|
+
// existed served an empty list forever). Mark them suspect; the
|
|
98
|
+
// lazy strategy rebuilds on next list.
|
|
99
|
+
if (merged?.sha) indexesStaleAfterSync = true;
|
|
92
100
|
} catch (err) {
|
|
93
101
|
if (err?.upstreamStatus === 409) {
|
|
94
102
|
// Same record edited on both branches: the draft (the editor's
|
|
@@ -226,8 +234,16 @@ export function createGitHubContent({ token, owner, repo, branch, draftBranch, p
|
|
|
226
234
|
}
|
|
227
235
|
|
|
228
236
|
// 2. strategy "index": try the pre-built manifest first (1 subrequest).
|
|
237
|
+
// After a draft-branch sync merged changes in, an existing manifest is
|
|
238
|
+
// suspect: skip it once per collection so the lazy path rebuilds it
|
|
239
|
+
// from the merged tree. ("build" sites rebuild via the CLI instead.)
|
|
240
|
+
const skipIndex =
|
|
241
|
+
indexesStaleAfterSync &&
|
|
242
|
+
listConfig.rebuild === "lazy" &&
|
|
243
|
+
!refreshedAfterSync.has(safeCollection);
|
|
229
244
|
const idxPath = indexFilePath(safeCollection);
|
|
230
245
|
try {
|
|
246
|
+
if (skipIndex) throw new Error("index suspect after sync");
|
|
231
247
|
const data = await apiGet(`/contents/${idxPath}?ref=${workBranch}`);
|
|
232
248
|
if (data && !Array.isArray(data)) {
|
|
233
249
|
shaCache.set(idxPath, data.sha);
|
|
@@ -262,6 +278,7 @@ export function createGitHubContent({ token, owner, repo, branch, draftBranch, p
|
|
|
262
278
|
// Persist for all future calls.
|
|
263
279
|
try {
|
|
264
280
|
await writeIndex(safeCollection, { entries: pages });
|
|
281
|
+
refreshedAfterSync.add(safeCollection);
|
|
265
282
|
} catch (err) {
|
|
266
283
|
console.warn(`[listPages] Could not write ${listConfig.indexFile}:`, err?.message);
|
|
267
284
|
}
|
package/src/version.mjs
CHANGED