1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-10-18 20:09:08 +02:00
unleash.unleash/public/js/components/log/LogEntryList.jsx
Ivar Conradi Østhus f11cd291c2 formatting
2020-02-20 08:30:22 +01:00

58 lines
1.6 KiB
JavaScript

var React = require('react'),
LogEntry = require('./LogEntry');
var LogEntryList = React.createClass({
propTypes: {
events: React.PropTypes.array.isRequired
},
getInitialState: function() {
return {
showFullEvents: false
};
},
render: function() {
var logEntryNodes = this.props.events.map(function(event) {
return <LogEntry event={event} key={event.id} showFullEvents={this.state.showFullEvents} />;
}.bind(this));
return (
<div>
<label className="prs fright-ht768 smalltext">
Show full events
<input
type="checkbox"
className="mlm"
value={this.state.fullEvents}
onChange={this.toggleFullEvents}>
</input>
</label>
<table className='outerborder zebra-striped'>
<thead>
<tr>
<th>When</th>
<th>Action</th>
<th>
Data
</th>
<th>Author</th>
</tr>
</thead>
<tbody>
{logEntryNodes}
</tbody>
</table>
</div>
);
},
toggleFullEvents: function() {
this.setState({showFullEvents: !this.state.showFullEvents});
}
});
module.exports = LogEntryList;