package.src.utils.dom.renderers.renderContent.js Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sweetalert2 Show documentation
Show all versions of sweetalert2 Show documentation
A beautiful, responsive, customizable and accessible (WAI-ARIA) replacement for JavaScript's popup boxes, supported fork of sweetalert
The newest version!
import * as dom from '../../dom/index.js'
import { renderInput } from './renderInput.js'
/**
* @param {SweetAlert} instance
* @param {SweetAlertOptions} params
*/
export const renderContent = (instance, params) => {
const htmlContainer = dom.getHtmlContainer()
if (!htmlContainer) {
return
}
dom.showWhenInnerHtmlPresent(htmlContainer)
dom.applyCustomClass(htmlContainer, params, 'htmlContainer')
// Content as HTML
if (params.html) {
dom.parseHtmlToContainer(params.html, htmlContainer)
dom.show(htmlContainer, 'block')
}
// Content as plain text
else if (params.text) {
htmlContainer.textContent = params.text
dom.show(htmlContainer, 'block')
}
// No content
else {
dom.hide(htmlContainer)
}
renderInput(instance, params)
}