Add basic avatar changing.

This commit is contained in:
Roger Braun 2017-04-16 13:44:11 +02:00
parent 55edd6d8c2
commit 37c10be5e2
4 changed files with 58 additions and 2 deletions

View file

@ -18,6 +18,7 @@ const FOLLOWING_URL = '/api/friendships/create.json'
const UNFOLLOWING_URL = '/api/friendships/destroy.json'
const QVITTER_USER_PREF_URL = '/api/qvitter/set_profile_pref.json'
const REGISTRATION_URL = '/api/account/register.json'
const AVATAR_UPDATE_URL = '/api/qvitter/update_avatar.json'
// const USER_URL = '/api/users/show.json'
import { each } from 'lodash'
@ -30,6 +31,29 @@ let fetch = (url, options) => {
return oldfetch(fullUrl, options)
}
// Params
// cropH
// cropW
// cropX
// cropY
// img (base 64 encodend data url)
const updateAvatar = ({credentials, params}) => {
let url = AVATAR_UPDATE_URL
const form = new FormData()
each(params, (value, key) => {
if (value) {
form.append(key, value)
}
})
return fetch(url, {
headers: authHeaders(credentials),
method: 'POST',
body: form
}).then((data) => data.json())
}
// Params needed:
// nickname
// email
@ -228,7 +252,8 @@ const apiService = {
fetchAllFollowing,
setUserMute,
fetchMutes,
register
register,
updateAvatar
}
export default apiService