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


TypeScript PathExt.extname方法代码示例

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


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

示例1:

    execute: () => {
      let widget = tracker.currentWidget.content;

      if (!widget) {
        return;
      }

      let code = '';
      let editor = widget.editor;
      let text = editor.model.value.text;
      let path = widget.context.path;
      let extension = PathExt.extname(path);

      if (MarkdownCodeBlocks.isMarkdown(extension)) {
        // For Markdown files, run only code blocks.
        const blocks = MarkdownCodeBlocks.findMarkdownCodeBlocks(text);
        for (let block of blocks) {
          code += block.code;
        }
      } else {
        code = text;
      }

      const activate = false;
      if (code) {
        return commands.execute('console:inject', { activate, code, path });
      } else {
        return Promise.resolve(void 0);
      }
    },
开发者ID:AlbertHilb,项目名称:jupyterlab,代码行数:30,代码来源:index.ts

示例2: constructor

 /**
  * Construct a new "rename" dialog.
  */
 constructor(oldPath: string) {
   super({ node: Private.createRenameNode(oldPath) });
   this.addClass(FILE_DIALOG_CLASS);
   let ext = PathExt.extname(oldPath);
   let value = (this.inputNode.value = PathExt.basename(oldPath));
   this.inputNode.setSelectionRange(0, value.length - ext.length);
 }
开发者ID:afshin,项目名称:jupyterlab,代码行数:10,代码来源:dialogs.ts

示例3: getMimeTypeByFilePath

 /**
  * Returns a mime type for the given file path.
  *
  * #### Notes
  * If a mime type cannot be found returns the default mime type `text/plain`, never `null`.
  */
 getMimeTypeByFilePath(path: string): string {
   if (PathExt.extname(path) === '.ipy') {
     return 'text/x-python';
   }
   let mode = Mode.findByFileName(path) || Mode.findBest('');
   return mode.mime;
 }
开发者ID:cameronoelsen,项目名称:jupyterlab,代码行数:13,代码来源:mimetype.ts

示例4: getMimeTypeByFilePath

 /**
  * Returns a mime type for the given file path.
  *
  * #### Notes
  * If a mime type cannot be found returns the defaul mime type `text/plain`, never `null`.
  */
 getMimeTypeByFilePath(path: string): string {
   if (PathExt.extname(path) === '.ipy') {
     return 'text/x-python';
   }
   const mode = CodeMirror.findModeByFileName(path);
   return mode ? mode.mime : IEditorMimeTypeService.defaultMimeType;
 }
开发者ID:charnpreetsingh185,项目名称:jupyterlab,代码行数:13,代码来源:mimetype.ts

示例5: if

    execute: () => {
      // Run the appropriate code, taking into account a ```fenced``` code block.
      const widget = tracker.currentWidget.content;

      if (!widget) {
        return;
      }

      let code = '';
      const editor = widget.editor;
      const path = widget.context.path;
      const extension = PathExt.extname(path);
      const selection = editor.getSelection();
      const { start, end } = selection;
      let selected = start.column !== end.column || start.line !== end.line;

      if (selected) {
        // Get the selected code from the editor.
        const start = editor.getOffsetAt(selection.start);
        const end = editor.getOffsetAt(selection.end);

        code = editor.model.value.text.substring(start, end);
      } else if (MarkdownCodeBlocks.isMarkdown(extension)) {
        const { text } = editor.model.value;
        const blocks = MarkdownCodeBlocks.findMarkdownCodeBlocks(text);

        for (let block of blocks) {
          if (block.startLine <= start.line && start.line <= block.endLine) {
            code = block.code;
            selected = true;
            break;
          }
        }
      }

      if (!selected) {
        // no selection, submit whole line and advance
        code = editor.getLine(selection.start.line);
        const cursor = editor.getCursorPosition();
        if (cursor.line + 1 === editor.lineCount) {
          let text = editor.model.value.text;
          editor.model.value.text = text + '\n';
        }
        editor.setCursorPosition({
          line: cursor.line + 1,
          column: cursor.column
        });
      }

      const activate = false;
      if (code) {
        return commands.execute('console:inject', { activate, code, path });
      } else {
        return Promise.resolve(void 0);
      }
    },
开发者ID:dalejung,项目名称:jupyterlab,代码行数:56,代码来源:index.ts

示例6: getMimeTypeByFilePath

 /**
  * Returns a mime type for the given file path.
  *
  * #### Notes
  * If a mime type cannot be found returns the default mime type `text/plain`, never `null`.
  */
 getMimeTypeByFilePath(path: string): string {
   const ext = PathExt.extname(path);
   if (ext === '.ipy') {
     return 'text/x-python';
   } else if (ext === '.md') {
     return 'text/x-ipythongfm';
   }
   let mode = Mode.findByFileName(path) || Mode.findBest('');
   return mode.mime;
 }
开发者ID:SimonBiggs,项目名称:jupyterlab,代码行数:16,代码来源:mimetype.ts

示例7: if

    execute: () => {
      // This will run the current selection or the entire ```fenced``` code block.
      const widget = tracker.currentWidget;

      if (!widget) {
        return;
      }

      let code = '';
      const editor = widget.editor;
      const path = widget.context.path;
      const extension = PathExt.extname(path);
      const selection = editor.getSelection();
      const { start, end } = selection;
      const selected = start.column !== end.column || start.line !== end.line;

      if (selected) {
        // Get the selected code from the editor.
        const start = editor.getOffsetAt(selection.start);
        const end = editor.getOffsetAt(selection.end);

        code = editor.model.value.text.substring(start, end);
      } else if (MarkdownCodeBlocks.isMarkdown(extension)) {
        const { text } = editor.model.value;
        const blocks = MarkdownCodeBlocks.findMarkdownCodeBlocks(text);

        for (let block of blocks) {
          if (block.startLine <= start.line && start.line <= block.endLine) {
            code = block.code;
            break;
          }
        }
      }

      const activate = false;
      if (code) {
        return commands.execute('console:inject', { activate, code, path });
      } else {
        return Promise.resolve(void 0);
      }
    },
开发者ID:cameronoelsen,项目名称:jupyterlab,代码行数:41,代码来源:index.ts

示例8: it

 it('should only take the last occurance of a dot', () => {
   expect(PathExt.extname('foo.tar.gz')).to.equal('.gz');
 });
开发者ID:7125messi,项目名称:jupyterlab,代码行数:3,代码来源:path.spec.ts

示例9: return

 isVisible: () => {
   let widget = tracker.currentWidget;
   return (
     (widget && PathExt.extname(widget.context.path) === '.md') || false
   );
 },
开发者ID:dalejung,项目名称:jupyterlab,代码行数:6,代码来源:index.ts


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