UNPKG

@gouvfr/dsfr-roller

Version:

Le module `dsfr-roller` permet de publier le site de documentation du Système de Design de l’État - DSFR

20 lines (17 loc) 576 B
import { Renderable } from '../../core/renderable.js'; class Resource extends Renderable { async render() { const resource = { meta: this._data.resource.meta, search: this._data.resource.search, pagination: this._data.resource.pagination, consent: this._data.resource.consent, badge: this._data.resource.badge, filter: this._data.resource.filter }; return `<script> window.resource = ${JSON.stringify(resource)}; </script>`; } } export { Resource };