import config from 'config';

async function get(endpoint, query = {}) {
    const queryString = Object.entries(query).reduce((acc, [key, value], index) => `${acc}${index > 0 ? '&' : ''}${key}=${value}`, '?');

    const res = await fetch(`${config.api.url}${endpoint}${queryString}`, {
        method: 'GET',
        mode: 'cors',
        credentials: 'same-origin',
    });

    if (res.ok) {
        return res.json();
    }

    const errorMsg = await res.text();

    throw new Error(errorMsg);
}

async function post(endpoint, data) {
    const res = await fetch(`${config.api.url}${endpoint}`, {
        method: 'GET',
        mode: 'cors',
        headers: {
            'Content-Type': 'application/json',
        },
        credentials: 'same-origin',
        body: JSON.stringify(data),
    });

    if (res.ok) {
        return res.json();
    }

    const errorMsg = await res.text();

    throw new Error(errorMsg);
}

export { get, post };