Code Monkey home page Code Monkey logo

Comments (3)

EmilStenstrom avatar EmilStenstrom commented on May 29, 2024

Could you say a bit more about why your want that?

from django-components.

aymericderbois avatar aymericderbois commented on May 29, 2024

Yes, indeed I should have given a more complete explanation on this request.

If I take the example of the "calendar" component from the documentation :

@component.register("calendar")
class Calendar(component.Component):
    # Templates inside `[your apps]/components` dir and `[project root]/components` dir will be automatically found. To customize which template to use based on context
    # you can override def get_template_name() instead of specifying the below variable.
    template_name = "calendar/calendar.html"

    # This component takes one parameter, a date string to show in the template
    def get_context_data(self, date):
        return {
            "date": date,
        }

    class Media:
        css = "calendar/calendar.css"
        js = "calendar/calendar.js"

And in a slightly different example, if I set the type of the date parameter like this :

@component.register("calendar")
class Calendar(component.Component):
    # Templates inside `[your apps]/components` dir and `[project root]/components` dir will be automatically found. To customize which template to use based on context
    # you can override def get_template_name() instead of specifying the below variable.
    template_name = "calendar/calendar.html"

    # This component takes one parameter, a date string to show in the template
    def get_context_data(self, date: str):
        return {
            "date": date,
        }

    class Media:
        css = "calendar/calendar.css"
        js = "calendar/calendar.js"

Then mypy will raise the following error:

myapp/components/calendar/calendar.py:8: error: Signature of "get_context_data" incompatible with supertype "Component"
myapp/components/calendar/calendar.py:8: note:      Superclass:
myapp/components/calendar/calendar.py:8: note:          def get_context_data(self) -> Any
myapp/components/calendar/calendar.py:8: note:      Subclass:
myapp/components/calendar/calendar.py:8: note:          def get_context_data(self, date: str) -> Any

from django-components.

EmilStenstrom avatar EmilStenstrom commented on May 29, 2024

Thank you for you explanation! I fixed this as part of the 0.23 release. Let me know how it works.

from django-components.

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.