mirror of
				https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nopaque.git
				synced 2025-10-31 02:32:45 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			119 lines
		
	
	
		
			3.6 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			119 lines
		
	
	
		
			3.6 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| class JobResultList extends ResourceList {
 | |
|   static autoInit() {
 | |
|     for (let jobResultListElement of document.querySelectorAll('.job-result-list:not(.no-autoinit)')) {
 | |
|       new JobResultList(jobResultListElement);
 | |
|     }
 | |
|   }
 | |
| 
 | |
|   constructor(listContainerElement, options = {}) {
 | |
|     super(listContainerElement, options);
 | |
|     this.listjs.list.addEventListener('click', (event) => {this.onClick(event)});
 | |
|     this.isInitialized = false;
 | |
|     this.userId = listContainerElement.dataset.userId;
 | |
|     this.jobId = listContainerElement.dataset.jobId;
 | |
|     app.subscribeUser(this.userId).then((response) => {
 | |
|       app.socket.on('PATCH', (patch) => {
 | |
|         if (this.isInitialized) {this.onPatch(patch);}
 | |
|       });
 | |
|     });
 | |
|     app.getUser(this.userId).then((user) => {
 | |
|       this.add(Object.values(user.jobs[this.jobId].results));
 | |
|       this.isInitialized = true;
 | |
|     });
 | |
|   }
 | |
| 
 | |
|   get item() {
 | |
|     return `
 | |
|       <tr class="clickable hoverable">
 | |
|         <td><span class="description"></span></td>
 | |
|         <td><span class="filename"></span></td>
 | |
|         <td class="right-align">
 | |
|           <a class="action-button btn-floating waves-effect waves-light" data-action="download"><i class="material-icons">file_download</i></a>
 | |
|         </td>
 | |
|       </tr>
 | |
|     `.trim();
 | |
|   }
 | |
| 
 | |
|   get valueNames() {
 | |
|     return [
 | |
|       {data: ['id']},
 | |
|       {data: ['creation-date']},
 | |
|       'description',
 | |
|       'filename'
 | |
|     ];
 | |
|   }
 | |
| 
 | |
|   initListContainerElement() {
 | |
|     if (!this.listContainerElement.hasAttribute('id')) {
 | |
|       this.listContainerElement.id = Utils.generateElementId('job-result-list-');
 | |
|     }
 | |
|     let listSearchElementId = Utils.generateElementId(`${this.listContainerElement.id}-search-`);
 | |
|     this.listContainerElement.innerHTML = `
 | |
|       <div class="input-field">
 | |
|         <i class="material-icons prefix">search</i>
 | |
|         <input id="${listSearchElementId}" class="search" type="text"></input>
 | |
|         <label for="${listSearchElementId}">Search job result</label>
 | |
|       </div>
 | |
|       <table>
 | |
|         <thead>
 | |
|           <tr>
 | |
|             <th>Description</th>
 | |
|             <th>Filename</th>
 | |
|             <th></th>
 | |
|           </tr>
 | |
|         </thead>
 | |
|         <tbody class="list"></tbody>
 | |
|       </table>
 | |
|       <ul class="pagination"></ul>
 | |
|     `.trim();
 | |
|   }
 | |
| 
 | |
|   mapResourceToValue(jobResult) {
 | |
|     return {
 | |
|       'id': jobResult.id,
 | |
|       'creation-date': jobResult.creation_date,
 | |
|       'description': jobResult.description,
 | |
|       'filename': jobResult.filename
 | |
|     };
 | |
|   }
 | |
| 
 | |
|   sort() {
 | |
|     this.listjs.sort('filename', {order: 'asc'});
 | |
|   }
 | |
| 
 | |
|   onClick(event) {
 | |
|     let jobResultElement = event.target.closest('tr');
 | |
|     if (jobResultElement === null) {return;}
 | |
|     let jobResultId = jobResultElement.dataset.id;
 | |
|     if (jobResultId === undefined) {return;}
 | |
|     let actionButtonElement = event.target.closest('.action-button');
 | |
|     let action = actionButtonElement === null ? 'download' : actionButtonElement.dataset.action;
 | |
|     switch (action) {
 | |
|       case 'download': {
 | |
|         window.location.href = `/jobs/${this.jobId}/results/${jobResultId}/download`;
 | |
|         break;
 | |
|       }
 | |
|       default: {
 | |
|         break;
 | |
|       }
 | |
|     }
 | |
|   }
 | |
| 
 | |
|   onPatch(patch) {
 | |
|     let re = new RegExp(`^/users/${this.userId}/jobs/${this.jobId}/results/([A-Za-z0-9]*)`);
 | |
|     let filteredPatch = patch.filter(operation => re.test(operation.path));
 | |
|     for (let operation of filteredPatch) {
 | |
|       switch(operation.op) {
 | |
|         case 'add': {
 | |
|           let re = new RegExp(`^/users/${this.userId}/jobs/${this.jobId}/results/([A-Za-z0-9]*)$`);
 | |
|           if (re.test(operation.path)) {this.add(operation.value);}
 | |
|           break;
 | |
|         }
 | |
|         default: {
 | |
|           break;
 | |
|         }
 | |
|       }
 | |
|     }
 | |
|   }
 | |
| }
 |