How to access components unique encapsulation ID in Angular 9
Asked Answered
P

3

14

I'm trying to encapsulate my element ids by adding the instance id like this:

<label for="id-{{ unique }}-name"></label>
<input id="id-{{ unique }}-name" type="text" formControlName="name">

I previously worked with this: https://mcmap.net/q/830624/-can-you-get-the-component-encapsulation-host-id. But after upgrading Angular from 7 to 9 this seems deprecated. I was thinking about a simple helper service, which would generate unique ids for my app.

Something like this:

@Injectable()
export class UniqueIdService {
  private counter = 0

  constructor() {}

  public getUniqueId (prefix: string) {
    const id = ++this.counter
    return prefix + id
  }
}

inspired by lodash uniqueid

But I did rather use angulars build in ids. So my currently solution is to extract the id from the components _nghost attribute.

constructor ( private element: ElementRef, ) {
   const ngHost = 
     Object.values(this.element.nativeElement.attributes as NamedNodeMap)
     .find(attr => attr.name.startsWith('_nghost'))
     .name
   this.unique = ngHost.substr(ngHost.lastIndexOf('-') + 1)
}

But I'm not perfectly happy with this solution and I'm looking for a direct access to the id.

Does anyone know how to access this?

Papert answered 7/2, 2020 at 13:42 Comment(0)
E
10

The unique ID in Angular 9 can be represented as:

_nghost   -   par    -     2
   |           |           |
 static      APP_ID   componentDef.id

In order to access componentDef.id you can do the following:

export class SomeComponent implements OnInit {
  unique = this.constructor['ɵcmp'].id;

where ɵcmp is a private variable NG_COMP_DEF

Ng-run Example

Ehrenburg answered 8/2, 2020 at 3:13 Comment(4)
Since this is private, shouldn't we avoid using it ... otherwise it should have been part of some of the public APIs, right?Broek
This only works if there's a single instance of the component. Basically, it is the component ID, and not the component instance ID so it won't be unique when multiple components of the same type are rendered.Overtrade
@Overtrade - I think that all instances of a component share the same encapsulation ID. At least, that is what I see when I have multiple instances in my Angular page.Watanabe
Using your example you can copy and paste the child component and they all have the same id. This isn't unique nor safe.Theatrical
S
4

You can use crypto.randomUUID() which is provided by Crypto API in browsers. Support is great.

https://developer.mozilla.org/en-US/docs/Web/API/Crypto/randomUUID

https://caniuse.com/mdn-api_crypto_randomuuid

Singlecross answered 5/4, 2023 at 8:27 Comment(2)
While this link may answer the question, it is better to include the essential parts of the answer here and provide the link for reference. Link-only answers can become invalid if the linked page changes. - From ReviewPelaga
It's not link only. The function returns unique id which solves the problem.Singlecross
S
1

Neither _nghost nor ɵcmp are unique across component instances. They should not be used for that purpose.

Your UniqueIdService is the easiest and the safest solution. (The counter property could be static to be sure that every instance of the service returns unique ID).

Sommersommers answered 3/10, 2022 at 14:10 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.