2020-07-15 00:44:42 +01:00
|
|
|
import isObject from 'lodash.isobject'
|
|
|
|
import api from '../api'
|
|
|
|
import { me } from '../initial_state'
|
2020-07-17 21:19:40 +01:00
|
|
|
import { importFetchedAccount } from './importer'
|
2020-07-15 00:44:42 +01:00
|
|
|
|
|
|
|
export const SAVE_USER_PROFILE_INFORMATION_FETCH_REQUEST = 'SAVE_USER_PROFILE_INFORMATION_FETCH_REQUEST'
|
|
|
|
export const SAVE_USER_PROFILE_INFORMATION_FETCH_SUCCESS = 'SAVE_USER_PROFILE_INFORMATION_FETCH_SUCCESS'
|
|
|
|
export const SAVE_USER_PROFILE_INFORMATION_FETCH_FAIL = 'SAVE_USER_PROFILE_INFORMATION_FETCH_FAIL'
|
|
|
|
|
|
|
|
export const saveUserProfileInformation = (data) => {
|
|
|
|
return function (dispatch, getState) {
|
|
|
|
if (!isObject(data) || !me) return
|
|
|
|
|
|
|
|
dispatch(saveUserProfileInformationRequest())
|
|
|
|
|
|
|
|
const formData = new FormData()
|
2020-07-17 21:19:40 +01:00
|
|
|
if (!!data.displayName) formData.append('display_name', data.displayName)
|
|
|
|
if (data.note !== undefined) formData.append('note', data.note)
|
|
|
|
if (data.avatar !== undefined) formData.append('avatar', data.avatar)
|
|
|
|
if (data.header !== undefined) formData.append('header', data.header)
|
|
|
|
if (data.locked !== undefined) formData.append('locked', data.locked)
|
2020-07-15 00:44:42 +01:00
|
|
|
|
|
|
|
api(getState).patch('/api/v1/accounts/update_credentials', formData, {
|
|
|
|
headers: {
|
|
|
|
'Content-Type': 'multipart/form-data'
|
|
|
|
}
|
|
|
|
}).then((response) => {
|
2020-07-17 21:19:40 +01:00
|
|
|
dispatch(importFetchedAccount(response.data))
|
2020-07-15 00:44:42 +01:00
|
|
|
dispatch(saveUserProfileInformationSuccess(response.data))
|
|
|
|
}).catch(error => {
|
|
|
|
dispatch(saveUserProfileInformationFail(error))
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function saveUserProfileInformationRequest() {
|
|
|
|
return {
|
|
|
|
type: SAVE_USER_PROFILE_INFORMATION_FETCH_REQUEST,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function saveUserProfileInformationSuccess(userProfileData) {
|
|
|
|
return {
|
|
|
|
type: SAVE_USER_PROFILE_INFORMATION_FETCH_SUCCESS,
|
|
|
|
userProfileData,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function saveUserProfileInformationFail(error) {
|
|
|
|
return {
|
|
|
|
type: SAVE_USER_PROFILE_INFORMATION_FETCH_FAIL,
|
|
|
|
error,
|
|
|
|
}
|
|
|
|
}
|