shoelace/docs/components/include.md

46 wiersze
1.4 KiB
Markdown
Czysty Zwykły widok Historia

2020-10-16 12:57:02 +00:00
# Include
[component-header:sl-include]
Includes give you the power to embed external HTML files into the page.
Included files are asynchronously requested using `window.fetch()`. Requests are cached, so the same file can be included multiple times, but only one request will be made.
The included content will be inserted into the `<sl-include>` element's default slot so it can be easily accessed and styled through the light DOM.
2021-11-04 22:12:47 +00:00
```html preview
<sl-include src="https://shoelace.style/assets/examples/include.html"></sl-include>
```
```jsx react
import { SlInclude } from '@shoelace-style/shoelace/dist/react';
2022-03-02 15:10:41 +00:00
const App = () => <SlInclude src="https://shoelace.style/assets/examples/include.html" />;
2020-10-16 12:57:02 +00:00
```
## Examples
### Listening for Events
When an include file loads successfully, the `sl-load` event will be emitted. You can listen for this event to add custom loading logic to your includes.
If the request fails, the `sl-error` event will be emitted. In this case, `event.detail.status` will contain the resulting HTTP status code of the request, e.g. 404 (not found).
```html
2021-11-04 22:12:47 +00:00
<sl-include src="https://shoelace.style/assets/examples/include.html"></sl-include>
2020-10-16 12:57:02 +00:00
<script>
const include = document.querySelector('sl-include');
2022-03-02 15:10:41 +00:00
2020-10-16 12:57:02 +00:00
include.addEventListener('sl-load', () => {
console.log('Success');
});
include.addEventListener('sl-error', event => {
console.log('Error', event.detail.status);
});
</script>
```
[component-metadata:sl-include]