Integrate Semantic-ui with react components. It depends on Semantic-UI and helps you use with react component.
The components' Docs on the website - Pre-release
The components' Docs on the github
React = 0.12 | React = 0.13.* | React = 0.14.* | |
---|---|---|---|
Version | <= 0.2 | 0.3.* | 0.4.* |
And then include in your html.
You should include dependency.
- jQuery
- Semantic-Ui
- React
- ReactDOM
- Babel (If you write jsx in browser.)
Ex. Write a simple button in browser.
<script src="//cdnjs.cloudflare.com/ajax/libs/react/0.14.3/react-dom.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/react/0.14.3/react.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/babel-core/6.1.19/browser.min.js"></script>
<script src="http://code.jquery.com/jquery-1.10.0.min.js"></script>
<link rel="stylesheet" type="text/css" href="//cdnjs.cloudflare.com/ajax/libs/semantic-ui/1.2.0/semantic.min.css">
<script src="//cdnjs.cloudflare.com/ajax/libs/semantic-ui/1.2.0/semantic.min.js"></script>
<script src="/vendors/react-semantify.js"></script>
<div id="content"></div>
<script type="text/babel">
let Button = Semantify.Button;
let HelloBox = React.createClass({
_onClick: function () {
console.log('hello world!');
},
render: function () {
return (
<Button color="red" onClick={this._onClick}>
Hello World!
</Button>
);
}
});
ReactDOM.render(
<HelloBox />,
document.getElementById('content')
);
</script>
npm install react-semantify
Ex.
import React from 'react';
import ReactDOM from 'react-dom';
import {Button} from 'react-semantify';
// or
// import * as Semantify from 'react-semantify';
// let {Button} = Semantify;
// or
// use ES5
// let Button = require('react-semantify').Button;
let HelloBox = React.createClass({
_onClick: function () {
console.log('hello world!');
},
render: function () {
return (
<Button color="red" onClick={this._onClick}>
Hello World!
</Button>
);
}
});
ReactDOM.render(
<HelloBox />,
document.getElementById('content')
);
And then you should include jQuery
and semantic-ui
in your browser.
Use cdnjs
<script type="text/javascript" src="//code.jquery.com/jquery-1.10.0.min.js">
<link rel="stylesheet" type="text/css" href="//cdnjs.cloudflare.com/ajax/libs/semantic-ui/1.2.0/semantic.min.css">
<script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/semantic-ui/1.2.0/semantic.min.js">
Use bower
bower install semantic-ui
-
- Advertisement - Pre-release
- Card - Pre-release
- Comments/Comment - Pre-release
- Feed - Pre-release
- Items/Item - Pre-release
- Statistic - Pre-release
Wait Semantic-UI Release.
- Modules
- Nag
- Video
- Fork it.
- Create your feature-branch
git checkout -b your-new-feature-branch
- Commit your change
git commit -am 'Add new feature'
- Push to the branch
git push origin your-new-feature-branch
- Create new Pull Request with
master
branch
Now Commit message style following angular.
git clone [email protected]:jessy1092/react-semantify.git
npm i
npm test
The MIT License (MIT)
Copyright (c) 2014-2015 Lee < [email protected] >
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.