Bläddra i källkod

refactor(Admin/Users): Re-added edit user directly with url query

Owen Diffey 3 år sedan
förälder
incheckning
6574eeabff
2 ändrade filer med 7 tillägg och 13 borttagningar
  1. 6 2
      frontend/src/components/AdvancedTable.vue
  2. 1 11
      frontend/src/pages/Admin/tabs/Users.vue

+ 6 - 2
frontend/src/components/AdvancedTable.vue

@@ -476,8 +476,12 @@
 											property
 												.split('.')
 												.reduce(
-													(p, c) =>
-														(p && p[c]) || null,
+													(previous, current) =>
+														(previous &&
+															previous[
+																current
+															]) ||
+														null,
 													item
 												)
 										)

+ 1 - 11
frontend/src/pages/Admin/tabs/Users.vue

@@ -414,6 +414,7 @@ export default {
 		})
 	},
 	mounted() {
+		if (this.$route.query.userId) this.edit(this.$route.query.userId);
 		// ws.onConnect(this.init);
 		// this.socket.on("event:admin.dataRequests.created", res =>
 		// 	this.dataRequests.push(res.data.request)
@@ -435,17 +436,6 @@ export default {
 			this.openModal("editUser");
 		},
 		// init() {
-		// 	this.socket.dispatch("users.index", res => {
-		// 		if (res.status === "success") {
-		// 			if (this.$route.query.userId) {
-		// 				const user = res.data.users.find(
-		// 					user => user._id === this.$route.query.userId
-		// 				);
-		// 				if (user) this.edit(user._id);
-		// 			}
-		// 		}
-		// 	});
-
 		// 	this.socket.dispatch("apis.joinAdminRoom", "users", () => {});
 		// },
 		resolveDataRequest(id) {