Webpack using native JS and react to build the project separately

Source: Internet
Author: User

  • Native JS:
    A. HEAD.JSX:
    function head(){var head = document.createElement(‘div‘)head.setAttribute(‘class‘,‘head‘)head.innerHTML = "head"return head}module.exports = head

    B. TABLE.JSX:

    function table(){var table = document.createElement(‘table‘)table.setAttribute(‘class‘,‘table‘)var thead = document.createElement(‘thead‘)var tbody = document.createElement(‘tbody‘)var tdh = document.createElement(‘td‘)var tdb = document.createElement(‘td‘)var tnh = document.createTextNode(‘title‘)var tnb = document.createTextNode(‘body‘)tdh.appendChild(tnh)tdb.appendChild(tnb)thead.appendChild(tdh)tbody.appendChild(tdb)table.appendChild(thead)table.appendChild(tbody)return table}module.exports = table

    C. FOOT.JSX:

    function foot(){var foot = document.createElement(‘div‘)foot.setAttribute(‘class‘,‘foot‘)foot.innerHTML = "foot"return foot}module.exports = foot

    D. Test.less:

    .color(@color;@background){color:@color;background:@background;}.table(){border-collapse:collapse;border:1px solid black;padding:1vh 1vw;}.head{.color(red,yellow);}.table{.table();}.foot{.color(white,black);}

    E. Index.js:

    var head = require(‘./static/jsx/head.jsx‘)var table = require(‘./static/jsx/table.jsx‘)var foot = require(‘./static/jsx/foot.jsx‘)require(‘./static/less/test.less‘)document.body.appendChild(head())document.body.appendChild(table())document.body.appendChild(foot())

    F. index.html:

    <!doctype html>

    G. Effect:

  • React
    A. HEAD.JSX:
    var React = require(‘react‘)var CreateReactClass = require(‘create-react-class‘)var head = CreateReactClass({render:function(){    return(            <div class="head">head</div>        )}})module.exports = head

    B. TABLE.JSX:

    var React = require(‘react‘)var CreateReactClass = require(‘create-react-class‘)var table = CreateReactClass({render:function(){    return(            <table class="table">                <thead>                    <td>head</td>                </thead>                <tbody>                    <td>body</td>                </tbody>            </table>        )}})module.exports = table

    C. FOOT.JSX:

    var React = require(‘react‘)var CreateReactClass = require(‘create-react-class‘)var foot = CreateReactClass({render:function(){    return(            <div class="foot">foot</div>        )}})module.exports = foot

    D. Test.less:

    .color(@color;@background){color:@color;background:@background;}.table(){border-collapse:collapse;border:1px solid black;padding:1vh 1vw;}.head{.color(red,yellow);}.table{.table();}.foot{.color(white,black);}

    E. Index.js:

    var React = require(‘react‘)var ReactDom = require(‘react-dom‘)var CreateReactClass = require(‘create-react-class‘)var Head = require(‘./static/jsx/head.jsx‘)var Table = require(‘./static/jsx/table.jsx‘)var Foot = require(‘./static/jsx/foot.jsx‘)require(‘./static/less/test.less‘)var App = CreateReactClass({render:function(){    return(            <div>                <Head/>                <Table/>                <Foot/>            </div>        )}})ReactDom.render(    <App/>    ,    document.getElementById(‘app‘))

    F. index.html:

    <!doctype html>

    G. Effect:

  • Webpack using native JS and react to build the project separately

    Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.