mirror of
				https://github.com/immich-app/immich.git
				synced 2025-11-01 02:17:43 +09:00 
			
		
		
		
	feat(mobile): Folder View for mobile (#15047)
* very rough prototype for folder navigation without assets * fix: refactored data model and tried to implement asset loading * fix: openapi generator shadowing query param in /view/folder * add simple alphanumeric sorting for folders * basic asset viewing in folders * rudimentary switch sorting order * fixed reactivity when toggling sort order * Fixed trailing comma * Fixed bad merge conflict resolution * Regenerated open-api * Added rudimentary breadcrumbs * Fixed linting problems * feat: cleanup --------- Co-authored-by: Alex <alex.tran1502@gmail.com> Co-authored-by: shenlong-tanwen <139912620+shalong-tanwen@users.noreply.github.com>
This commit is contained in:
		
							
								
								
									
										16
									
								
								mobile/openapi/lib/api/faces_api.dart
									
									
									
										generated
									
									
									
								
							
							
						
						
									
										16
									
								
								mobile/openapi/lib/api/faces_api.dart
									
									
									
										generated
									
									
									
								
							| @@ -22,7 +22,7 @@ class FacesApi { | ||||
|   /// * [AssetFaceCreateDto] assetFaceCreateDto (required): | ||||
|   Future<Response> createFaceWithHttpInfo(AssetFaceCreateDto assetFaceCreateDto,) async { | ||||
|     // ignore: prefer_const_declarations | ||||
|     final path = r'/faces'; | ||||
|     final apiPath = r'/faces'; | ||||
| 
 | ||||
|     // ignore: prefer_final_locals | ||||
|     Object? postBody = assetFaceCreateDto; | ||||
| @@ -35,7 +35,7 @@ class FacesApi { | ||||
| 
 | ||||
| 
 | ||||
|     return apiClient.invokeAPI( | ||||
|       path, | ||||
|       apiPath, | ||||
|       'POST', | ||||
|       queryParams, | ||||
|       postBody, | ||||
| @@ -63,7 +63,7 @@ class FacesApi { | ||||
|   /// * [AssetFaceDeleteDto] assetFaceDeleteDto (required): | ||||
|   Future<Response> deleteFaceWithHttpInfo(String id, AssetFaceDeleteDto assetFaceDeleteDto,) async { | ||||
|     // ignore: prefer_const_declarations | ||||
|     final path = r'/faces/{id}' | ||||
|     final apiPath = r'/faces/{id}' | ||||
|       .replaceAll('{id}', id); | ||||
| 
 | ||||
|     // ignore: prefer_final_locals | ||||
| @@ -77,7 +77,7 @@ class FacesApi { | ||||
| 
 | ||||
| 
 | ||||
|     return apiClient.invokeAPI( | ||||
|       path, | ||||
|       apiPath, | ||||
|       'DELETE', | ||||
|       queryParams, | ||||
|       postBody, | ||||
| @@ -105,7 +105,7 @@ class FacesApi { | ||||
|   /// * [String] id (required): | ||||
|   Future<Response> getFacesWithHttpInfo(String id,) async { | ||||
|     // ignore: prefer_const_declarations | ||||
|     final path = r'/faces'; | ||||
|     final apiPath = r'/faces'; | ||||
| 
 | ||||
|     // ignore: prefer_final_locals | ||||
|     Object? postBody; | ||||
| @@ -120,7 +120,7 @@ class FacesApi { | ||||
| 
 | ||||
| 
 | ||||
|     return apiClient.invokeAPI( | ||||
|       path, | ||||
|       apiPath, | ||||
|       'GET', | ||||
|       queryParams, | ||||
|       postBody, | ||||
| @@ -159,7 +159,7 @@ class FacesApi { | ||||
|   /// * [FaceDto] faceDto (required): | ||||
|   Future<Response> reassignFacesByIdWithHttpInfo(String id, FaceDto faceDto,) async { | ||||
|     // ignore: prefer_const_declarations | ||||
|     final path = r'/faces/{id}' | ||||
|     final apiPath = r'/faces/{id}' | ||||
|       .replaceAll('{id}', id); | ||||
| 
 | ||||
|     // ignore: prefer_final_locals | ||||
| @@ -173,7 +173,7 @@ class FacesApi { | ||||
| 
 | ||||
| 
 | ||||
|     return apiClient.invokeAPI( | ||||
|       path, | ||||
|       apiPath, | ||||
|       'PUT', | ||||
|       queryParams, | ||||
|       postBody, | ||||
|   | ||||
		Reference in New Issue
	
	Block a user