当前位置: 首页>>代码示例>>TypeScript>>正文


TypeScript StateDB.clear方法代码示例

本文整理汇总了TypeScript中@jupyterlab/coreutils.StateDB.clear方法的典型用法代码示例。如果您正苦于以下问题:TypeScript StateDB.clear方法的具体用法?TypeScript StateDB.clear怎么用?TypeScript StateDB.clear使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在@jupyterlab/coreutils.StateDB的用法示例。


在下文中一共展示了StateDB.clear方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。

示例1: it

    it('should allow an overwrite data transformation', async () => {
      const transform = new PromiseDelegate<StateDB.DataTransform>();
      const db = new StateDB({
        namespace: 'test',
        transform: transform.promise
      });
      const prepopulate = new StateDB({ namespace: 'test' });
      const key = 'foo';
      const correct = 'bar';
      const incorrect = 'baz';
      const transformation: StateDB.DataTransform = {
        type: 'overwrite',
        contents: { [key]: correct }
      };

      // By sharing a namespace, the two databases will share data.
      await prepopulate.save(key, incorrect);
      let value = await prepopulate.fetch(key);
      expect(value).to.equal(incorrect);
      transform.resolve(transformation);
      await transform.promise;
      value = await db.fetch(key);
      expect(value).to.equal(correct);
      await db.clear();
    });
开发者ID:afshin,项目名称:jupyterlab,代码行数:25,代码来源:statedb.spec.ts

示例2: async

      execute: async ({ global }) => {
        const immediate = true;
        const silent = true;

        // Clear the state silently so that the state changed signal listener
        // will not be triggered as it causes a save state.
        await state.clear(silent);

        // If the user explictly chooses to recover state, all of local storage
        // should be cleared.
        if (global) {
          try {
            window.localStorage.clear();
            console.log('Cleared local storage');
          } catch (error) {
            console.warn('Clearing local storage failed.', error);

            // To give the user time to see the console warning before redirect,
            // do not set the `immediate` flag.
            return commands.execute(CommandIDs.saveState);
          }
        }

        return commands.execute(CommandIDs.saveState, { immediate });
      }
开发者ID:willingc,项目名称:jupyterlab,代码行数:25,代码来源:index.ts

示例3:

    window.addEventListener('beforeunload', () => {
      const silent = true;

      state.clear(silent).catch(() => {
        /* no-op */
      });
    });
开发者ID:willingc,项目名称:jupyterlab,代码行数:7,代码来源:index.ts

示例4: beforeEach

 beforeEach(() => {
   state.clear();
   model = new FileBrowserModel({ manager, state });
   return manager.newUntitled({ type: 'file' }).then(contents => {
     name = contents.name;
     return model.cd();
   });
 });
开发者ID:dalejung,项目名称:jupyterlab,代码行数:8,代码来源:model.spec.ts

示例5:

      execute: () => {
        const immediate = true;
        const silent = true;

        // Clear the state silently so that the state changed signal listener
        // will not be triggered as it causes a save state.
        return state.clear(silent)
          .then(() => commands.execute(CommandIDs.saveState, { immediate }));
      }
开发者ID:cfsmile,项目名称:jupyterlab,代码行数:9,代码来源:index.ts


注:本文中的@jupyterlab/coreutils.StateDB.clear方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。