• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

TypeScript editor.Editor类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了TypeScript中@typewriter/editor.Editor的典型用法代码示例。如果您正苦于以下问题:TypeScript Editor类的具体用法?TypeScript Editor怎么用?TypeScript Editor使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



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

示例1: init

  /**
   * Initializes the view, setting up listeners in the DOM and on the editor.
   */
  init() {
    // already inited
    let renderQueued = false;
    if (this.hasOwnProperty('uninit')) return;

    const onSelectionChange = () => {
      this.updateEditorSelection(SOURCE_USER);
    };

    const onEditorChange = async event => {
      if (renderQueued) return;
      renderQueued = true;
      await Promise.resolve();
      if (event.change) this.render();
      else this.updateBrowserSelection();
      renderQueued = false;
    };

    const rerender = () => this.render();

    this.doc.addEventListener('selectionchange', onSelectionChange);
    this.editor.on('editor-change', onEditorChange);
    this.editor.on('render', rerender);

    if (this.options.modules) {
      Object.keys(this.options.modules).forEach(key => this.modules[key] = this.options.modules[key](this.editor, this.root, this.paper));
    }

    this.render();

    this.uninit = () => {
      this.doc.removeEventListener('selectionchange', onSelectionChange);
      this.editor.off('editor-change', onEditorChange);
      this.editor.off('render', rerender);
      Object.keys(this.modules).forEach(key => {
        const api = this.modules[key];
        if (api && typeof api.onDestroy === 'function') api.onDestroy();
        delete this.modules[key];
      });
      delete this.uninit;
    }
  }
开发者ID:jacwright,项目名称:typewriter,代码行数:45,代码来源:view.ts


示例2: updateEditorSelection

  /**
   * Update the editor's selection to match the browser's selection.
   *
   * @param {String} source The source of the selection change, api, user, or silent
   */
  updateEditorSelection(source: string = SOURCE_API) {
    if (this._settingBrowserSelection) return this._settingBrowserSelection = false;
    const range = this.getSelection();

    // Store the last non-null selection for restoration on focus()
    if (range) this.lastSelection = range;

    this._settingEditorSelection = true;
    this.editor.setSelection(range, source);
    this._settingEditorSelection = false;

    // If the selection was adjusted when set then update the browser's selection
    const selection = this.getBrowserSelection();
    if (!shallowEqual(range, this.editor.selection) || (range && range[0] === range[1] && selection && selection.type === 'Range')) {
      this.updateBrowserSelection();
    }
  }
开发者ID:jacwright,项目名称:typewriter,代码行数:22,代码来源:view.ts


示例3: onTextChange

    function onTextChange({ change, source, selection }) {
      if (source !== 'user' || !editor.selection || !isTextEntry(change)) return;

      const index = editor.selection[1];
      const lastOp = change.ops[change.ops.length - 1];
      const lastChars = editor.getText(index - 1, index) + lastOp.insert.slice(-1);

      const replaced = lastChars.replace(/(?:^|[\s\{\[\(\<'"\u2018\u201C])(")$/, '“')
              .replace(/"$/, '”')
              .replace(/(?:^|[\s\{\[\(\<'"\u2018\u201C])(')$/, '‘')
              .replace(/'$/, '’');

      if (replaced !== lastChars) {
        const quote = replaced.slice(-1);
        lastOp.insert = lastOp.insert.slice(0, -1) + quote;
        editor.updateContents(change, source, selection);
        return false;
      }
    }
开发者ID:jacwright,项目名称:typewriter,代码行数:19,代码来源:smart-quotes.ts


示例4: onTextChange

    function onTextChange({ change, source }) {
      if (ignore || source !== 'user' || !editor.selection || !isTextEntry(change)) return;
      const index = editor.selection[1];
      const text = editor.getExactText();
      const lineStart = text.lastIndexOf('\n', index - 1) + 1;
      const prefix = text.slice(lineStart, index);

      ignore = true;
      handlers.some(handler => handler(editor, index, prefix));
      ignore = false;
    }
开发者ID:jacwright,项目名称:typewriter,代码行数:11,代码来源:smart-entry.ts


示例5: flattenBlock

 function flattenBlock(line, force?: boolean) {
   const block = paper.blocks.findByAttributes(line.attributes, true);
   if (block.indentable && line.attributes.indent) {
     onTab(new CustomEvent('shortcut', { detail: 'Shift+Tab' }));
     return true;
   }
   if (block && (force || block !== paper.blocks.getDefault() && !block.defaultFollows)) {
     editor.formatLine(from, {}, SOURCE_USER);
     return true;
   }
 }
开发者ID:jacwright,项目名称:typewriter,代码行数:11,代码来源:input.ts


示例6: action

 function action(event: Event, source: string, dest: string) {
   if (event.defaultPrevented) return;
   event.preventDefault();
   if (stack[source].length === 0) return;
   const entry = stack[source].pop();
   stack[dest].push(entry);
   cutoff();
   ignoreChange = true;
   if (typeof entry[source] === 'function') {
     entry[source]();
   } else {
     editor.updateContents(entry[source], SOURCE_USER, entry[source + 'Selection']);
   }
   ignoreChange = false;
 }
开发者ID:jacwright,项目名称:typewriter,代码行数:15,代码来源:history.ts


示例7: onTab

    function onTab(event: CustomEvent) {
      if (event.defaultPrevented) return;
      event.preventDefault();
      const shortcut = event.detail;

      const direction = shortcut === 'Tab' || shortcut === 'Mod+]' ? 1 : -1;
      const [ from, to ] = editor.getSelectedRange();
      const lines = editor.contents.getLines(from, to);

      editor.transaction(() => {
        lines.forEach(line => {
          const block = paper.blocks.findByAttributes(line.attributes, true);
          if (block.indentable) {
            const indent = (line.attributes.indent || 0) + direction;
            if (indent < 0) {
              editor.formatLine(line.start, {});
            } else {
              const attributes = { ...line.attributes, indent };
              editor.formatLine(line.start, attributes);
            }
          }
        });
      }, SOURCE_USER);
    }
开发者ID:jacwright,项目名称:typewriter,代码行数:24,代码来源:input.ts


示例8: getTextChange

    // Undo a DOM mutation so that the view can update it correctly if needed
    function getTextChange(list: MutationRecord[]): Delta {
      const mutation = getTextChangeMutation(list);
      if (!mutation) return;

      const change = editor.delta();
      const index = getNodeIndex(root, paper, mutation.target);
      change.retain(index);
      const diffs = diff(mutation.oldValue.replace(/\xA0/g, ' '), mutation.target.nodeValue.replace(/\xA0/g, ' '));
      diffs.forEach(([ action, string ]) => {
        if (action === diff.EQUAL) change.retain(string.length);
        else if (action === diff.DELETE) change.delete(string.length);
        else if (action === diff.INSERT) {
          change.insert(string, editor.activeFormats);
        }
      });
      change.chop();
      return change;
    }
开发者ID:jacwright,项目名称:typewriter,代码行数:19,代码来源:input.ts


示例9: setHTML

 /**
  * Set a string of HTML to be the contents of the editor. It will be parsed using Paper so incorrectly formatted HTML
  * cannot be set in Typewriter.
  *
  * @param {String} html A string of HTML to set in the editor
  * @param {*} source    The source of the change being made, api, user, or silent
  */
 setHTML(html: string, source: any) {
   this.editor.setContents(deltaFromHTML(this, html), source);
 }
开发者ID:jacwright,项目名称:typewriter,代码行数:10,代码来源:view.ts


示例10: getAllBounds

 /**
  * Get all positions and sizes of a range as it is displayed in the DOM relative to the top left of visible document.
  * This is different from `getBounds` because instead of a single bounding box you may get multiple rects such as when
  * the selection is split across lines. You can use `getAllBounds` to draw a highlight behind the text within this
  * range.
  *
  * @param {Number} from The start of the range
  * @param {Number} to   The end of the range
  * @returns {DOMRectList}   A native DOMRect object with the bounds of the range
  */
 getAllBounds(from: number, to: number): DOMRectList {
   let range = this.editor._normalizeRange(from, to);
   range = this.editor.getSelectedRange(range);
   return getAllBounds(this.root, this.paper, range);
 }
开发者ID:jacwright,项目名称:typewriter,代码行数:15,代码来源:view.ts



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


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
TypeScript common.Logger类代码示例发布时间:2022-05-28
下一篇:
TypeScript editor.Delta类代码示例发布时间:2022-05-28
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap