All files / src/api/versions index.ts

0% Statements 0/12
0% Branches 0/2
0% Functions 0/2
0% Lines 0/12

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30                                                           
import { API_PATHS } from "../../constants/url";
 
const NOT_FOUND = "NOT_FOUND";
 
/**
 * Package versions.
 */
export interface PackageVersions {
  readonly updated: string;
  readonly packages: { [key: string]: string[] };
}
 
const defaultVersions = { packages: {}, updated: NOT_FOUND };
 
export const fetchVersions = async (): Promise<PackageVersions> => {
  const response = await fetch(API_PATHS.ALL_VERSIONS);
 
  if (!response.ok) {
    console.error(response.statusText);
    console.warn("Could not retrieve package versions. Using empty data.");
    return defaultVersions;
  }
 
  return response.json().catch((err) => {
    console.error(err);
    console.warn("Error in package versions response. Using empty data.");
    return defaultVersions;
  });
};