Submit
Path:
~
/
home
/
getwphos
/
www
/
shellfish
/
wp-content
/
plugins
/
wpforms-lite
/
assets
/
js
/
integrations
/
ai
/
modules
/
File Content:
helpers-text.js
/* global WPFormsAIChatHTMLElement */ /** * The WPForms AI chat element. * * Choices helpers module. * * @since 1.9.1 * * @param {WPFormsAIChatHTMLElement} chat The chat element. * * @return {Function} The app cloning function. */ export default function( chat ) { // eslint-disable-line no-unused-vars /** * The default `text` mode helpers object. * * @since 1.9.1 */ return { /** * Get the `text` answer based on AI response data. * * @since 1.9.1 * * @param {Object} response The AI response data. * * @return {string} HTML markup. */ getAnswer( response ) { return ` <h4>${ response?.heading ?? '' }</h4> <p>${ response?.text ?? '' }</p> <span>${ response?.footer ?? '' }</span> `; }, /** * Get the answer pre-buttons HTML markup. * * @since 1.9.1 * * @return {string} The answer pre-buttons HTML markup. */ getAnswerButtonsPre() { return ''; }, /** * Added answer callback. * * @since 1.9.1 */ addedAnswer() {}, /** * Determine whether the Welcome Screen should be displayed. * * @since 1.9.2 * * @return {boolean} Display the Welcome Screen or not. */ isWelcomeScreen() { return true; }, }; }
Edit
Rename
Chmod
Delete
FILE
FOLDER
Name
Size
Permission
Action
api.js
3222 bytes
0644
api.min.js
998 bytes
0644
helpers-choices.js
8554 bytes
0644
helpers-choices.min.js
3578 bytes
0644
helpers-text.js
1242 bytes
0644
helpers-text.min.js
229 bytes
0644
N4ST4R_ID | Naxtarrr