UpdateUser(EditUserRequest user, int userId)
{
var profile = await _context.Users.FirstOrDefaultAsync(u => u.Id == userId);
var users = await _context.Users.ToListAsync();
@@ -119,11 +119,14 @@ namespace Api.DBAccess
}
}
- if(user.Email != "" && user.Email != null)
- profile.Email = user.Email;
+ if(user.Email == "" || user.Email == null)
+ return new ConflictObjectResult(new { message = "Please enter an email" });
- if (user.UserName != "" && user.UserName != null)
- profile.UserName = user.UserName;
+ if (user.UserName == "" || user.UserName == null)
+ return new ConflictObjectResult(new { message = "Please enter a username" });
+
+ profile.Email = user.Email;
+ profile.UserName = user.UserName;
diff --git a/frontend/profile/index.html b/frontend/profile/index.html
index dcd8af7..98ff11b 100644
--- a/frontend/profile/index.html
+++ b/frontend/profile/index.html
@@ -38,12 +38,12 @@
diff --git a/frontend/scripts/profile.js b/frontend/scripts/profile.js
index 995ec6d..1f824d6 100644
--- a/frontend/scripts/profile.js
+++ b/frontend/scripts/profile.js
@@ -4,76 +4,95 @@ import { get } from "./services/users.service.js";
import { update } from "./services/users.service.js";
import { updatePassword } from "./services/users.service.js";
-let id = localStorage.getItem("id");
+var username;
+var email;
-get(id).then(res => {
- var table = document.getElementById(`profileCard`);
-table.innerHTML += `
+get().then((res) => {
+ username = res.userName;
+ email = res.email;
+ var table = document.getElementById(`profileCard`);
+ table.innerHTML += `
-
${res.userName}
- ${res.email}
+ ${username}
+ ${email}
`;
-})
-
+});
+const checkForChanges = () => {
+ if (emailInput.value !== email || usernameInput.value !== username) {
+ submitBtn.disabled = false; // Enable button if changes were made
+ } else {
+ submitBtn.disabled = true; // Disable button if no changes
+ }
+};
+const emailInput = document.getElementById("email");
+const usernameInput = document.getElementById("uname");
+const submitBtn = document.getElementById("submitEditBtn");
var pswModal = document.getElementById("PasswordModal");
var editModal = document.getElementById("editModal");
var editIconbtn = document.getElementById("openEditModal");
var passwordBtn = document.getElementById("openPasswordModal");
+emailInput.addEventListener("input", checkForChanges);
+usernameInput.addEventListener("input", checkForChanges);
+
// Open modals
-editIconbtn.onclick = () => (editModal.style.display = "block");
+editIconbtn.onclick = () => {
+ document.getElementById("uname").value = username;
+ document.getElementById("email").value = email;
+ submitBtn.disabled = true;
+ editModal.style.display = "block";
+};
passwordBtn.onclick = () => (pswModal.style.display = "block");
// Close modals when clicking on any close button
-document.querySelectorAll(".close").forEach(closeBtn => {
- closeBtn.onclick = () => {
- pswModal.style.display = "none";
- editModal.style.display = "none";
- document.getElementById("form-error").innerText = "";
- document.getElementById("form-error").style.display = "none";
- };
+document.querySelectorAll(".close").forEach((closeBtn) => {
+ closeBtn.onclick = () => {
+ pswModal.style.display = "none";
+ editModal.style.display = "none";
+ document.getElementById("form-error").innerText = "";
+ document.getElementById("form-error").style.display = "none";
+ };
});
// Close modals when clicking outside
window.onclick = (event) => {
- if (event.target == pswModal || event.target == editModal) {
- pswModal.style.display = "none";
- editModal.style.display = "none";
- document.getElementById("form-error").innerText = "";
- document.getElementById("form-error").style.display = "none";
- }
+ if (event.target == pswModal || event.target == editModal) {
+ pswModal.style.display = "none";
+ editModal.style.display = "none";
+ document.getElementById("form-error").innerText = "";
+ document.getElementById("form-error").style.display = "none";
+ }
};
-document.getElementById("editForm").addEventListener("submit", function(event) {
+document
+ .getElementById("editForm")
+ .addEventListener("submit", function (event) {
event.preventDefault(); // Prevents default form submission
document.getElementById("form-error").style.display = "none";
- // Get form values
- const email = document.getElementById("email").value;
- const username = document.getElementById("uname").value;
-
// Call function with form values
- update(email, username, id)
- .then(response => {
- if (response?.error) {
- document.getElementById("form-error").innerText = response.error;
- document.getElementById("form-error").style.display = "block";
+ update(emailInput.value, usernameInput.value).then((response) => {
+ if (response?.error) {
+ document.getElementById("form-error").innerText = response.error;
+ document.getElementById("form-error").style.display = "block";
- return;
- }
+ return;
+ }
- location.href = "/profile";
- });
-});
+ location.href = "/profile";
+ });
+ });
-document.getElementById("PasswordForm").addEventListener("submit", function(event) {
+document
+ .getElementById("PasswordForm")
+ .addEventListener("submit", function (event) {
event.preventDefault(); // Prevents default form submission
document.getElementById("form-error").style.display = "none";
@@ -83,22 +102,20 @@ document.getElementById("PasswordForm").addEventListener("submit", function(even
const repeatPassword = document.getElementById("rpsw").value;
if (newPassword !== repeatPassword) {
- let errorDiv = document.getElementById("form-error");
- errorDiv.style.display = "block";
- errorDiv.innerText = "Passwords do not match!";
- return;
+ let errorDiv = document.getElementById("form-error");
+ errorDiv.style.display = "block";
+ errorDiv.innerText = "Passwords do not match!";
+ return;
}
- updatePassword(oldPassword, newPassword, id)
- .then(response => {
- //error messages do not work
- if (response.error) {
- document.getElementById("form-error").innerText = response.message;
- document.getElementById("form-error").style.display = "block";
- return;
- }
- });
-});
+ updatePassword(oldPassword, newPassword).then((response) => {
+ //error messages do not work
+ if (response.error) {
+ document.getElementById("form-error").innerText = response.message;
+ document.getElementById("form-error").style.display = "block";
+ return;
+ }
+ });
+ });
document.querySelector(".logout-container").addEventListener("click", logout);
-
diff --git a/frontend/scripts/services/users.service.js b/frontend/scripts/services/users.service.js
index 7ab71d8..fb49213 100644
--- a/frontend/scripts/services/users.service.js
+++ b/frontend/scripts/services/users.service.js
@@ -22,14 +22,14 @@ export function create(email, username, password, repeatPassword){
}
export function update(email, username){
- return request("PATCH", "/user/update", {
+ return request("PUT", "/user/update", {
email,
username,
});
}
export function updatePassword(oldPassword, newPassword){
- return request("PATCH", "/user/update-password", {
+ return request("PUT", "/user/update-password", {
oldPassword,
newPassword,
});