Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Aui is a small, lightweight glue library that integrates Semantic into React as properties, which feels more natural.
Aui is a tiny library, you can browse the docs/source code here!
Instead of many new React Components, all properties that === true are automatically translated into the className of each tag. Semantic Modules and other semantic javascript can be called as it was intended, like semantic's dropdowns, form validation, and even api.
JSFiddle around with the examples here!
// Set up Semantic's api module
// http://semantic-ui.com/behaviors/api.html
Aui.$.fn.api.settings.method = 'POST'
Aui.$.fn.api.settings.api = {
login: '/echo/json/?delay=2'
}
var Example = React.createClass({
mixins: [Aui.Mixin],
getInitialState: function () {
return {
data: {}
}
},
render: function () {
return (
<div ui container>
<form ref="login form" ui segment form>
<label ui top attached label>{location.origin} login</label>
<div field>
<div ui icon input>
<input type="text" name="username" placeholder="Username"/>
<i user icon/>
</div>
</div>
<div field>
<div ui icon input>
<input type="password" name="password" placeholder="Password"/>
<i privacy icon/>
</div>
</div>
<div field>
{/* checkbox={[]} will call $.fn.checkbox() */}
<div ui checkbox={[]}>
<label>Remember Me</label>
<input type="checkbox" name="remember" />
</div>
</div>
<div ui error message></div>
<div field>
<div ui blue submit button>Login</div>
</div>
</form>
</div>
)
},
onSubmit: function (event) {
event.preventDefault()
this.setState({
data: this.$(event.target)
.form('get values')
})
},
beforeSend: function (settings) {
// Merge with other React state as desired:
settings.data = this.state.data
return settings
},
onLoggedIn: function (data) {
alert(this.state.data.username + " is logged in!")
},
componentDidMount: function () {
// jQuery wrap by React ref:
var $form = this.$("login form")
// http://semantic-ui.com/behaviors/form.html
.form({
on: "change",
inline: true,
onSuccess: this.onSubmit,
fields: {
username: {
identifier: "username",
rules: [
{ type: "email", prompt: "Demo Username must be a valid email address (do not submit your real email)" }
]
},
password: {
identifier: "password",
rules: [
{ type: "minLength[3]", prompt: "Demo Password must be 3 or more characters long (do not use a real password)" }
]
}
}
})
// http://semantic-ui.com/behaviors/api.html
.api({
action: 'login',
beforeSend: this.beforeSend,
onSuccess: this.onLoggedIn,
onError: function (error) {
$form.form('add errors', [error])
}
})
}
})
React.render(<Example />, document.getElementById('container'));
This will result in something like this after React's render on the dom:
<body>
<div class="ui container">
<form class="ui segment form">
<label class="ui top attached label"> login</label>
<div class="field">
<div class="ui icon input">
<input type="text" name="username" placeholder="Username"/>
<i class="user icon"/>
</div>
</div>
<div class="field">
<div class="ui icon input">
<input type="password" name="password" placeholder="Password"/>
<i class="privacy icon"/>
</div>
</div>
<div class="field">
<div class="ui checkbox">
<label>Remember Me</label>
<input type="checkbox" name="remember" />
</div>
</div>
<div class="ui error message"></div>
<div class="field">
<div class="ui blue submit button">Login</div>
</div>
</form>
</div>
</body>
Make sure to include react.js, jquery.js, semantic.js, and semantic.css on your page
<link href="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.0.7/semantic.css" rel="stylesheet"></link>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.0.0-alpha1/jquery.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.0.7/semantic.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/react/0.13.3/react.js"></script>
<script src="aui.js"></script>
Aui is also available on Bower!
You may also may wish to use Browserify or some other CommonJS style bundler:
// If you wish to load Semantic, jQuery, and React from the window object:
var Aui = require('aui')
// If you wish to bundle Semantic, jQuery, and React
var Aui = require('aui/externals')
If you use coffee-script and wish to go native:
Aui = require 'aui/.coffee'
# or
Aui = require 'aui/externals.coffee'
FAQs
Aui is Semantic-UI + React
The npm package aui receives a total of 17 weekly downloads. As such, aui popularity was classified as not popular.
We found that aui demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.