settings.util.jsx 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. /** File includes all helper methods for settings */
  2. import axios from "axios";
  3. const serverURL = process.env.REACT_APP_SERVER_URL;
  4. /**
  5. * create settings for given user
  6. * @param {string} userId ID of the user for whom settings are to be created
  7. * @param {function} callback function to be executed after settings are created, receives newly created settings
  8. */
  9. export const createNewSettingsForUser = (userId, callback) => {
  10. if (userId) {
  11. console.log('creating new settings for user', userId);
  12. const newSettings = { userId: userId };
  13. axios.post(serverURL + '/settings/add/', newSettings)
  14. .then(res => {
  15. console.log('result of adding settings for ' + userId, res);
  16. if (callback) callback(res.data);
  17. }).catch(err => {console.log(err)});
  18. }
  19. }
  20. /**
  21. * updates user data in Auth0 database
  22. * @param {string} userId id of the user whose data is to be changed
  23. * @param {Object} newData data to be changed (will not affect data that is not passed)
  24. * @param {function} callback function to be executed after updating (receives new updated data)
  25. */
  26. export const updateUser = (userId, newData, callback) => {
  27. axios.put(serverURL + '/users/update/' + userId, newData)
  28. .then((result) => {
  29. console.log('updated user', result.data);
  30. if (callback) callback(result.data);
  31. }).catch(err => {console.log(err)});
  32. }
  33. /**
  34. * deletes user from everything: all plans, meals, images, settings, as well as user in Auth0 database
  35. * @param {string} userId id of the user to be deleted
  36. * @param {function} callback function to be executed after updating (receives new updated data)
  37. */
  38. export const deleteUser = (userId, callback) => {
  39. axios.delete(serverURL + '/users/' + userId)
  40. .then((result) => {
  41. console.log('deleted user');
  42. if (callback) callback();
  43. }).catch(err => {console.log(err)});
  44. }
  45. /**
  46. * updates user metadata in Auth0 database
  47. * @param {string} userId id of the user whose metadata is to be changed
  48. * @param {Object} newMetadata metadata to be changed (will not affect attributes that is not passed)
  49. * @param {function} callback function to be executed after updating (receives new updated metadata)
  50. */
  51. export const updateUserMetadata = (userId, newMetadata, callback) => {
  52. axios.put(serverURL + '/users/updateMetadata/' + userId, newMetadata)
  53. .then((result) => {
  54. console.log('updated user metadata', result.data);
  55. if (callback) callback(result.data);
  56. }).catch(err => {console.log(err)});
  57. }
  58. /**
  59. * get user data for specified user from Auth0 database
  60. * @param {string} userId ID of user whose data shall be fetched from the database
  61. * @param {function} updateUser function that receives the user data and will update the state of the calling component
  62. */
  63. export const getUserById = (userId, updateUser) => {
  64. axios.get(serverURL + '/users/byId/' + userId)
  65. .then(res => {
  66. if (updateUser) updateUser(res.data);
  67. }).catch(err => {console.log(err)});
  68. }
  69. /**
  70. * get user settings for specified user from database
  71. * @param {string} userId ID of user whose settings shall be fetched from the database
  72. * @param {function} updateSettings function that receives the settings and will update the state of the calling component
  73. */
  74. export const getSettingsOfUser = (userId, updateSettings) => {
  75. axios.get(serverURL + '/settings/ofUser/' + userId)
  76. .then(res => {
  77. const settingsFound = res.data;
  78. if (!settingsFound) {
  79. createNewSettingsForUser(userId, () => getSettingsOfUser(userId, updateSettings));
  80. } else {
  81. updateSettings(settingsFound);
  82. }
  83. }).catch(err => {console.log(err)});
  84. }
  85. /**
  86. * single function that can alter the individual settings of a user
  87. * @param {string} userId ID of the user whose settings shall be updated
  88. * @param {string} key key of the setting that is to be updated. currently one of: contacts, language, prefersDarkMode
  89. * @param {*} value new value of the setting to be updated
  90. * @param {(function|boolean)} updateAllSettings callback to allow fetching new settings (receives new updated setting for user)
  91. */
  92. export const updateUserSettingsForCategory = (userId, key, value, updateAllSettings) => {
  93. axios.put(serverURL + '/settings/updateSingleUserSetting/' + userId, { key, value }).then((result) => {
  94. if (updateAllSettings) updateAllSettings(result.data.settingSaved);
  95. });
  96. }