jsoneditor二次封裝實(shí)時(shí)預(yù)覽json編輯器組件react版_第1頁(yè)
jsoneditor二次封裝實(shí)時(shí)預(yù)覽json編輯器組件react版_第2頁(yè)
jsoneditor二次封裝實(shí)時(shí)預(yù)覽json編輯器組件react版_第3頁(yè)
jsoneditor二次封裝實(shí)時(shí)預(yù)覽json編輯器組件react版_第4頁(yè)
jsoneditor二次封裝實(shí)時(shí)預(yù)覽json編輯器組件react版_第5頁(yè)
已閱讀5頁(yè),還剩8頁(yè)未讀 繼續(xù)免費(fèi)閱讀

下載本文檔

版權(quán)說(shuō)明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請(qǐng)進(jìn)行舉報(bào)或認(rèn)領(lǐng)

文檔簡(jiǎn)介

第jsoneditor二次封裝實(shí)時(shí)預(yù)覽json編輯器組件react版目錄前言設(shè)計(jì)思路正文jsoneditor的使用結(jié)合react進(jìn)行二次封裝

前言

做為一名前端開(kāi)發(fā)人員,掌握vue/react/angular等框架已經(jīng)是必不可少的技能了,我們都知道,vue或react等MVVM框架提倡組件化開(kāi)發(fā),這樣一方面可以提高組件復(fù)用性和可擴(kuò)展性,另一方面也帶來(lái)了項(xiàng)目開(kāi)發(fā)的靈活性和可維護(hù),方便多人開(kāi)發(fā)協(xié)作.接下來(lái)文章將介紹如何使用react,開(kāi)發(fā)一個(gè)自定義json編輯器組件.我們這里使用了jsoneditor這個(gè)第三方庫(kù),官方地址:jsoneditor通過(guò)實(shí)現(xiàn)一個(gè)json在線編輯器,來(lái)學(xué)習(xí)如何一步步封裝自己的組件(不限于react,vue,原理類似).

你將學(xué)到:

react組件封裝的基本思路SOLID(面向?qū)ο笤O(shè)計(jì))原則介紹jsoneditor用法使用PropTypes做組件類型檢查

設(shè)計(jì)思路

在介紹組件設(shè)計(jì)思路之前,有必要介紹一下著名的SOLID原則.

SOLID(單一功能、開(kāi)閉原則、里氏替換、接口隔離以及依賴反轉(zhuǎn))是由羅伯特C馬丁提出的面向?qū)ο缶幊毯兔嫦驅(qū)ο笤O(shè)計(jì)的五個(gè)基本原則。利用這些原則,程序員能更容易和高效的開(kāi)發(fā)一個(gè)可維護(hù)和擴(kuò)展的系統(tǒng)。SOLID被典型的應(yīng)用在測(cè)試驅(qū)動(dòng)開(kāi)發(fā)上,并且是敏捷開(kāi)發(fā)以及自適應(yīng)軟件開(kāi)發(fā)的基本原則的重要組成部分。

S單一功能原則:規(guī)定每個(gè)類都應(yīng)該有一個(gè)單一的功能,并且該功能應(yīng)該由這個(gè)類完全封裝起來(lái)。所有它的服務(wù)都應(yīng)該嚴(yán)密的和該功能保持一致。O開(kāi)閉原則:規(guī)定軟件中的對(duì)象(類,模塊,函數(shù)等等)應(yīng)該對(duì)于擴(kuò)展是開(kāi)放的,但是對(duì)于修改是封閉的,這意味著一個(gè)實(shí)體是允許在不改變它的源代碼的前提下變更它的行為。遵循這種原則的代碼在擴(kuò)展時(shí)并不需要改變。L里氏替換原則:派生類(子類)對(duì)象可以在程序中代替其基類(超類)對(duì)象,是對(duì)子類型的特別定義.I接口隔離原則:指明應(yīng)用或者對(duì)象應(yīng)該不依賴于它不使用的方法。接口隔離原則(ISP)拆分非常龐大臃腫的接口成為更小的和更具體的接口,這樣應(yīng)用或?qū)ο笾恍枰浪鼈兏信d趣的方法。這種縮小的接口也被稱為角色接口。接口隔離原則(ISP)的目的是系統(tǒng)去耦合,從而容易重構(gòu),更改和重新部署。接口隔離原則是在SOLID(面向?qū)ο笤O(shè)計(jì))中五個(gè)面向?qū)ο笤O(shè)計(jì)(OOD)的原則之一,類似于在GRASP(面向?qū)ο笤O(shè)計(jì))中的高內(nèi)聚性。D依賴反轉(zhuǎn)原則:是指一種特定的解耦形式,使得高層次的模塊不依賴于低層次的模塊的實(shí)現(xiàn)細(xì)節(jié),依賴關(guān)系被顛倒(反轉(zhuǎn)),從而使得低層次模塊依賴于高層次模塊的需求抽象。

掌握好這5個(gè)原則將有利于我們開(kāi)發(fā)出更優(yōu)秀的組件,請(qǐng)默默記住.接下來(lái)我們來(lái)看看json編輯器的設(shè)計(jì)思路.

如上所示,和任何一個(gè)輸入框一樣,參考antd組件設(shè)計(jì)方式并兼容antd的form表單,我們提供了onChange方法.(具體細(xì)節(jié)下文會(huì)詳細(xì)介紹)

首先利用jsoneditor渲染的基本樣式以及API,我們能實(shí)現(xiàn)一個(gè)基本可用的json編輯器,然后通過(guò)對(duì)外暴露的json和onChange屬性進(jìn)行數(shù)據(jù)雙向綁定,通過(guò)onError來(lái)監(jiān)控異?;蛘咻斎氲腻e(cuò)誤,通過(guò)themeBgColor來(lái)修改默認(rèn)的主題色,通過(guò)這幾個(gè)接口,我們便能完全掌握一個(gè)組件的運(yùn)行情況.

正文

接下來(lái)我們就正式開(kāi)始我們的正文.由于本文的組件是基于react實(shí)現(xiàn)的,但是用在vue,angular上,基本模式同樣適用.關(guān)鍵就是掌握好不同框架的生命周期.

在學(xué)習(xí)實(shí)現(xiàn)json編輯器組件之前,我們有必要了解一下jsoneditor這個(gè)第三方組件的用法與api.

jsoneditor的使用

我們先執(zhí)行npminstall安裝我們的組件

npminstalljsoneditor

其次手動(dòng)引入樣式文件

linkhref="jsoneditor/dist/jsoneditor.min.css"rel="externalnofollow"rel="stylesheet"type="text/css"

這樣,我們就能使用它的api了:

divid="jsoneditor"/div

script

//創(chuàng)建編輯器

varcontainer=document.getElementById("jsoneditor");

vareditor=newJSONEditor(container);

//設(shè)置json數(shù)據(jù)

functionsetJSON(){

varjson={

"Array":[1,2,3],

"Boolean":true,

"Null":null,

"Number":123,

"Object":{"a":"b","c":"d"},

"String":"HelloWorld"

editor.set(json);

//獲取json數(shù)據(jù)

functiongetJSON(){

varjson=editor.get();

alert(JSON.stringify(json,null,2));

/script

所以你可能看到如下界面:

為了能實(shí)現(xiàn)實(shí)時(shí)預(yù)覽和編輯,光這樣還遠(yuǎn)遠(yuǎn)不夠,我們還需要進(jìn)行額外的處理.我們需要用到j(luò)soneditor其他的api和技巧.

結(jié)合react進(jìn)行二次封裝

基于以上談?wù)?我們很容易將編輯器封裝成react組件,我們只需要在componentDidMount生命周期里初始化實(shí)例即可.react代碼可能是這樣的:

importReact,{PureComponent}from'react'

importJSONEditorfrom'jsoneditor'

import'jsoneditor/dist/jsoneditor.css'

classJsonEditorextendsPureComponent{

initJsonEditor=()={

constoptions={

mode:'code',

history:true,

onChange:this.onChange,

onValidationError:this.onError

this.jsoneditor=newJSONEditor(this.container,options)

this.jsoneditor.set(ps.value)

componentDidMount(){

this.initJsonEditor()

componentWillUnmount(){

if(this.jsoneditor){

this.jsoneditor.destroy()

render(){

returndivclassName="jsoneditor-react-container"ref={elem=this.container=elem}/

exportdefaultJsonEditor

至于options里的選項(xiàng),我們可以參考jsoneditor的API文檔,里面寫(xiě)的很詳細(xì),通過(guò)以上代碼,我們便可以實(shí)現(xiàn)一個(gè)基本的react版的json編輯器組件.接下來(lái)我們來(lái)按照設(shè)計(jì)思路一步步實(shí)現(xiàn)可實(shí)時(shí)預(yù)覽的json編輯器組件.

實(shí)現(xiàn)預(yù)覽和編輯視圖

其實(shí)這一點(diǎn)很好實(shí)現(xiàn),我們只需要實(shí)例化2個(gè)編輯器實(shí)例,一個(gè)用于預(yù)覽,一個(gè)用于編輯就好了.

importReact,{PureComponent}from'react'

importJSONEditorfrom'jsoneditor'

import'jsoneditor/dist/jsoneditor.css'

classJsonEditorextendsPureComponent{

onChange=()={

letvalue=this.jsoneditor.get()

this.viewJsoneditor.set(value)

initJsonEditor=()={

constoptions={

mode:'code',

history:true

this.jsoneditor=newJSONEditor(this.container,options)

this.jsoneditor.set(ps.value)

initViewJsonEditor=()={

constoptions={

mode:'view'

this.viewJsoneditor=newJSONEditor(this.viewContainer,options)

this.viewJsoneditor.set(ps.value)

componentDidMount(){

this.initJsonEditor()

this.initViewJsonEditor()

componentDidUpdate(){

if(this.jsoneditor){

this.jsoneditor.update(ps.value)

this.viewJsoneditor.update(ps.value)

render(){

return(

divclassName="jsonEditWrap"

divclassName="jsoneditor-react-container"ref={elem=this.container=elem}/

divclassName="jsoneditor-react-container"ref={elem=this.viewContainer=elem}/

/div

exportdefaultJsonEditor

這樣,我們便能實(shí)現(xiàn)一個(gè)初步的可實(shí)時(shí)預(yù)覽的編輯器.可能效果長(zhǎng)這樣:

接近于成熟版,但是還有很多細(xì)節(jié)要處理.

對(duì)外暴露屬性和方法以支持不同場(chǎng)景的需要

importReact,{PureComponent}from'react'

importJSONEditorfrom'jsoneditor'

import'jsoneditor/dist/jsoneditor.css'

classJsonEditorextendsPureComponent{

//監(jiān)聽(tīng)輸入值的變化

onChange=()={

letvalue=this.jsoneditor.get()

ps.onChangeps.onChange(value)

this.viewJsoneditor.set(value)

//對(duì)外暴露獲取編輯器的json數(shù)據(jù)

getJson=()={

ps.getJsonps.getJson(this.jsoneditor.get())

//對(duì)外提交錯(cuò)誤信息

onError=(errArr)={

ps.onErrorps.onError(errArr)

initJsonEditor=()={

constoptions={

mode:'code',

history:true,

onChange:this.onChange,

onValidationError:this.onError

this.jsoneditor=newJSONEditor(this.container,options)

this.jsoneditor.set(ps.value)

initViewJsonEditor=()={

constoptions={

mode:'view'

this.viewJsoneditor=newJSONEditor(this.viewContainer,options)

this.viewJsoneditor.set(ps.value)

componentDidMount(){

this.initJsonEditor()

this.initViewJsonEditor()

//設(shè)置主題色

this.container.querySelector('.jsoneditor-menu').style.backgroundColor=ps.themeBgColor

this.container.querySelector('.jsoneditor').style.border=`thinsolid${ps.themeBgColor}`

this.viewContainer.querySelector('.jsoneditor-menu').style.backgroundColor=ps.themeBgColor

this.viewContainer.querySelector('.jsoneditor').style.border=`thinsolid${ps.themeBgColor}`

componentDidUpdate(){

if(this.jsoneditor){

this.jsoneditor.update(ps.json)

this.viewJsoneditor.update(ps.json)

render(){

return(

divclassName="jsonEditWrap"

divclassName="jsoneditor-react-container"ref={elem=this.container=elem}/

divclassName="jsoneditor-react-container"ref={elem=this.viewContainer=elem}/

/div

exportdefaultJsonEditor

通過(guò)以上的過(guò)程,我們已經(jīng)完成一大半工作了,剩下的細(xì)節(jié)和優(yōu)化工作,比如組件卸載時(shí)如何卸載實(shí)例,對(duì)組件進(jìn)行類型檢測(cè)等,我們繼續(xù)完成以上問(wèn)題.

使用PropTypes進(jìn)行類型檢測(cè)以及在組件卸載時(shí)清除實(shí)例類型檢測(cè)時(shí)react內(nèi)部支持的,安裝react的時(shí)候會(huì)自動(dòng)幫我們安裝PropTypes,具體用法可參考官網(wǎng)地址propTypes文檔,其次我們會(huì)在react的componentWillUnmount生命周期中清除編輯器的實(shí)例以釋放內(nèi)存.完整代碼如下:

importReact,{PureComponent}from'react'

importJSONEditorfrom'jsoneditor'

importPropTypesfrom'prop-types'

import'jsoneditor/dist/jsoneditor.css'

*JsonEditor

*@param{object}json用于綁定的json數(shù)據(jù)

*@param{func}onChange變化時(shí)的回調(diào)

*@param{func}getJson為外部提供回去json的方法

*@param{func}onError為外部提供json格式錯(cuò)誤的回調(diào)

*@param{string}themeBgColor為外部暴露修改主題色

classJsonEditorextendsPureComponent{

onChange=()={

letvalue=this.jsoneditor.get()

ps.onChangeps.onChange(value)

this.viewJsoneditor.set(value)

getJson=()={

ps.getJsonps.getJson(this.jsoneditor.get())

onError=(errArr)={

ps.onErrorps.onError(errArr)

initJsonEditor=()={

constoptions={

mode:'code',

history:true,

onChange:this.onChange,

onValidationError:this.onError

this.jsoneditor=newJSONEditor(this.container,options)

this.jsoneditor.set(ps.value)

initViewJsonEditor=()={

constoptions={

mode:'view'

this.viewJsoneditor=newJSONEditor(this.viewContainer,options)

this.viewJsoneditor.set(ps.value)

componentDidMount(){

this.initJsonEditor()

this.initViewJsonEditor()

//設(shè)置主題色

this.container.querySelector('.jsoneditor-menu').style.backgroundColor=ps.themeBgColor

this.container.querySelector('.jsoneditor').style.border=`thinsolid${ps.themeBgColor}`

this.viewContainer.querySelector('.jsoneditor-menu').style.backgroundColor=ps.themeBgColor

this.viewContainer.querySelector('.jsoneditor').style.border=`thinsolid${ps.themeBgColor}`

componentWillUnmount(){

if(this.jsoneditor){

this.jsoneditor.destroy()

this.viewJsoneditor.destroy()

componentDidUpdate(){

if(this.jsoneditor){

this.jsoneditor.update(ps.json)

this.viewJsoneditor.update(ps.json)

render(){

return(

divclassName="jsonEditWrap"

divclassName="jsoneditor-react-cont

溫馨提示

  • 1. 本站所有資源如無(wú)特殊說(shuō)明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請(qǐng)下載最新的WinRAR軟件解壓。
  • 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請(qǐng)聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
  • 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁(yè)內(nèi)容里面會(huì)有圖紙預(yù)覽,若沒(méi)有圖紙預(yù)覽就沒(méi)有圖紙。
  • 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
  • 5. 人人文庫(kù)網(wǎng)僅提供信息存儲(chǔ)空間,僅對(duì)用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對(duì)用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對(duì)任何下載內(nèi)容負(fù)責(zé)。
  • 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請(qǐng)與我們聯(lián)系,我們立即糾正。
  • 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶因使用這些下載資源對(duì)自己和他人造成任何形式的傷害或損失。

最新文檔

評(píng)論

0/150

提交評(píng)論