實(shí)現(xiàn)一個(gè)簡易版本的REACT

0、簡單介紹

react里包含有豐富的api 有興趣可以看一下 React.js源碼

const React = {
  Children: {
    map,
    forEach,
    count,
    toArray,
    only,
  },

  createRef,
  Component,
  PureComponent,
  createContext,
  forwardRef,
  lazy,
  memo,

  ...
  useContext,
  useEffect,
  useMemo,
  useReducer,
  useRef,
  useState,
  ...
};

這里主要實(shí)現(xiàn)3個(gè)最常用的API:

React.createElement  // 返回虛擬dom
React.Component // 實(shí)現(xiàn)組件的自定義
ReactDOM.render // 創(chuàng)建真實(shí)dom

1喧兄、React.createElement

我們在打包編譯react項(xiàng)目的時(shí)候盲再,實(shí)際上會(huì)有一個(gè)jsx轉(zhuǎn)換成普通的js代碼的過程。
如jsx:


image.png

會(huì)被轉(zhuǎn)換為:


image.png

看一下 React.createElement源碼

/**
 * Create and return a new ReactElement of the given type.
 * See https://reactjs.org/docs/react-api.html#createelement
 */
export function createElement(type, config, children) {
  let propName;

  // Reserved names are extracted
  const props = {};

  let key = null;
  let ref = null;
  let self = null;
  let source = null;
  // ... 中間省略
  return ReactElement(
    type,
    key,
    ref,
    self,
    source,
    ReactCurrentOwner.current,
    props,
  );
}

可以看到react源碼里定義的 createElement 接收了3個(gè)參數(shù)(超過3個(gè)時(shí)會(huì)從arguments取)撒璧,返回了ReactElement函數(shù)的運(yùn)行結(jié)果 ,其實(shí)返回的就是vdom笨使。
按照這個(gè)邏輯卿樱,可以實(shí)現(xiàn)一個(gè)簡化版的createElement。

實(shí)現(xiàn)一個(gè)簡單的createElement:

function createElement(type, props, ...children) {
    return {
        type,
        props,
        children
    }
}

看起來過于簡潔了... 但是對(duì)于簡單實(shí)現(xiàn)已經(jīng)夠用了 :)硫椰。

2繁调、ReactDOM.render

ReactDOM.render源碼

export function render(
  element: React$Element<any>,
  container: DOMContainer,
  callback: ?Function,
) {
  // ...省略
  return legacyRenderSubtreeIntoContainer(
    null,
    element,
    container,
    false,
    callback,
  );
}

react里的render的功能還是非常復(fù)雜的,涉及比較多的代碼靶草,這里只能展示一小部分蹄胰。
對(duì)于簡化版的render, 接收2個(gè)參數(shù):vnode奕翔、根節(jié)點(diǎn)裕寨,然后將vnode轉(zhuǎn)換成真實(shí)節(jié)點(diǎn)插入根節(jié)點(diǎn)。對(duì)于vnode的類型派继,分為3類來處理:字符串宾袜、函數(shù)、原生html節(jié)點(diǎn)驾窟。

實(shí)現(xiàn)一個(gè)簡單的render:

function render(vnode, container) {
  return container.appendChild(createDom(vnode));
}

// 將vdom轉(zhuǎn)換為真實(shí)dom
function createDom(vnode) {
  // 純字符 直接創(chuàng)建文件節(jié)點(diǎn)
  if (typeof vnode === 'string') {
    const node = document.createTextNode(vnode);
    return node;
  }

  // 處理 函數(shù)和類組件
  if (typeof vnode.tag === 'function') {
    return createComponentDom(vnode.tag, vnode.attrs)
  }

  // 處理原生節(jié)點(diǎn)
  const node = document.createElement(vnode);
  if (vnode.props) {
    Object.keys(node.props).forEach((k) => {
        setAttr(node, k, vnode.props[key]);
    })
  }
  // 遞歸處理所有的子節(jié)點(diǎn)
  vnode.children.forEach(child => {
    return render(child, node);
  })
  return node;
}

function setAttr(node, key, val) {
  // 還需要增加判斷key的各種情況  如 style htmlFor等等
  if (key === 'className') {
    node.setAttribute('class', val);
  } else {
    node.setAttribute(key, val);
  }
}

3庆猫、實(shí)現(xiàn)component

在使用react的時(shí)候,類組件總是要繼承component纫普,并且經(jīng)常要使用setState這個(gè)方法 下面先看一下 component源碼

/**
 * Base class helpers for the updating state of a component.
 */
function Component(props, context, updater) {
  this.props = props;
  this.context = context;
  // If a component has string refs, we will assign a different object later.
  this.refs = emptyObject;
  // We initialize the default updater but the real one gets injected by the
  // renderer.
  this.updater = updater || ReactNoopUpdateQueue;
}

Component.prototype.isReactComponent = {};
//... 省略部分代碼和注釋
Component.prototype.setState = function(partialState, callback) {
  invariant(
    typeof partialState === 'object' ||
      typeof partialState === 'function' ||
      partialState == null,
    'setState(...): takes an object of state variables to update or a ' +
      'function which returns an object of state variables.',
  );
  this.updater.enqueueSetState(this, partialState, callback, 'setState');
};

可以看到這是一個(gè)構(gòu)造函數(shù)阅悍,并且setState這個(gè)方法里最終執(zhí)行了

this.updater.enqueueSetState(...)

實(shí)際上setState就是異步的。按照源碼昨稼,下面來實(shí)現(xiàn)一個(gè)簡單的component节视。

實(shí)現(xiàn)一個(gè)簡單的component

class component {
  // 標(biāo)識(shí)類組件
  static isClassComponent = true
  constructor(props) {
    this.props = props
    this.state = {}
  }
  setState(newState) {
    this.state = Object.assign({}, this.state, newState)
    renderComponent(this)
  }
}

// 返回組件渲染后的dom
function createComponentDom(component, props) {
  let node;
  if (component.isClassComponent) {
    // 類組件 創(chuàng)建實(shí)例
    const instance = new component();
    node = renderComponent(instance);
  } else {
    // 函數(shù)組件 直接運(yùn)行得到vdom
    const vnode = component(props);
    node = createDom(vnode);
  }
  return node;
}

// 傳入類組件的實(shí)例,渲染類組件
function renderComponent(componentObj) {
  let base;
  const vnode = componentObj.render();
  base = createDom(vnode);
  if (componentObj.base && componentObj.base.parentNode) {
    componentObj.base.parentNode.replaceChild(base, componentObj.base);
  }
  componentObj.base = base;
}

至此假栓,一個(gè)簡易的react算是完成了寻行。

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市匾荆,隨后出現(xiàn)的幾起案子拌蜘,更是在濱河造成了極大的恐慌杆烁,老刑警劉巖,帶你破解...
    沈念sama閱讀 212,884評(píng)論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件简卧,死亡現(xiàn)場離奇詭異兔魂,居然都是意外死亡,警方通過查閱死者的電腦和手機(jī)举娩,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,755評(píng)論 3 385
  • 文/潘曉璐 我一進(jìn)店門析校,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人铜涉,你說我怎么就攤上這事智玻。” “怎么了芙代?”我有些...
    開封第一講書人閱讀 158,369評(píng)論 0 348
  • 文/不壞的土叔 我叫張陵吊奢,是天一觀的道長。 經(jīng)常有香客問我纹烹,道長页滚,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 56,799評(píng)論 1 285
  • 正文 為了忘掉前任滔韵,我火速辦了婚禮逻谦,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘陪蜻。我一直安慰自己邦马,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,910評(píng)論 6 386
  • 文/花漫 我一把揭開白布宴卖。 她就那樣靜靜地躺著滋将,像睡著了一般。 火紅的嫁衣襯著肌膚如雪症昏。 梳的紋絲不亂的頭發(fā)上随闽,一...
    開封第一講書人閱讀 50,096評(píng)論 1 291
  • 那天,我揣著相機(jī)與錄音肝谭,去河邊找鬼掘宪。 笑死,一個(gè)胖子當(dāng)著我的面吹牛攘烛,可吹牛的內(nèi)容都是我干的魏滚。 我是一名探鬼主播,決...
    沈念sama閱讀 39,159評(píng)論 3 411
  • 文/蒼蘭香墨 我猛地睜開眼坟漱,長吁一口氣:“原來是場噩夢啊……” “哼鼠次!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,917評(píng)論 0 268
  • 序言:老撾萬榮一對(duì)情侶失蹤腥寇,失蹤者是張志新(化名)和其女友劉穎成翩,沒想到半個(gè)月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體赦役,經(jīng)...
    沈念sama閱讀 44,360評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡麻敌,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,673評(píng)論 2 327
  • 正文 我和宋清朗相戀三年,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了掂摔。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片庸论。...
    茶點(diǎn)故事閱讀 38,814評(píng)論 1 341
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡,死狀恐怖棒呛,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情域携,我是刑警寧澤簇秒,帶...
    沈念sama閱讀 34,509評(píng)論 4 334
  • 正文 年R本政府宣布,位于F島的核電站秀鞭,受9級(jí)特大地震影響趋观,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜锋边,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 40,156評(píng)論 3 317
  • 文/蒙蒙 一皱坛、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧豆巨,春花似錦剩辟、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,882評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至萍膛,卻和暖如春吭服,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背蝗罗。 一陣腳步聲響...
    開封第一講書人閱讀 32,123評(píng)論 1 267
  • 我被黑心中介騙來泰國打工艇棕, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人串塑。 一個(gè)月前我還...
    沈念sama閱讀 46,641評(píng)論 2 362
  • 正文 我出身青樓沼琉,卻偏偏與公主長得像,于是被迫代替她去往敵國和親拟赊。 傳聞我的和親對(duì)象是個(gè)殘疾皇子刺桃,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,728評(píng)論 2 351