mirror of
https://gitlab.silvrtree.co.uk/martind2000/nci.git
synced 2025-01-11 23:45:08 +00:00
48 lines
1.1 KiB
JavaScript
48 lines
1.1 KiB
JavaScript
'use strict';
|
|
|
|
define([
|
|
'react', 'react-router', 'app/actions/project',
|
|
'app/actions/build', 'templates/app/components/builds/item',
|
|
'app/components/terminal/terminal', 'app/components/common/index',
|
|
'app/utils'
|
|
], function(
|
|
React, Router, ProjectActions,
|
|
BuildActions, template,
|
|
TerminalComponent, CommonComponents,
|
|
utils
|
|
) {
|
|
template = template.locals({
|
|
DateTime: CommonComponents.DateTime,
|
|
Duration: CommonComponents.Duration,
|
|
Progress: CommonComponents.Progress,
|
|
Scm: CommonComponents.Scm,
|
|
Terminal: TerminalComponent,
|
|
Link: Router.Link,
|
|
utils: utils
|
|
});
|
|
|
|
var Component = React.createClass({
|
|
getInitialState: function() {
|
|
return {
|
|
showTerminal: false
|
|
};
|
|
},
|
|
onRebuildProject: function(projectName) {
|
|
ProjectActions.run(projectName)
|
|
},
|
|
onCancelBuild: function(buildId) {
|
|
BuildActions.cancel(buildId);
|
|
},
|
|
onShowTerminal: function(build) {
|
|
this.setState({showTerminal: !this.state.showTerminal});
|
|
BuildActions.readTerminalOutput(this.props.build);
|
|
},
|
|
onBuildSelect: function(buildId) {
|
|
console.log('on build select');
|
|
},
|
|
render: template
|
|
});
|
|
|
|
return Component;
|
|
});
|