Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[PROPOSAL] Support DOM properties binding as HTML attribute. #5506

Closed
montyclt opened this issue Apr 22, 2018 · 4 comments
Closed

[PROPOSAL] Support DOM properties binding as HTML attribute. #5506

montyclt opened this issue Apr 22, 2018 · 4 comments
Assignees
Labels
area-blazor Includes: Blazor, Razor Components Needs: Design This issue requires design work before implementating.
Milestone

Comments

@montyclt
Copy link

montyclt commented Apr 22, 2018

A DOM object has attributes (set by HTML attributes) and properties, set or get by dot notation in DOM object.

An example:

// HTML
<input id="name" value="Monty" />

// Assume I render the page and change the content of textbox from Monty to Anna.

// JavaScript
var name = document.getElementById("name");

name.getAttribute("value"); // Monty
name.value; // Anna

As see, the value of the attribute is not the same than the property.

Because the text of textbox rendered by input tag is in the property and not in the HTML attribute, if we bind the attribute and change the value of the bound field, nothing occurs in rendered textfield.

<input value"@Name" id="name" />

@functions
{
    public string Name = "Monty";
}

If we use value instead of bind attribute, if Name field change, nothing is reflected in rendered textfield.

I propose a syntax to bind field to DOM property.

An possible example:

<input $value="@Name" />

This syntax, bind Name field to DOM property instead of HTML attribute.

Why?

  • Consistency, instead of new attribute called bind, you know what is binding really.
  • Some webcomponents, use new properties, for example:
// HTML
<my-calendar id="calendar" />

// JavaScript
var calendar = document.getElementById("calendar");
calendar.day; // 13
calendar.month; //4
calendar.year; // 2017
calendar.value; // undefined

In this case, I can't use bind attribute, but I can do:

<my-calendar $day="Day" $month="Month" $year="Year" />

@functions
{
    public int Day { get; set; }
    public int Month { get; set; }
    public int Year { get; set; }
}
@olavorn
Copy link

olavorn commented Apr 22, 2018

I agree that this is a versatille way to interact with DOM, but there are some aspects to consider:

1- DOM attribute changes may cause excessive repaints/redraws, should be used carefully.
2- Two way binding expects changes in attributes via javascript or other to apply to Blazor objects, in many cases other than value attribute and a tiny set of nodes, this may not occur, and it's a pathway to fundamental flaws cause it will be relying on browser events.

@aspnet-hello aspnet-hello transferred this issue from dotnet/blazor Dec 17, 2018
@aspnet-hello aspnet-hello added area-mvc Includes: MVC, Actions and Controllers, Localization, CORS, most templates area-blazor Includes: Blazor, Razor Components labels Dec 17, 2018
@rynowak rynowak added this to the 3.0.0-preview6 milestone Mar 15, 2019
@rynowak rynowak added the Needs: Design This issue requires design work before implementating. label Mar 15, 2019
@mkArtakMSFT
Copy link
Member

@SteveSandersonMS what are your thoughts regarding this? Is this something we'd ever do? If not, feel free to close it.

@SteveSandersonMS
Copy link
Member

I think at this point it's best to close it.

It's possible that one day we'll do something to support addressing DOM element properties directly, but so far this is an extremely niche request. People are routinely building complex apps without needing this or ever considering that they might. We would strongly prefer to avoid introducing this entire conceptual area if it's avoidable, since it's the sort of thing that people will constantly be confused over (when to use attributes vs properties).

If the only use cases for it are when interacting with 3rd-party JS libraries, then it might be that developers have good opportunities to make whatever DOM property mutations they want as part of the existing JS interop logic they need to write.

This is not to dismiss the validity of the feature request altogether! I know there may be cases where it's inconvenient not to have it. If anyone has compelling use cases, I'd strongly appreciate it if you could post them. Be sure to describe it in an end-to-end way (which 3rd-party components you're trying to use, why they need you to modify DOM properties, etc.).

So for now I'll close this, and we will watch out for whether others report similar requirements, or what other examples of its necessity are posted. Hope that makes sense.

@montyclt
Copy link
Author

Hello @SteveSandersonMS,

When I opened this issue, I was experimenting with 3rd-party web components made with Polymer. I remember some components that input more than a single value using properties. I remember a date picker component that works like this:

<date-picker id="my-date-picker"></datepicker>
var datePicker = document.getElementById("my-date-picker");
var day = datePicker.day;
var month = datePicker.month;
var year = datePicker.year;

Today, I don't use webcomponents, and in the case that I need a date picker in Razor Components, I will use a Razor Component instead of web component.

@mkArtakMSFT mkArtakMSFT removed area-mvc Includes: MVC, Actions and Controllers, Localization, CORS, most templates labels May 9, 2019
@ghost ghost locked as resolved and limited conversation to collaborators Dec 4, 2019
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
area-blazor Includes: Blazor, Razor Components Needs: Design This issue requires design work before implementating.
Projects
None yet
Development

No branches or pull requests

6 participants