Giter Site home page Giter Site logo

Comments (7)

brouberol avatar brouberol commented on May 31, 2024 2

I think I have a generic-enough solution, and it seems to be working. I still need to refine it and find out how to unit test it, and I need a bit more time for that.

from sqladmin.

brouberol avatar brouberol commented on May 31, 2024

I'm hitting the same issue as well. As far as I can tell, the model data attributes overrides the wtforms.form.Baseform.data property. I haven't (yet) taken the time to see whether I can somehow circumvent this issue or not.

from sqladmin.

brouberol avatar brouberol commented on May 31, 2024

Looking into the wtforms repo, I found this open issue: wtforms/wtforms#791, which points back to the sqladmin repo in the end.

from sqladmin.

brouberol avatar brouberol commented on May 31, 2024

I've been able to circumvent this issue by:

  • renaming the data sqlalchemy column to data_ while still providing a data hybrid property on the model to hide the renaming
  • map the data_ column name to a data sqladmin column label
# models.py
+class DataPropertyMixin:
+    """Provide the .data property as an accessor to the data_ mapped column"""
+
+    @hybrid_property
+    def data(self):
+        return self.data_
+
+    @data.inplace.setter
+    def set_data(self, value):
+        self.data_ = value
+
+

-class Item(NameReprMixin, BaseModel):
+class Item(NameReprMixin, DataPropertyMixin, BaseModel):
     name: Mapped[str] = mapped_column(String(255), unique=True, index=True)
-    data: Mapped[str] = mapped_column(Json, name="json_data")
+    data_: Mapped[str] = mapped_column(Json, name="json_data")


# admin.py
class ItemAdmin(CustomModelView, model=Item):
-    column_labels = {"five_e_tools_url": "5e.tools URL"}
+    column_labels = {"five_e_tools_url": "5e.tools URL", Item.data_: "data"}

It's not ideal, as we'd have to repeat the process for any name collision that we get with wtforms.form.BaseForm but it works.

from sqladmin.

aminalaee avatar aminalaee commented on May 31, 2024

I'm open to add a condition for this specific column name (data) and have a proper comment to rename it to something else in wtforms to handle this. PRs are welcome.

from sqladmin.

brouberol avatar brouberol commented on May 31, 2024

I'm happy to give it a go when I can.

I was thinking of adapting https://github.com/aminalaee/sqladmin/blob/main/sqladmin/forms.py#L619-L634 so that, for model columns specifically named data, we'd map them to Field objects named _data with an attribute name=data, as hinted at in wtforms/wtforms#791 (comment).

So we'd get field_dict['_data'] = Field(name='data', ...).

Was that what you had in mind?

from sqladmin.

aminalaee avatar aminalaee commented on May 31, 2024

Yeah and also here when we get the form data:

async def _handle_form_data(self, request: Request, obj: Any = None) -> FormData:

We should reverse that logic.

from sqladmin.

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.