Parcourir la source

fix(Settings): edge-case that avatar colour changes unnecessarily

Signed-off-by: Jonathan <theflametrooper@gmail.com>
Jonathan il y a 4 ans
Parent
commit
3f6c3deac3
1 fichiers modifiés avec 16 ajouts et 15 suppressions
  1. 16 15
      frontend/src/pages/Settings/tabs/Profile.vue

+ 16 - 15
frontend/src/pages/Settings/tabs/Profile.vue

@@ -98,6 +98,21 @@ export default {
 		originalUser: state => state.settings.originalUser,
 		modifiedUser: state => state.settings.modifiedUser
 	}),
+	watch: {
+		"modifiedUser.avatar.type": function watchAvatarType(newType, oldType) {
+			if (
+				oldType &&
+				this.modifiedUser.avatar.type !==
+					this.originalUser.avatar.type &&
+				newType === "initials"
+			) {
+				const colors = ["blue", "orange", "green", "purple", "teal"];
+				const color = colors[Math.floor(Math.random() * colors.length)];
+
+				this.modifiedUser.avatar.color = color;
+			}
+		}
+	},
 	mounted() {
 		io.getSocket(socket => {
 			this.socket = socket;
@@ -116,21 +131,7 @@ export default {
 			if (nameChanged) this.changeName();
 			if (locationChanged) this.changeLocation();
 			if (bioChanged) this.changeBio();
-			if (avatarChanged) {
-				if (this.modifiedUser.avatar.type === "initials") {
-					const colors = [
-						"blue",
-						"orange",
-						"green",
-						"purple",
-						"teal"
-					];
-					const color =
-						colors[Math.floor(Math.random() * colors.length)];
-					this.modifiedUser.avatar.color = color;
-				}
-				this.changeAvatarType();
-			}
+			if (avatarChanged) this.changeAvatarType();
 
 			if (
 				!avatarChanged &&