2023-12-06 09:19:41 -05:00
|
|
|
class Profile
|
|
|
|
{
|
2023-12-08 11:36:41 -05:00
|
|
|
constructor (client, username = undefined, avatar_url = undefined, user_id = undefined)
|
2023-12-06 09:19:41 -05:00
|
|
|
{
|
|
|
|
this.client = client;
|
2023-12-08 11:36:41 -05:00
|
|
|
this.username = username;
|
|
|
|
this.avatar_url = avatar_url
|
|
|
|
this.user_id = user_id
|
2023-12-06 09:19:41 -05:00
|
|
|
}
|
|
|
|
|
2023-12-12 03:53:28 -05:00
|
|
|
async init(user_id)
|
2023-12-06 09:19:41 -05:00
|
|
|
{
|
2023-12-12 03:53:28 -05:00
|
|
|
let response = await this.client._get(`/api/profiles/${user_id}`);
|
2023-12-06 09:19:41 -05:00
|
|
|
let response_data = await response.json();
|
|
|
|
|
2023-12-12 03:53:28 -05:00
|
|
|
this.user_id = user_id;
|
2023-12-06 09:19:41 -05:00
|
|
|
this.username = response_data.username;
|
|
|
|
this.avatar_url = response_data.avatar_url;
|
|
|
|
}
|
|
|
|
|
|
|
|
async change_avatar(form_data)
|
|
|
|
{
|
2023-12-12 03:53:28 -05:00
|
|
|
let response = await this.client._patch_file(`/api/profiles/${this.user_id}`, form_data);
|
2023-12-06 09:19:41 -05:00
|
|
|
let response_data = await response.json()
|
|
|
|
|
|
|
|
return response_data;
|
|
|
|
}
|
|
|
|
|
|
|
|
async setData (data)
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export {Profile}
|