forked from open-webui/open-webui
		
	feat: multiple files input
Co-Authored-By: Entaigner <61445450+entaigner@users.noreply.github.com>
This commit is contained in:
		
							parent
							
								
									cd79afb425
								
							
						
					
					
						commit
						97d68a6a05
					
				
					 1 changed files with 42 additions and 38 deletions
				
			
		|  | @ -328,10 +328,10 @@ | ||||||
| 					]; | 					]; | ||||||
| 				}; | 				}; | ||||||
| 
 | 
 | ||||||
| 				const inputFiles = e.dataTransfer?.files; | 				const inputFiles = Array.from(e.dataTransfer?.files); | ||||||
| 
 | 
 | ||||||
| 				if (inputFiles && inputFiles.length > 0) { | 				if (inputFiles && inputFiles.length > 0) { | ||||||
| 					const file = inputFiles[0]; | 					inputFiles.forEach((file) => { | ||||||
| 						console.log(file, file.name.split('.').at(-1)); | 						console.log(file, file.name.split('.').at(-1)); | ||||||
| 						if (['image/gif', 'image/jpeg', 'image/png'].includes(file['type'])) { | 						if (['image/gif', 'image/jpeg', 'image/png'].includes(file['type'])) { | ||||||
| 							reader.readAsDataURL(file); | 							reader.readAsDataURL(file); | ||||||
|  | @ -349,6 +349,7 @@ | ||||||
| 							); | 							); | ||||||
| 							uploadDoc(file); | 							uploadDoc(file); | ||||||
| 						} | 						} | ||||||
|  | 					}); | ||||||
| 				} else { | 				} else { | ||||||
| 					toast.error($i18n.t(`File not found.`)); | 					toast.error($i18n.t(`File not found.`)); | ||||||
| 				} | 				} | ||||||
|  | @ -467,6 +468,7 @@ | ||||||
| 					bind:files={inputFiles} | 					bind:files={inputFiles} | ||||||
| 					type="file" | 					type="file" | ||||||
| 					hidden | 					hidden | ||||||
|  | 					multiple | ||||||
| 					on:change={async () => { | 					on:change={async () => { | ||||||
| 						let reader = new FileReader(); | 						let reader = new FileReader(); | ||||||
| 						reader.onload = (event) => { | 						reader.onload = (event) => { | ||||||
|  | @ -482,7 +484,8 @@ | ||||||
| 						}; | 						}; | ||||||
| 
 | 
 | ||||||
| 						if (inputFiles && inputFiles.length > 0) { | 						if (inputFiles && inputFiles.length > 0) { | ||||||
| 							const file = inputFiles[0]; | 							const _inputFiles = Array.from(inputFiles); | ||||||
|  | 							_inputFiles.forEach((file) => { | ||||||
| 								if (['image/gif', 'image/jpeg', 'image/png'].includes(file['type'])) { | 								if (['image/gif', 'image/jpeg', 'image/png'].includes(file['type'])) { | ||||||
| 									reader.readAsDataURL(file); | 									reader.readAsDataURL(file); | ||||||
| 								} else if ( | 								} else if ( | ||||||
|  | @ -501,6 +504,7 @@ | ||||||
| 									uploadDoc(file); | 									uploadDoc(file); | ||||||
| 									filesInputElement.value = ''; | 									filesInputElement.value = ''; | ||||||
| 								} | 								} | ||||||
|  | 							}); | ||||||
| 						} else { | 						} else { | ||||||
| 							toast.error($i18n.t(`File not found.`)); | 							toast.error($i18n.t(`File not found.`)); | ||||||
| 						} | 						} | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Timothy J. Baek
						Timothy J. Baek