Browse Source

refactor: finished AdvancedTable autosuggest

Kristian Vos 3 years ago
parent
commit
83033af09f

+ 13 - 9
backend/logic/actions/songs.js

@@ -1710,9 +1710,11 @@ export default {
 		async.waterfall(
 			[
 				next => {
-					SongsModule.runJob("GET_GENRES", this).then(res => {
-						next(null, res.genres);
-					}).catch(next);
+					SongsModule.runJob("GET_GENRES", this)
+						.then(res => {
+							next(null, res.genres);
+						})
+						.catch(next);
 				}
 			],
 			async (err, genres) => {
@@ -1726,7 +1728,7 @@ export default {
 						status: "success",
 						message: "Successfully got genres.",
 						data: {
-							genres
+							items: genres
 						}
 					});
 				}
@@ -1740,13 +1742,15 @@ export default {
 	 * @param session
 	 * @param cb
 	 */
-	 getArtists: isAdminRequired(function getModule(session, cb) {
+	getArtists: isAdminRequired(function getModule(session, cb) {
 		async.waterfall(
 			[
 				next => {
-					SongsModule.runJob("GET_ARTISTS", this).then(res => {
-						next(null, res.artists);
-					}).catch(next);
+					SongsModule.runJob("GET_ARTISTS", this)
+						.then(res => {
+							next(null, res.artists);
+						})
+						.catch(next);
 				}
 			],
 			async (err, artists) => {
@@ -1760,7 +1764,7 @@ export default {
 						status: "success",
 						message: "Successfully got artists.",
 						data: {
-							artists
+							items: artists
 						}
 					});
 				}

+ 2 - 2
backend/logic/songs.js

@@ -1473,7 +1473,7 @@ class _SongsModule extends CoreClass {
 	 *
 	 * @returns {Promise} - returns promise (reject, resolve)
 	 */
-	 GET_GENRES() {
+	GET_GENRES() {
 		return new Promise((resolve, reject) => {
 			async.waterfall(
 				[
@@ -1494,7 +1494,7 @@ class _SongsModule extends CoreClass {
 	 *
 	 * @returns {Promise} - returns promise (reject, resolve)
 	 */
-	 GET_ARTISTS() {
+	GET_ARTISTS() {
 		return new Promise((resolve, reject) => {
 			async.waterfall(
 				[

+ 71 - 1
frontend/src/components/AdvancedTable.vue

@@ -173,7 +173,7 @@
 									<div
 										class="autosuggest-container"
 										v-if="
-											filter.filter.autocomplete &&
+											filter.filter.autosuggest &&
 											(autosuggest.inputFocussed[
 												filter.filter.name
 											] ||
@@ -1108,6 +1108,18 @@ export default {
 						() => {}
 					);
 			}
+			this.filters.forEach(filter => {
+				if (filter.autosuggest && filter.autosuggestDataAction) {
+					this.socket.dispatch(filter.autosuggestDataAction, res => {
+						if (res.status === "success") {
+							const { items } = res.data;
+							this.autosuggest.allItems[filter.name] = items;
+						} else {
+							new Toast(res.message);
+						}
+					});
+				}
+			});
 		},
 		getData() {
 			this.socket.dispatch(
@@ -1704,6 +1716,20 @@ export default {
 			color: var(--white);
 		}
 	}
+	.autosuggest-container {
+		background-color: var(--dark-grey) !important;
+
+		.autosuggest-item {
+			background-color: var(--dark-grey) !important;
+			color: var(--white) !important;
+			border-color: var(--dark-grey) !important;
+		}
+
+		.autosuggest-item:hover,
+		.autosuggest-item:focus {
+			background-color: var(--dark-grey-2) !important;
+		}
+	}
 }
 
 .table-outer-container {
@@ -1998,6 +2024,50 @@ export default {
 		}
 	}
 }
+
+.autosuggest-container {
+	position: absolute;
+	background: var(--white);
+	width: calc(100% + 1px);
+	top: 35px;
+	z-index: 200;
+	overflow: auto;
+	max-height: 98px;
+	clear: both;
+
+	.autosuggest-item {
+		padding: 8px;
+		display: block;
+		border: 1px solid var(--light-grey-2);
+		margin-top: -1px;
+		line-height: 16px;
+		cursor: pointer;
+		-webkit-user-select: none;
+		-ms-user-select: none;
+		-moz-user-select: none;
+		user-select: none;
+	}
+
+	.autosuggest-item:hover,
+	.autosuggest-item:focus {
+		background-color: var(--light-grey);
+	}
+
+	.autosuggest-item:first-child {
+		border-top: none;
+	}
+
+	.autosuggest-item:last-child {
+		border-radius: 0 0 3px 3px;
+	}
+}
+
+.advanced-filter {
+	.control {
+		position: relative;
+	}
+}
+
 .advanced-filter-bottom {
 	display: flex;
 

+ 5 - 3
frontend/src/pages/Admin/tabs/Songs.vue

@@ -498,7 +498,9 @@ export default {
 					displayName: "Artists",
 					property: "artists",
 					filterTypes: ["contains", "exact", "regex"],
-					defaultFilterType: "contains"
+					defaultFilterType: "contains",
+					autosuggest: true,
+					autosuggestDataAction: "songs.getArtists"
 				},
 				{
 					name: "genres",
@@ -506,8 +508,8 @@ export default {
 					property: "genres",
 					filterTypes: ["contains", "exact", "regex"],
 					defaultFilterType: "contains",
-					autocomplete: true,
-					autocompleteDataAction: "songs.getGenres"
+					autosuggest: true,
+					autosuggestDataAction: "songs.getGenres"
 				},
 				{
 					name: "thumbnail",