Monaco Editor / react-monaco-editor 的使用 附編輯器計(jì)算框在光標(biāo)位置插入文本解決方案

編輯器計(jì)算框在光標(biāo)位置插入解決方案:
https://github.com/microsoft/monaco-editor/issues/584

本文用的是react-monaco-editor
本文的git地址: https://github.com/ysk1991/react-monaco-editor

子組件

import React from 'react'
import * as monaco from 'monaco-editor/esm/vs/editor/editor.api'
import MonacoEditor from 'react-monaco-editor'
import { get_rule_function } from '../../services/api.js'

class DEditor extends React.Component {
  constructor(props) {
    super(props)
    this.monacoEditorRef = React.createRef()
    this.state = {
      setRuleContent: [], // 規(guī)則導(dǎo)入的中文 插入到計(jì)算框
      tipList: [], // 儲存計(jì)算框提示語的首字母
      suggestions: [], // 儲存提示語
      calculateValue: ''
    }
  }

  componentWillMount() {
    // 攔截判斷是否離開當(dāng)前頁面
    window.addEventListener('beforeunload', this.beforeunload)
  }

  componentDidMount() {
    this.setState({
      calculateValue: this.props.calculateValue
    })
  }

  componentWillReceiveProps(nextProps) {
    // nextProps.setRuleContent設(shè)置成一個(gè)數(shù)組 每一次讀取數(shù)組的最后一個(gè)元素 然后在光標(biāo)的位置插入編輯器
    if (this.state.setRuleContent !== nextProps.setRuleContent) {
      this.setState({
        setRuleContent: nextProps.setRuleContent
      })
      const editor = this.monacoEditorRef.current.editor
      const p = editor.getPosition()
      editor.executeEdits('',
        [
          {
            range: new monaco.Range(p.lineNumber,
              p.column,
              p.lineNumber,
              p.column),
            text: nextProps.setRuleContent[nextProps.setRuleContent.length - 1]
          }
        ]
      )
    }
    // 編輯框的值
    if (this.state.calculateValue !== nextProps.calculateValue) {
      this.setState({
        calculateValue: nextProps.calculateValue
      })
    }
  }

  beforeunload() {
    // 如果是刷新頁面 清空sessionStorage
    sessionStorage.removeItem('isLoadDEditor')
  }

  // 自定義按鍵提示的數(shù)據(jù)請求
  requestList = async() => {
    const list = []
    const tipList = [':']
    const res = await get_rule_function()
    if (res.data.responseCode) return
    const responseData = res.data.responseData
    responseData.map(item => {
      const obj = {}
      obj.label = item.content
      obj.insertText = item.content
      obj.detail = item.symbolName
      list.push(obj)
      tipList.push(item.content.substring(0, 1))
      return null
    })
    this.setState({
      suggestions: list,
      tipList: tipList
    })
  }

  onBlur = () => {
    const { calculateValue } = this.state
    this.props.value(calculateValue)
    if (calculateValue) {
      this.props.isEditorErrFn(false)
    }
  }

  onChangeHandle = (value, e) => {
    this.setState({
      calculateValue: value
    })
  }

  editorDidMountHandle = async(editor, monaco) => {
    // 執(zhí)行過就不再執(zhí)行 當(dāng)頁面關(guān)閉就重新記錄 因?yàn)槎啻螆?zhí)行了這個(gè)方法導(dǎo)致重復(fù)數(shù)據(jù)
    const isLoadDEditor = sessionStorage.getItem('isLoadDEditor')
    if (isLoadDEditor !== '1') {
      sessionStorage.setItem('isLoadDEditor', '1')
      await this.requestList()
      const { suggestions, tipList } = this.state
      if (suggestions.length) {
        monaco.languages.registerCompletionItemProvider('plaintext', {
          provideCompletionItems() {
            // console.log('這個(gè)地方互捌,每一次路由變動膘掰,就會多執(zhí)行一次,導(dǎo)致我的按鍵提示重復(fù)展示')
            return {
              suggestions: suggestions.map(item => ({ ...item, kind: monaco.languages.CompletionItemKind.Variable }))
            }
          },
          triggerCharacters: tipList
        })
      }
      this.timeouter = setTimeout(() => {
        editor.getAction('editor.action.formatDocument').run()
      }, 300)
    }
  }

  options = {
    selectOnLineNumbers: true,
    renderSideBySide: false
  }

  render() {
    return (
      <div onBlur={this.onBlur}>
        <MonacoEditor
          ref={this.monacoEditorRef}
          width='900'
          height='200'
          language='plaintext'
          theme='vs-dark'
          value={this.state.calculateValue}
          options={this.options}
          onChange={this.onChangeHandle}
          editorDidMount={this.editorDidMountHandle}
        />
      </div>
    )
  }
}

export default DEditor

父組件

import React from 'react'
import Loadable from 'react-loadable'
import { MyLoadingComponent } from '../utils/utils'

const Editor = Loadable({
  loader: () => import('../components/Editor'),
  loading: MyLoadingComponent
})

class Calculate extends React.Component {
  constructor() {
    super()
    this.editorRef = React.createRef()
  }

  state = {
    setRuleContent: [], // 規(guī)則導(dǎo)入的中文 插入到計(jì)算框
    componentContentCn: '', // 計(jì)算框的內(nèi)容
    isEditorErr: false // 控制計(jì)算框的報(bào)錯
  }

  // 將計(jì)算框的值傳遞出去
  getValue = (componentContentCn) => {
    this.setState({
      componentContentCn
    })
    this.props.value(componentContentCn)
  }

  render() {
    return (
      <Editor
        ref={this.editorRef}
        value={this.getValue}
        calculateValue={this.state.componentContentCn}
        setRuleContent={this.state.setRuleContent}
      ></Editor>
    )
  }
}

export default Calculate

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末所意,一起剝皮案震驚了整個(gè)濱河市脊僚,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌朴译,老刑警劉巖,帶你破解...
    沈念sama閱讀 206,311評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件绰播,死亡現(xiàn)場離奇詭異眠寿,居然都是意外死亡躬柬,警方通過查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,339評論 2 382
  • 文/潘曉璐 我一進(jìn)店門拾给,熙熙樓的掌柜王于貴愁眉苦臉地迎上來祥得,“玉大人兔沃,你說我怎么就攤上這事】谢Γ” “怎么了粘拾?”我有些...
    開封第一講書人閱讀 152,671評論 0 342
  • 文/不壞的土叔 我叫張陵,是天一觀的道長创千。 經(jīng)常有香客問我缰雇,道長,這世上最難降的妖魔是什么追驴? 我笑而不...
    開封第一講書人閱讀 55,252評論 1 279
  • 正文 為了忘掉前任械哟,我火速辦了婚禮,結(jié)果婚禮上殿雪,老公的妹妹穿的比我還像新娘暇咆。我一直安慰自己,他們只是感情好丙曙,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,253評論 5 371
  • 文/花漫 我一把揭開白布爸业。 她就那樣靜靜地躺著,像睡著了一般亏镰。 火紅的嫁衣襯著肌膚如雪扯旷。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,031評論 1 285
  • 那天索抓,我揣著相機(jī)與錄音钧忽,去河邊找鬼。 笑死逼肯,一個(gè)胖子當(dāng)著我的面吹牛耸黑,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播篮幢,決...
    沈念sama閱讀 38,340評論 3 399
  • 文/蒼蘭香墨 我猛地睜開眼大刊,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了洲拇?” 一聲冷哼從身側(cè)響起奈揍,我...
    開封第一講書人閱讀 36,973評論 0 259
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎赋续,沒想到半個(gè)月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體另患,經(jīng)...
    沈念sama閱讀 43,466評論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡纽乱,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 35,937評論 2 323
  • 正文 我和宋清朗相戀三年,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了昆箕。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片鸦列。...
    茶點(diǎn)故事閱讀 38,039評論 1 333
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡租冠,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出薯嗤,到底是詐尸還是另有隱情顽爹,我是刑警寧澤,帶...
    沈念sama閱讀 33,701評論 4 323
  • 正文 年R本政府宣布骆姐,位于F島的核電站镜粤,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏玻褪。R本人自食惡果不足惜肉渴,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,254評論 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望带射。 院中可真熱鬧同规,春花似錦、人聲如沸窟社。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,259評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽灿里。三九已至关炼,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間钠四,已是汗流浹背盗扒。 一陣腳步聲響...
    開封第一講書人閱讀 31,485評論 1 262
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留缀去,地道東北人侣灶。 一個(gè)月前我還...
    沈念sama閱讀 45,497評論 2 354
  • 正文 我出身青樓,卻偏偏與公主長得像缕碎,于是被迫代替她去往敵國和親褥影。 傳聞我的和親對象是個(gè)殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,786評論 2 345

推薦閱讀更多精彩內(nèi)容