Skip to content

Commit

Permalink
Reload the page if there was a new story added or removed (#146)
Browse files Browse the repository at this point in the history
* Reload the page if there was a n ew story added or removed

* Fix tsc
  • Loading branch information
tajo committed May 25, 2022
1 parent daa717d commit 8568de6
Show file tree
Hide file tree
Showing 6 changed files with 67 additions and 2 deletions.
5 changes: 5 additions & 0 deletions .changeset/serious-hats-clap.md
@@ -0,0 +1,5 @@
---
"@ladle/react": minor
---

Reload the page if there was a new story added or removed.
42 changes: 42 additions & 0 deletions packages/ladle/lib/cli/vite-dev.js
Expand Up @@ -4,6 +4,7 @@ import getPort from "get-port";
import globby from "globby";
import boxen from "boxen";
import open from "open";
import chokidar from "chokidar";
import debug from "./debug.js";
import getBaseViteConfig from "./vite-base.js";
import { getMetaJsonObject } from "./vite-plugin/generate/get-meta-json.js";
Expand Down Expand Up @@ -36,6 +37,7 @@ const bundler = async (config, configFolder) => {
},
});
const vite = await createServer(viteConfig);
const { moduleGraph, ws } = vite;
app.head("*", async (_, res) => res.sendStatus(200));
app.get("/meta.json", async (_, res) => {
const entryData = await getEntryData(await globby([config.stories]));
Expand Down Expand Up @@ -64,6 +66,46 @@ const bundler = async (config, configFolder) => {
);
}
});

// trigger full reload when new stories are added or removed
const watcher = chokidar.watch(config.stories, {
persistent: true,
});
let checkSum = "";
const getChecksum = async () => {
try {
const entryData = await getEntryData(await globby([config.stories]));
const jsonContent = getMetaJsonObject(entryData);
// loc changes should not grant a full reload
Object.keys(jsonContent.stories).forEach((storyId) => {
jsonContent.stories[storyId].locStart = 0;
jsonContent.stories[storyId].locEnd = 0;
});
return JSON.stringify(jsonContent);
} catch (e) {
return checkSum;
}
};
checkSum = await getChecksum();
const invalidate = async () => {
const newChecksum = await getChecksum();
if (checkSum === newChecksum) return;
checkSum = newChecksum;
const module = moduleGraph.getModuleById("\0virtual:generated-list");
if (module) {
moduleGraph.invalidateModule(module);
if (ws) {
ws.send({
type: "full-reload",
path: "*",
});
}
}
};
watcher
.on("add", invalidate)
.on("change", invalidate)
.on("unlink", invalidate);
} catch (e) {
console.log(e);
}
Expand Down
Expand Up @@ -25,7 +25,7 @@ const getMetaJson = (entryData) => {
version: 1,
},
stories:
/** @type {{[key: string]: {name: string; levels: string[]; meta: any}}} */ ({}),
/** @type {{[key: string]: {name: string; levels: string[]; meta: any, locStart: number; locEnd: number;}}} */ ({}),
};
storyIds.forEach((storyId) => {
result.stories[storyId] = {
Expand Down
2 changes: 1 addition & 1 deletion packages/ladle/lib/cli/vite-plugin/get-ast.js
Expand Up @@ -64,7 +64,7 @@ const getAst = (code, filename) => {
),
);
console.log("");
process.exit(1);
throw e;
}
};

Expand Down
1 change: 1 addition & 0 deletions packages/ladle/package.json
Expand Up @@ -40,6 +40,7 @@
"@vitejs/plugin-react": "^1.3.0",
"axe-core": "^4.4.1",
"boxen": "^5.1.2",
"chokidar": "^3.5.3",
"classnames": "^2.3.1",
"commander": "^8.3.0",
"debug": "^4.3.4",
Expand Down
17 changes: 17 additions & 0 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 comment on commit 8568de6

@vercel
Copy link

@vercel vercel bot commented on 8568de6 May 25, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

ladle – ./

ladle-git-master-miksu.vercel.app
ladle-miksu.vercel.app
ladle.dev
ladle.vercel.app

Please sign in to comment.