Answer: by defining following attributes in module-url:
src with path to module resource, If omitted, it would match the
window.location.href
slice to read the URL
URL properties would be a part of slice data, the value would be a full URL.
Where to use module-url?
Answer: to inject the library resources URL into generated HTML.
Import maps are used for defining the dependencies location on the web page level.
This way dependencies could reside on different CDN path or even domains while in the code would be
referenced
by symbolic package name.
See the CDN example bellow.
should render '👋 from embed-lib-component' as link to 'demo-lib/embed-lib.html', link should open the page
embed-lib resolved to ./lib-dir/embed-lib.html by page importmap
<custom-element><template><module-urlslice="lib-url"src="embed-lib"></module-url><iftest="//lib-url/@error"><p>error: <b>{//lib-url/@error}</b></p></if>
check the link:
<ahref="{//lib-url}"><custom-elementsrc="embed-lib#embed-lib-component">
failed to load
</custom-element></a></template></custom-element>
3. module by symbolic name with missing importmap entry
should render error message and `failed to load` broken link
As fakedemo-lib is not in importmaps, the symbolic name is not resolved and renders the error
<custom-element><template><module-urlslice="lib-url"src="fakedemo-lib/embed-lib.html"></module-url><iftest="//lib-url/@error"><p>error: <b>{//lib-url/@error}</b></p></if>
the link is broken:
<ahref="{//lib-url}"><custom-elementsrc="fakedemo-lib/embed-lib.html#embed-lib-component">
failed to load
</custom-element></a></template></custom-element>
error: Failed to execute 'resolve' on 'import.meta': Failed to resolve module specifier fakedemo-lib/embed-lib.html: Relative references must start with either "/", "./", or "../".
resides within ./lib-dir and serves a sample of module with multiple templates
<!DOCTYPEhtml><htmllang="en"><head><metahttp-equiv="Content-Type"content="text/html; charset=utf-8"/><title>templates for embedded and external DCE lib dependencies</title></head><body><h1>templates for embedded and external DCE lib dependencies</h1><templateid="embed-lib-component">
👋 from embed-lib-component
</template><templateid="embed-relative-hash">
👌 from embed-relative-hash invoking
<module-urlslice="full-url"src="./embed-lib.html"></module-url><ahref="{//full-url}#embed-lib-component"><imgsrc="{//full-url}/../Smiley.svg"/>
#embed-lib-component
</a>:
<custom-elementsrc="#embed-lib-component"></custom-element></template><templateid="embed-relative-file">
👍 from embed-relative-file invoking
<module-urlslice="up-url"src="../embed-1.html"></module-url><ahref="{//up-url}">../embed-1.html</a>:
<custom-elementsrc="../embed-1.html">
loading from ../embed-1.html ...
</custom-element></template></body></html>