blob: e587ac8361b097945804ce574bea45c9921bfe3f [file] [log] [blame]
<div class="col-md-3">
<!--
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
-->
<h5>Application Name</h5>
<form name="form">
<input class="form-control" type="text" ng-model="appName" />
</form>
<h5>Components</h5>
<button type="button" class="btn btn-sm btn-default btn-primary btn-block"
ng-click="chooseProcessor()">
New Processor
</button>
<button type="button" class="btn btn-sm btn-default btn-block"
ng-disabled="visGraph.data.nodes.length < 2"
ng-click="chooseEdge()">
New Edge
</button>
<hr/>
<h5>Application JAR files
<remark tooltip="Provide user defined task classes or partitioner classes."></remark>
</h5>
<div class="dropbox" style="margin-bottom: 10px"
ngf-drop ngf-select ng-model="uploads"
ngf-drag-over-class="dropbox-dragover" ngf-multiple="true"
accept=".jar">
Drop an user defined JAR files here
</div>
<ul class="list-group">
<li class="list-group-item"
ng-repeat="name in keys(files) track by $index">
<span class="pull-right glyphicon glyphicon-trash clickable"
ng-click="removeFile(name)"></span>
<span ng-bind="name"></span>
</li>
</ul>
</div>
<div class="col-md-9">
<div class="row">
<div class="col-md-12">
<h5>Compose Canvas</h5>
<div ng-show="shouldNoticeSubmitFailed">
<div class="alert alert-danger alert-dismissible" role="alert">
<button type="button" class="close" data-dismiss="alert"
ng-click="shouldNoticeSubmitFailed=false">
<span aria-hidden="true">&times;</span></button>
Failed to submit the DAG.
<span ng-if="error">
Check out the
<span class="help-text"
bs-tooltip="error" html="true" placement="bottom"
ng-click="showErrorInNewWin()">reason
<i ng-if="hasStackTrace"
class="fa fa-external-link"></i></span>.
</span>
</div>
</div>
</div>
<div class="col-md-12">
<div class="panel panel-sm panel-default">
<div class="panel-body">
<div class="cm-container" id="contextmenu"
bs-dropdown html="true"
template-url="views/apps/compose/popups/contextmenu.html"></div>
<vis-network
data="visGraph.data"
options="visGraph.options"
events="visGraph.events">
</vis-network>
</div>
</div>
</div>
<div class="col-md-12">
<div class="pull-right">
<button type="button" class="btn btn-sm"
ng-class="{'btn-primary': !submitted, 'btn-default': submitted}"
ng-disabled="!canSubmit()" ng-click="submit()">
<span ng-if="submitting"
class="glyphicon glyphicon-repeat rotate-animation"></span>
Submit
</button>
<button ng-if="submitted"
type="button" class="btn btn-sm btn-primary"
ng-click="view()">View Application
</button>
</div>
</div>
</div>
</div>