Coder Social home page Coder Social logo

Comments (2)

smalluban avatar smalluban commented on June 26, 2024

Hi @auzmartist!

It's been largely really stable as I've upgraded quite a few projects. 👍

Great!

About the problem, it is a TS limitation, or I don't know some hidden feature. The Component type takes a generic type, and it must iterate over the props to map the interface values to the hybrids properties definitions according to the API. Unfortunately, if you extend the interface, there is no way to know, which props are from the definition itself or from the base (by the extends). In the end, if you create an interface with HTMLElement base, without extracting, there is another problem - TS complains that values in the passed object to the define() function do not meet the required type.

EDIT: I dig into the definition of the types, and there might be a solution, but only halfway, so I am not sure if then it will be more confusing. The Extract can take keys from the condition, so if the interface does not extend HTMLElement, it would be possible to define any property:

Extract<
  keyof Omit<E, E extends HTMLElement ? keyof HTMLElement : keyof {}>,
  string
>

However, I personally think that overwriting built-in props might not be the best idea, as sometimes their original functionalities can be broken. It is still possible to do with plain JS, but in TS the types protect from doing it. And what I am aware of, there is no full solution right now in the language.

from hybrids.

smalluban avatar smalluban commented on June 26, 2024

@auzmartist Feel free to re-open if you need some more help here.

from hybrids.

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.