GithubHelp home page GithubHelp logo

facebookarchive / oculus-react Goto Github PK

View Code? Open in Web Editor NEW

This project forked from facebook/react

9.0 35.0 1.0 42.19 MB

A declarative, efficient, and flexible JavaScript library for building user interfaces.

Home Page: http://facebook.github.io/react/

License: Other

JavaScript 96.14% Ruby 0.39% CSS 1.92% PHP 0.10% Shell 0.02% CoffeeScript 0.62% TypeScript 0.81%

oculus-react's Introduction

React is a JavaScript library for building user interfaces.

  • Just the UI: Lots of people use React as the V in MVC. Since React makes no assumptions about the rest of your technology stack, it's easy to try it out on a small feature in an existing project.
  • Virtual DOM: React uses a virtual DOM diff implementation for ultra-high performance. It can also render on the server using Node.js — no heavy browser DOM required.
  • Data flow: React implements one-way reactive data flow which reduces boilerplate and is easier to reason about than traditional data binding.

Learn how to use React in your own project.

Examples

We have several examples on the website. Here is the first one to get you started:

var HelloMessage = React.createClass({
  render: function() {
    return <div>Hello {this.props.name}</div>;
  }
});

React.render(
  <HelloMessage name="John" />,
  document.getElementById('container')
);

This example will render "Hello John" into a container on the page.

You'll notice that we used an HTML-like syntax; we call it JSX. JSX is not required to use React, but it makes code more readable, and writing it feels like writing HTML. A simple transform is included with React that allows converting JSX into native JavaScript for browsers to digest.

Installation

The fastest way to get started is to serve JavaScript from the CDN (also available on cdnjs and jsdelivr):

<!-- The core React library -->
<script src="http://fb.me/react-0.12.2.js"></script>
<!-- In-browser JSX transformer, remove when pre-compiling JSX. -->
<script src="http://fb.me/JSXTransformer-0.12.2.js"></script>

We've also built a starter kit which might be useful if this is your first time using React. It includes a webpage with an example of using React with live code.

If you'd like to use bower, it's as easy as:

bower install --save react

Contribute

The main purpose of this repository is to continue to evolve React core, making it faster and easier to use. If you're interested in helping with that, then keep reading. If you're not interested in helping right now that's ok too. :) Any feedback you have about using React would be greatly appreciated.

Building Your Copy of React

The process to build react.js is built entirely on top of node.js, using many libraries you may already be familiar with.

Prerequisites

  • You have node installed at v0.10.0+ (it might work at lower versions, we just haven't tested).
  • You are familiar with npm and know whether or not you need to use sudo when installing packages globally.
  • You are familiar with git.

Build

Once you have the repository cloned, building a copy of react.js is really easy.

# grunt-cli is needed by grunt; you might have this installed already
npm install -g grunt-cli
npm install
grunt build

At this point, you should now have a build/ directory populated with everything you need to use React. The examples should all work.

Grunt

We use grunt to automate many tasks. Run grunt -h to see a mostly complete listing. The important ones to know:

# Build and run tests with PhantomJS
grunt test
# Build and run tests in your browser
grunt test --debug
# For speed, you can use fasttest and add --filter to only run one test
grunt fasttest --filter=ReactIdentity
# Lint the code with JSHint
grunt lint
# Wipe out build directory
grunt clean

License

React is BSD licensed. We also provide an additional patent grant.

React documentation is Creative Commons licensed.

Examples provided in this repository and in the documentation are separately licensed.

More…

There's only so much we can cram in here. To read more about the community and guidelines for submitting pull requests, please read the Contributing document.

oculus-react's People

Contributors

zpao avatar sophiebits avatar petehunt avatar chenglou avatar sebmarkbage avatar benjamn avatar vjeux avatar subtlegradient avatar yungsters avatar syranide avatar jimfb avatar mcsheffrey avatar cpojer avatar joshduck avatar jordwalke avatar fisherwebdev avatar fabiomcosta avatar mroch avatar kmeht avatar daniel15 avatar fxxkscript avatar rreverser avatar sanderspies avatar leebyron avatar jgebhardt avatar kassens avatar andreypopp avatar andrewdavey avatar piranha avatar bripkens avatar

Stargazers

Mat Garland avatar Hassan Abedi avatar JanosZhang avatar z7Le avatar  avatar liston avatar Michael Chen avatar Rory Bramwell avatar NDuma avatar

Watchers

Aaron Brady avatar Emil Hesslow avatar Abdullah Jibaly avatar Brad Dickason avatar  avatar James Cloos avatar Bernie Perez avatar Baobing Wang avatar  avatar Kumar Iyer avatar Bruce McKenzie avatar Yuriy Kagan avatar Gregory avatar  avatar Ainsley Escorce-Jones avatar Marshall Cline avatar Drew Hoskins avatar  avatar  avatar  avatar Hao Chen avatar Sagy Wiessbrod avatar Param Anand avatar Gareth avatar  avatar Alex Diehl avatar Phil Saltzman avatar  avatar  avatar David Yee avatar Srinivas Narayanan avatar  avatar  avatar Matt Dickman avatar  avatar

Forkers

itguy327

oculus-react's Issues

Output self-closing tags for void elements

While both the W3C and WHATWG consider the U+002F solidus character (/) optional part of the start tag for void elements when using HTML5 parsing, it is required for XHTML5 well-formedness.

Inserting this character into the output will have no effect on HTML5 text/html parsers. It will, however, prevent parsing errors for polyglot documents served as application/xhtml+xml.

Full list of HTML5 void elements:

Add support for XML namespaces

Polyglot markup (e.g., XHTML5) specifies a robust syntax, by which it is meant a syntax that maximizes support and minimizes authoring choice.

In order to support polyglot markup, React needs to support both element-level namespaces and attribute-level namespaces.

Required element-level namespaces:

  1. <html xmlns="http://www.w3.org/1999/xhtml">
  2. <math xmlns="http://www.w3.org/1998/Math/MathML">
  3. <svg xmlns="http://www.w3.org/2000/svg">

Note that polyglot markup does not declare any other default or prefixed element namespaces, because HTML5 does not natively support the declaring of any other default or prefixed element namespace. For this reason, we can limit support to the above list of element-level namespaces.

Required attribute-level namespace:

  1. xmlns:xlink="http://www.w3.org/1999/xlink"

Note that it is not necessary to explicitly declare the xml namespace in polyglot markup. For this reason, we can omit it from the list of required attribute-level namespaces.

Additionally, the following namespaced prefixes should be whitelisted:

  1. xlink:actuate
  2. xlink:arcrole
  3. xlink:href
  4. xlink:role
  5. xlink:show
  6. xlink:title
  7. xlink:type
  8. xml:base
  9. xml:lang
  10. xml:space
  11. xml:id

Here is an example of a minimum-viable polyglot document. It should be noted that this document must be served with a Content-Type of application/xhtml+xml; charset=UTF-8. This Content-Type value is what separates XHTML5 from HTML5. Its inclusion permits the omission of the XML prolog, the doctype declaration, and the charset declaration, although these may be included for portability.

<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
  <head>
    <title></title>
  </head>
  <body>
  </body>
</html>

Here is an example of a polyglot document that uses XML namespaces.

<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
  <head>
    <title></title>
  </head>
  <body>
    <svg xmlns="http://www.w3.org/2000/svg"
         xmlns:xlink="http://www.w3.org/1999/xlink">
      <script xlink:href="foobar.js" type="application/ecmascript" />
    </svg>
  </body>
</html>

Output attribute values for boolean attributes

Both the W3C and WHATWG define three styles for writing boolean attributes.

  1. <input disabled />
  2. <input disabled="disabled" />
  3. <input disabled="" />

However, only styles 2 and 3 are well-formed XHTML5.

Suggest updating createMarkupForProperty() to output the least verbose well-formed of these styles: attribute=""

This change will have no effect on HTML5 text/html parsers. It will, however, prevent parsing errors for polyglot documents served as application/xhtml+xml.

Add support for missing HTML5 boolean attributes

Missing attributes from HTMLDOMPropertyConfig.Properties:

  • default – Used by the <track /> element (W3C, WHATWG)
  • ismap – Used by the <img /> element (W3C, WHATWG)
  • open – Used by the <details /> element (W3C, WHATWG)
  • reversed – Used by the <ol /> element (W3C, WHATWG)
  • scoped – Used by the <style /> element (W3C, WHATWG)
  • typemustmatch – Used by the <object /> element (W3C, WHATWG)

These attributes map to these DOM property names, respectively:

  • default
  • isMap
  • open
  • reversed
  • scoped
  • typeMustMatch

As these follow standard camel case, no change to DOMPropertyNames is required.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.