Get full build interface working
This commit is contained in:
parent
7c081f029c
commit
ea45c3b77f
7 changed files with 326 additions and 35 deletions
|
@ -40,7 +40,29 @@
|
|||
</div>
|
||||
|
||||
<div class="build-logs">
|
||||
some logs here
|
||||
<div ng-show="!commands">
|
||||
<span class="quay-spinner"></span>
|
||||
</div>
|
||||
<div class="command" ng-repeat="command in commands">
|
||||
<div class="command-entry" ng-click="toggleCommand(command)">
|
||||
<i class="fa chevron" ng-class="command.expanded ? 'fa-chevron-down' : 'fa-chevron-right'"></i>
|
||||
<span bindonce>
|
||||
<span class="label" bo-class="getCommandKind(command.message)" bo-show="getCommandKind(command.message)"
|
||||
bo-text="getCommandKind(command.message)">
|
||||
</span>
|
||||
<span class="command-title" bo-html="getCommandTitleHtml(command.message)"></span>
|
||||
</span>
|
||||
</div>
|
||||
<div class="command-logs panel-collapse collapse" ng-class="command.expanded ? 'in' : 'out'">
|
||||
<div class="log-entry" bindonce ng-repeat="log in command.logs">
|
||||
<span class="id" bo-text="$index + command.index + 1"></span>
|
||||
<span class="message" bo-text="log.message"></span>
|
||||
</div>
|
||||
<div ng-show="!command.logs">
|
||||
<span class="quay-spinner"></span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div>
|
||||
<span class="quay-spinner" ng-show="polling"></span>
|
||||
|
|
Reference in a new issue