Giter Site home page Giter Site logo

HTTPError json as unknown/type about ky HOT 3 CLOSED

mfulton26 avatar mfulton26 commented on August 23, 2024
HTTPError json as unknown/type

from ky.

Comments (3)

sholladay avatar sholladay commented on August 23, 2024 2

Yeah, makes sense.

I believe all that is needed is to update HTTPError here:

public response: Response;

… to use the KyResponse type instead of Response:

export type KyResponse = {

from ky.

sholladay avatar sholladay commented on August 23, 2024

I think so, but to be sure, can you provide a full usage example?

from ky.

mfulton26 avatar mfulton26 commented on August 23, 2024
Condensed example

Instead of

try {
  // some ky call
} catch (e) {
  const { msg } = (await e.response.json()) as { msg: string };
  // do something with the parsed error response payload
}

I want to be able to write

try {
  // some ky call
} catch (e) {
  const { msg } = await e.response.json<{ msg: string }>();
  // do something with the parsed error response payload
}

so that the I don't need to wrap await e.response.json() inside parameters and explicitly cast

@@ -1,6 +1,6 @@
 try {
   // some ky call
 } catch (e) {
-  const { msg } = (await e.response.json()) as { msg: string };
+  const { msg } = await e.response.json<{ msg: string }>();
   // do something with the parsed error response payload
 }
Longer example

Instead of

import ky, { BeforeRequestHook, HTTPError } from "npm:ky";

function notFound(): BeforeRequestHook {
  return (request, options) => {
    const response = Response.json({ msg: "Not Found" }, {
      status: 404,
    });
    throw new HTTPError(response, request, options);
  };
}

async function updatePostBody(id: string, body: string) {
  try {
    const url = `https://www.example.com/posts/${encodeURIComponent(id)}`;
    const hooks = { beforeRequest: [notFound()] };
    return await ky.put(url, { json: { id, body }, hooks })
      .json<{ id: number; title: string; body: string; userId: number }>();
  } catch (e) {
    if (!(e instanceof HTTPError)) throw e;
    const { msg } = (await e.response.json()) as { msg: string };
    throw Error(`Update failed: ${msg}`);
  }
}

await updatePostBody(crypto.randomUUID(), "42");

I want to be able to change (await e.response.json()) as { msg: string } to await e.response.json<{ msg: string }>() so that I don't need to wrap await e.response.json() inside parentheses and then cast.

from ky.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.