60 lines
		
	
	
		
			2.9 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			60 lines
		
	
	
		
			2.9 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <div class="text-left">
 | |
|   <div class="row">
 | |
|     <ul class="breadcrumb">
 | |
|       <li ng-repeat="breadcrumb in vm.breadcrumbs track by $index" ng-click="vm.getDirectoriesFromBreadcrumbs(breadcrumb)" data="{{ breadcrumb }}" class="cp breadcrumbs-list">
 | |
|         {{ breadcrumb }}
 | |
|       </li>
 | |
|     </ul>
 | |
|   </div>
 | |
|   <div class="row">
 | |
|     <div class="col-lg-6">
 | |
|       <ul class="tree ls-none">
 | |
|         <li class="directories-go-here" ng-repeat="directory in vm.siteDirectories track by $index">
 | |
|           <input type="checkbox" id="{{ r.challenge }}{{ $index }}" />
 | |
|           <label class="tree_label" for="{{ r.challenge }}{{ $index }}" ng-click="vm.getDirectories(directory); vm.showUploadContainer = false" data="{{ directory }}">{{ directory }}</label>
 | |
|         </li>
 | |
|       </ul>
 | |
|       <ul class="tree files-only ls-none">
 | |
|         <li ng-repeat="file in vm.siteFiles track by $index">
 | |
|           <span class="tree_label filez">{{ file }}</span><span class="pull-right"><button type="button" class="btn btn-danger btn-xs" ng-click="vm.Sites.remove(r, file)" data="{{ file }}" data="{{ r }}"><i class="fa fa-trash"></i></button></span>
 | |
|         </li>
 | |
|         <li class="move-back">
 | |
|           <a ng-click="vm.showUploadContainer = true;"><i class="fa fa-plus"></i> Add Files</a>
 | |
|         </li>
 | |
|       </ul>
 | |
|       <div class="upload-container" ng-show="vm.showUploadContainer">
 | |
|         <hr>
 | |
|         <h4 class="text-left">Upload Files:</h4>
 | |
|         <div>
 | |
|           <input type="file" ng-model="r.newFile" class="form-control" daplie-file-change="vm.Sites.setUpload(r)" />
 | |
| 
 | |
|           <div ng-if="r.isZip"><label><input type="checkbox" ng-model="r.unzip" /> Unpack .zip</label></div>
 | |
| 
 | |
|           <div ng-if="r.unzip"><label><input type="checkbox" ng-model="r.stripZip" /> Strip zip directory root</label></div>
 | |
| 
 | |
|           <!-- div ng-if="vm.isZip" ><label>Unzip directory</label> <input type="text" ng-model="vm.unzipPath" /></div -->
 | |
| 
 | |
|           <div ng-if="r.uploadTotal"><span ng-bind="r.uploadPercent">99</span>% | <span ng-bind="r.uploadProgress">1</span> MiB / <span ng-bind="r.uploadTotal">100</span> MiB</div>
 | |
| 
 | |
|           <div>
 | |
|             <label>Web path</label>
 | |
|             <input type="text" class="form-control" ng-model="vm.autoPopulateWebPath" placeholder="/js/config/config.js" />
 | |
|             <!-- <input type="text" class="form-control" ng-model="r.uploadPath" placeholder="{{ vm.autoPopulateWebPath }}"/> -->
 | |
|           </div>
 | |
| 
 | |
|           <button ng-click="vm.Sites.upload(r)" type="button" name="button" class="btn btn-success">Add File</button>
 | |
|         </div>
 | |
|       </div>
 | |
|     </div>
 | |
|     <div class="col-lg-6">
 | |
|       <pre style="font-size: 10px;">{{ vm.folderStructure | stringify }}</pre>
 | |
|     </div>
 | |
|   </div>
 | |
|   <div class="row">
 | |
|     <div class="text-center">
 | |
|       <span class="text-danger">TODO:// Fix functionality to delete ALL files...</span><br>
 | |
|       <button type="button" class="btn btn-danger" ng-click="vm.Sites.remove(r)"><i class="fa fa-trash"></i> Remove all Files</button>
 | |
|     </div>
 | |
|   </div>
 | |
| </div>
 |