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

Incorrect/misleading example use-case for ifDefined directive #1400

Open
didnotwant opened this issue Feb 13, 2025 · 1 comment
Open

Incorrect/misleading example use-case for ifDefined directive #1400

didnotwant opened this issue Feb 13, 2025 · 1 comment

Comments

@didnotwant
Copy link

Hi! In the docs for the ifDefined directive, we read the following:

This is especially useful for setting URL attributes, when the attribute should not be set if required parts of the URL are not defined, to prevent 404's.

and there's the following code example:

@customElement('my-element')
class MyElement extends LitElement {

  @property()
  filename: string | undefined = undefined;

  @property()
  size: string | undefined = undefined;

  render() {
    // src attribute not rendered if either size or filename are undefined
    return html`<img src="/images/${ifDefined(this.size)}/${ifDefined(this.filename)}">`;
  }
}

The example clearly shows how it works, however the src is a mandatory attribute of the img element, and in such a case, I think the better way of doing things would be to not render the img at all.

Please don't get me wrong – I'm of course aware that this is just an example, but if such a code snippet is presented in a documentation of a library, it could be considered by many people as a good/common practice.

I wasn't able to find out a good alternative to that in a reasonable timespan, so I'm just leaving this issue as a note or a small issue report.

@e111077
Copy link
Collaborator

e111077 commented Feb 13, 2025

shooting from the hip here, is tabindex a good isue case here? Trying to think if there's a better way to do this without ifDefined():

tabindex=${ifDefined(this.focusable ? '0' : undefined}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
Status: No status
Development

No branches or pull requests

2 participants