Giter Club home page Giter Club logo

Comments (5)

kevinbarabash avatar kevinbarabash commented on May 27, 2024

@chenglou I'm just starting to play around with the bindings from Canvas2dRe.re. The tests in https://github.com/reasonml-community/bs-webapi-incubator/blob/master/tests/canvas/canvas2d_test.re in use |> for some of the functions, but |> doesn't work consistently b/c many of the the function take the context as the first arg. I'm curious about why the context isn't always the last arg.

from bs-webapi-incubator.

bloodyowl avatar bloodyowl commented on May 27, 2024

I think I have a couple of bindings locally (like drawImage), I'll put up a PR today

from bs-webapi-incubator.

wtfleming avatar wtfleming commented on May 27, 2024

I took a shot at drawImage but it isn't quite right.

[@bs.send]
external drawImage :
  (
    t,
    ~image: HtmlImageElementRe.t,
    ~dx: float,
    ~dy: float,
    ~dWidth: float=?,
    ~dHeight: float=?,
    ~sx: float=?,
    ~sy: float=?,
    ~sWidth: float=?,
    ~sHeight: float=?,
    unit
  ) =>
  unit =
  "";

Not sure how to handle the image type since it can be any of the following:
An element to draw into the context. The specification permits any canvas image source (CanvasImageSource), specifically, a CSSImageValue, an HTMLImageElement, an SVGImageElement, an HTMLVideoElement, an HTMLCanvasElement, an ImageBitmap, or an OffscreenCanvas.
https://developer.mozilla.org/en-US/docs/Web/API/CanvasRenderingContext2D/drawImage

Working though this has been very educational in learning reason / converting some JS canvas code, but if you've already done the work, i'd love to see your PR @bloodyowl

thanks!

from bs-webapi-incubator.

glennsl avatar glennsl commented on May 27, 2024

You can either make a separate binding for each type, use @bs.unwrap or a gadt with a phantom type. See https://github.com/glennsl/bucklescript-cookbook#bind-to-a-function-overloaded-to-take-an-argument-of-several-different-types-an-untagged-union

from bs-webapi-incubator.

yawaramin avatar yawaramin commented on May 27, 2024

I think this repo has become the de facto home of the Web API bindings. We can always reopen if there is a desire to upstream into bs-platform.

from bs-webapi-incubator.

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.