UNPKG

@gouvfr/dsfr-nexus

Version:

Le module `dsfr-nexus` est l'interface de ligne de commande (CLI) centrale du Système de Design de l’État - DSFR. Il offre des outils pour gérer et compiler les ressources du DSFR

16 lines (13 loc) 653 B
class FooterInterpreter { constructor (state, data) { this._state = state; this._data = data; } async resolve () { this._data.link = this._state.resolveItem(this._data?.link); if (this._data?.top?.categories) this._data.top.categories.forEach(category => category.links = category.links.map(link => this._state.resolveItem(link))); if (this._data?.content?.links) this._data.content.links = this._data.content.links.map(link => this._state.resolveItem(link)); if (this._data?.bottom?.links) this._data.bottom.links = this._data.bottom.links.map(link => this._state.resolveItem(link)); } } export { FooterInterpreter };