ft_transcendence/frontend/static/js/api/profile.js

30 lines
621 B
JavaScript
Raw Normal View History

2023-12-16 10:42:30 -05:00
import { Client } from "./client.js";
2023-12-06 09:19:41 -05:00
class Profile
{
2023-12-16 10:42:30 -05:00
/**
* @param {Client} client
*/
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
{
2023-12-16 10:42:30 -05:00
/**
* @type {Client} client
*/
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-16 10:42:30 -05:00
this.user_id = response.user_id;
2023-12-06 09:19:41 -05:00
this.username = response_data.username;
this.avatar_url = response_data.avatar_url;
}
}
export {Profile}