Git Product home page Git Product logo

react-fontpicker's People

Contributors

ae9is avatar dependabot[bot] avatar github-actions[bot] avatar mikk3lro avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

Forkers

afdallah

react-fontpicker's Issues

Problem with loading font not in html (solution)

I was using your great component to set the font in Redux state and use its value in a canvas, but I encountered a problem where the canvas was re-rendering faster than the font could load.

so there was no change in canvas

"I fixed this problem by adding import FontFaceObserver from "fontfaceobserver";"

` const handleFontChange = (font) => {
const fontObserver = new FontFaceObserver(font);

fontObserver.load().then(() => {
  dispatch(
    setSettings({
      ...settings,
      printAreas: settings.printAreas.map((area) =>
        area.id === printArea.id
          ? { ...area, texts: area.texts.map((t) => (t.id === textId ? { ...t, font: font } : t)) }
          : area
      ),
    })
  );
});

};
`

I suggest adding this library directly in the component, so that the value returned in value={(font) => { example(font); }}
is only returned after the font has finished loading ; )

defaultValue not updating dynamically

Hello,

I'm trying to make this work with my app, but the defaultValue looks like it's only working the first time the font picker mounts.

This is the small code where I see it's not working:

<FontPicker defaultValue={currentLayer.font} value={(font) => handleValueChange(font, "font")} />
should be: {currentLayer.font}

The should be part is updating correctly, but not the picker.

Thanks in advance!

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.