Files
agentic-studio/network-poc/frontend/node_modules/unstorage/drivers/cloudflare-kv-binding.cjs
Jaakko Vanhala a8c4af0975 Frontend uudelleenrakennettu: Astro-komponentit, Wasm pääsäikeessä, ei Workeria
Vanha frontend siirretty temp/. Uusi rakenne:
- StatusBar.astro, Terminal.astro, Editor.astro, Guide.astro
- global.css erillinen
- Wasm pääsäikeessä (ei Worker — yksinkertainen, debugattava)
- Tab-completion, dropdown, projektikortti, Monaco, GUIDE.md
- Ei tokenisointia eikä koodilaboratoriota

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-09 20:17:39 +03:00

63 lines
2.0 KiB
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
var _utils = require("./utils/index.cjs");
var _cloudflare = require("./utils/cloudflare.cjs");
const DRIVER_NAME = "cloudflare-kv-binding";
module.exports = (0, _utils.defineDriver)(opts => {
const r = (key = "") => opts.base ? (0, _utils.joinKeys)(opts.base, key) : key;
async function getKeys(base = "") {
base = r(base);
const binding = (0, _cloudflare.getKVBinding)(opts.binding);
const keys = [];
let cursor = void 0;
do {
const kvList = await binding.list({
prefix: base || void 0,
cursor
});
keys.push(...kvList.keys);
cursor = kvList.list_complete ? void 0 : kvList.cursor;
} while (cursor);
return keys.map(key => key.name);
}
return {
name: DRIVER_NAME,
options: opts,
getInstance: () => (0, _cloudflare.getKVBinding)(opts.binding),
async hasItem(key) {
key = r(key);
const binding = (0, _cloudflare.getKVBinding)(opts.binding);
return (await binding.get(key)) !== null;
},
getItem(key) {
key = r(key);
const binding = (0, _cloudflare.getKVBinding)(opts.binding);
return binding.get(key);
},
setItem(key, value, topts) {
key = r(key);
const binding = (0, _cloudflare.getKVBinding)(opts.binding);
return binding.put(key, value, topts ? {
expirationTtl: topts?.ttl ? Math.max(topts.ttl, opts.minTTL ?? 60) : void 0,
...topts
} : void 0);
},
removeItem(key) {
key = r(key);
const binding = (0, _cloudflare.getKVBinding)(opts.binding);
return binding.delete(key);
},
getKeys(base) {
return getKeys(base).then(keys => keys.map(key => opts.base ? key.slice(opts.base.length) : key));
},
async clear(base) {
const binding = (0, _cloudflare.getKVBinding)(opts.binding);
const keys = await getKeys(base);
await Promise.all(keys.map(key => binding.delete(key)));
}
};
});