Open wwsun opened 1 year ago
描述你的问题(Describe you question here)
例如下面的例子示范了如何初始化工作区,并将修改缓存到 indexxedDB 中。如果要将缓存到数据再同步到远端服务,要怎么做?在官网没找到相应的文档。
const App = () => { return ( <AppRenderer appConfig={{ // 工作空间目录 workspaceDir: 'sample', // modules:[unregisterKeybindingModule], extensionMetadata: [WorkerExample], defaultPreferences: { 'editor.autoSave': 'afterDelay', }, }} runtimeConfig={{ workspace: { // 本地indexedDB文件系统 filesystem: { fs: 'OverlayFS', options: { writable: { fs: 'IndexedDB' }, readable: { fs: 'DynamicRequest', options: { readDirectory(p: string) { return dirMap[p]; }, async readFile(p) { return new TextEncoder().encode(fileMap[p]); }, }, }, }, }, }, }} /> ); };
CodeBlitz内 源代码管理功能 目前是基于插件来实现
插件侧主要模拟类似git源代码管理的部分能力如提交,建分支,diff等 这些都需要code-api 模块内部做适配
需要实现几个必需接口 并引入web SCM 插件
可以参考 github 接口
描述你的问题(Describe you question here)
例如下面的例子示范了如何初始化工作区,并将修改缓存到 indexxedDB 中。如果要将缓存到数据再同步到远端服务,要怎么做?在官网没找到相应的文档。