STRATO-apps/wordpress_03/app/wp-content/plugins/aimogen-pro/scripts/aiomatic-chat-selector.js
SHA-256: d01a2d19169b774695280202b9a10e1af780d7ed542a2f676eff2ed8e906652a
"use strict";
const { registerBlockType: customRegisterBlockType3 } = wp.blocks;
const mygcel12 = wp.element.createElement;
let editing_optionsc = '';
if (Array.isArray(aiomatic_object.models)) {
aiomatic_object.models.forEach(element => {
editing_optionsc += '<option value="' + element + '">' + element + '</option>';
});
} else if (typeof aiomatic_object.models === 'object' && aiomatic_object.models !== null)
{
Object.entries(aiomatic_object.models).forEach(([key, value]) => {
editing_optionsc += '<option value="' + key + '">' + value + '</option>';
});
}
customRegisterBlockType3( 'aiomatic-automatic-ai-content-writer/aiomatic-persona-selector', {
title: 'Aimogen Persona Selector Form',
icon: 'text',
category: 'embed',
attributes: {
temperature : {
default: 'default',
type: 'string',
},
top_p : {
default: 'default',
type: 'string',
},
presence_penalty : {
default: 'default',
type: 'string',
},
frequency_penalty : {
default: 'default',
type: 'string',
},
model : {
default: 'default',
type: 'string',
},
instant_response : {
default: 'false',
type: 'string',
},
chat_mode : {
default: '',
type: 'string',
},
user_token_cap_per_day : {
default: '',
type: 'string',
},
persistent : {
default: '',
type: 'string',
},
prompt_templates : {
default: '',
type: 'string',
},
prompt_editable : {
default: '',
type: 'string',
},
placeholder : {
default: '',
type: 'string',
},
submit : {
default: '',
type: 'string',
},
submit_image : {
default: '',
type: 'string',
},
submit_full : {
default: '',
type: 'string',
},
show_in_window : {
default: '',
type: 'string',
},
window_location : {
default: '',
type: 'string',
},
font_size : {
default: '1em',
type: 'string',
},
height : {
default: '100%',
type: 'string',
},
background : {
default: 'auto',
type: 'string',
},
minheight : {
default: '250px',
type: 'string',
},
user_font_color : {
default: '#ffffff',
type: 'string',
},
user_background_color : {
default: '#0084ff',
type: 'string',
},
ai_font_color : {
default: '#000000',
type: 'string',
},
ai_background_color : {
default: '#f0f0f0',
type: 'string',
},
input_border_color : {
default: '#e1e3e6',
type: 'string',
},
input_text_color : {
default: '#000000',
type: 'string',
},
persona_name_color : {
default: '#3c434a',
type: 'string',
},
persona_role_color : {
default: '#728096',
type: 'string',
},
input_placeholder_color : {
default: '#333333',
type: 'string',
},
submit_color : {
default: '#55a7e2',
type: 'string',
},
submit_text_color : {
default: '#ffffff',
type: 'string',
},
voice_color : {
default: '#55a7e2',
type: 'string',
},
voice_color_activated : {
default: '#55a7e2',
type: 'string',
},
width : {
default: '100%',
type: 'string',
},
ai_avatar : {
default: '',
type: 'string',
},
ai_role : {
default: '100%',
type: 'string',
},
general_background : {
default: '#ffffff',
type: 'string',
},
ai_personas : {
default: '',
type: 'string',
},
user_message_preppend : {
default: '',
type: 'string',
},
compliance : {
default: '',
type: 'string',
}
},
keywords: ['list', 'posts', 'aiomatic'],
edit: (function( props ) {
var temperature = props.attributes.temperature;
var top_p = props.attributes.top_p;
var presence_penalty = props.attributes.presence_penalty;
var frequency_penalty = props.attributes.frequency_penalty;
var model = props.attributes.model;
var instant_response = props.attributes.instant_response;
var user_message_preppend = props.attributes.user_message_preppend;
var ai_personas = props.attributes.ai_personas;
var chat_mode = props.attributes.chat_mode;
var user_token_cap_per_day = props.attributes.user_token_cap_per_day;
var persistent = props.attributes.persistent;
var prompt_templates = props.attributes.prompt_templates;
var prompt_editable = props.attributes.prompt_editable;
var placeholder = props.attributes.placeholder;
var submit = props.attributes.submit;
var submit_image = props.attributes.submit_image;
var submit_full = props.attributes.submit_full;
var show_in_window = props.attributes.show_in_window;
var window_location = props.attributes.window_location;
var font_size = props.attributes.font_size;
var height = props.attributes.height;
var background = props.attributes.background;
var minheight = props.attributes.minheight;
var user_font_color = props.attributes.user_font_color;
var user_background_color = props.attributes.user_background_color;
var ai_font_color = props.attributes.ai_font_color;
var ai_background_color = props.attributes.ai_background_color;
var input_border_color = props.attributes.input_border_color;
var input_text_color = props.attributes.input_text_color;
var persona_name_color = props.attributes.persona_name_color;
var persona_role_color = props.attributes.persona_role_color;
var input_placeholder_color = props.attributes.input_placeholder_color;
var submit_color = props.attributes.submit_color;
var voice_color = props.attributes.voice_color;
var voice_color_activated = props.attributes.voice_color_activated;
var submit_text_color = props.attributes.submit_text_color;
var width = props.attributes.width;
var ai_avatar = props.attributes.ai_avatar;
var ai_role = props.attributes.ai_role;
var general_background = props.attributes.general_background;
var compliance = props.attributes.compliance;
function updateMessage( event ) {
props.setAttributes( { temperature: event.target.value} );
}
function updateMessage3( event ) {
props.setAttributes( { top_p: event.target.value} );
}
function updateMessage4( event ) {
props.setAttributes( { presence_penalty: event.target.value} );
}
function updateMessage5( event ) {
props.setAttributes( { frequency_penalty: event.target.value} );
}
function updateMessage6( event ) {
props.setAttributes( { model: event.target.value} );
}
function updateMessage7( event ) {
props.setAttributes( { instant_response: event.target.value} );
}
function updateMessage8( event ) {
props.setAttributes( { ai_personas: event.target.value} );
}
function updateMessage9( event ) {
props.setAttributes( { user_message_preppend: event.target.value} );
}
function updateMessage12( event ) {
props.setAttributes( { chat_mode: event.target.value} );
}
function updateMessage13( event ) {
props.setAttributes( { user_token_cap_per_day: event.target.value} );
}
function updateMessage14( event ) {
props.setAttributes( { persistent: event.target.value} );
}
function updateMessage15( event ) {
props.setAttributes( { prompt_templates: event.target.value} );
}
function updateMessage16( event ) {
props.setAttributes( { prompt_editable: event.target.value} );
}
function updateMessage17( event ) {
props.setAttributes( { placeholder: event.target.value} );
}
function updateMessage18( event ) {
props.setAttributes( { submit: event.target.value} );
}
function updateMessage18x( event ) {
props.setAttributes( { submit_image: event.target.value} );
}
function updateMessage18y( event ) {
props.setAttributes( { submit_full: event.target.value} );
}
function updateMessage19( event ) {
props.setAttributes( { show_in_window: event.target.value} );
}
function updateMessage20( event ) {
props.setAttributes( { window_location: event.target.value} );
}
function updateMessage21( event ) {
props.setAttributes( { font_size: event.target.value} );
}
function updateMessage22( event ) {
props.setAttributes( { height: event.target.value} );
}
function updateMessage23( event ) {
props.setAttributes( { background: event.target.value} );
}
function updateMessage24( event ) {
props.setAttributes( { minheight: event.target.value} );
}
function updateMessage25( event ) {
props.setAttributes( { user_font_color: event.target.value} );
}
function updateMessage26( event ) {
props.setAttributes( { user_background_color: event.target.value} );
}
function updateMessage27( event ) {
props.setAttributes( { ai_font_color: event.target.value} );
}
function updateMessage28( event ) {
props.setAttributes( { ai_background_color: event.target.value} );
}
function updateMessage29( event ) {
props.setAttributes( { input_border_color: event.target.value} );
}
function updateMessage30( event ) {
props.setAttributes( { submit_color: event.target.value} );
}
function updateMessage41( event ) {
props.setAttributes( { voice_color: event.target.value} );
}
function updateMessage42( event ) {
props.setAttributes( { voice_color_activated: event.target.value} );
}
function updateMessage31( event ) {
props.setAttributes( { submit_text_color: event.target.value} );
}
function updateMessage32( event ) {
props.setAttributes( { width: event.target.value} );
}
function updateMessage33( event ) {
props.setAttributes( { ai_avatar: event.target.value} );
}
function updateMessage34( event ) {
props.setAttributes( { ai_role: event.target.value} );
}
function updateMessage35( event ) {
props.setAttributes( { general_background: event.target.value} );
}
function updateMessage36( event ) {
props.setAttributes( { compliance: event.target.value} );
}
function updateMessage37( event ) {
props.setAttributes( { input_text_color: event.target.value} );
}
function updateMessage38( event ) {
props.setAttributes( { input_placeholder_color: event.target.value} );
}
function updateMessage39( event ) {
props.setAttributes( { persona_name_color: event.target.value} );
}
function updateMessage40( event ) {
props.setAttributes( { persona_role_color: event.target.value} );
}
return mygcel12(
'div',
{ className: 'coderevolution_gutenberg_div' },
mygcel12(
'h4',
{ className: 'coderevolution_gutenberg_title' },
'Aimogen Chat Form ',
mygcel12(
'div',
{className:'bws_help_box bws_help_box_right dashicons dashicons-editor-help'}
,
mygcel12(
'div',
{className:'bws_hidden_help_text'},
'This block is used to generate an AI chat.'
)
)
),
mygcel12(
'label',
{ className: 'coderevolution_gutenberg_label' },
'AI Personal Selector: '
),
mygcel12(
'div',
{className:'bws_help_box bws_help_box_right dashicons dashicons-editor-help'}
,
mygcel12(
'div',
{className:'bws_hidden_help_text'},
'Add a comma separated list of chat persona IDs, which you want to list in the chat persona selector.'
)
),
mygcel12(
'input',
{ type:'text',placeholder:'Comma separated list of chat persona IDs', value: ai_personas, onChange: updateMessage8, className: 'coderevolution_gutenberg_input' }
),
mygcel12(
'br'
),
mygcel12(
'label',
{ className: 'coderevolution_gutenberg_label' },
'AI Temperature: '
),
mygcel12(
'div',
{className:'bws_help_box bws_help_box_right dashicons dashicons-editor-help'}
,
mygcel12(
'div',
{className:'bws_hidden_help_text'},
'What sampling temperature to use. Higher values means the model will take more risks. Try 0.9 for more creative applications, and 0 (argmax sampling) for ones with a well-defined answer. We generally recommend altering this or top_p but not both.'
)
),
mygcel12(
'input',
{ type:'number',min:0,step:0.1,placeholder:'AI Temperature', value: temperature, onChange: updateMessage, className: 'coderevolution_gutenberg_input' }
),
mygcel12(
'br'
),
mygcel12(
'label',
{ className: 'coderevolution_gutenberg_label' },
'AI Top_p: '
),
mygcel12(
'div',
{className:'bws_help_box bws_help_box_right dashicons dashicons-editor-help'}
,
mygcel12(
'div',
{className:'bws_hidden_help_text'},
'An alternative to sampling with temperature, called nucleus sampling, where the model considers the results of the tokens with top_p probability mass. So 0.1 means only the tokens comprising the top 10% probability mass are considered. We generally recommend altering this or temperature but not both.'
)
),
mygcel12(
'input',
{ type:'number',min:0,max:1,step:0.1,placeholder:'AI Top_p', value: top_p, onChange: updateMessage3, className: 'coderevolution_gutenberg_input' }
),
mygcel12(
'br'
),
mygcel12(
'label',
{ className: 'coderevolution_gutenberg_label' },
'AI Presence Penalty: '
),
mygcel12(
'div',
{className:'bws_help_box bws_help_box_right dashicons dashicons-editor-help'}
,
mygcel12(
'div',
{className:'bws_hidden_help_text'},
'Number between -2.0 and 2.0. Positive values penalize new tokens based on whether they appear in the text so far, increasing the model\'s likelihood to talk about new topics.'
)
),
mygcel12(
'input',
{ type:'number',min:-2,max:2,step:0.1,placeholder:'AI Presence Penalty', value: presence_penalty, onChange: updateMessage4, className: 'coderevolution_gutenberg_input' }
),
mygcel12(
'br'
),
mygcel12(
'label',
{ className: 'coderevolution_gutenberg_label' },
'AI Frequency Penalty: '
),
mygcel12(
'div',
{className:'bws_help_box bws_help_box_right dashicons dashicons-editor-help'}
,
mygcel12(
'div',
{className:'bws_hidden_help_text'},
'Number between -2.0 and 2.0. Positive values penalize new tokens based on their existing frequency in the text so far, decreasing the model\'s likelihood to repeat the same line verbatim.'
)
),
mygcel12(
'input',
{ type:'number',min:-2,max:2,step:0.1,placeholder:'AI Frequency Penalty', value: frequency_penalty, onChange: updateMessage5, className: 'coderevolution_gutenberg_input' }
),
mygcel12(
'br'
),
mygcel12(
'label',
{ className: 'coderevolution_gutenberg_label' },
'Model: '
),
mygcel12(
'div',
{className:'bws_help_box bws_help_box_right dashicons dashicons-editor-help'}
,
mygcel12(
'div',
{className:'bws_hidden_help_text'},
'Select the AI model you want to use to generate the content.'
)
),
mygcel12(
'select',
{ value: model, onChange: updateMessage6, className: 'coderevolution_gutenberg_select', dangerouslySetInnerHTML: {
__html: editing_optionsc
} }
),
mygcel12(
'br'
),
mygcel12(
'label',
{ className: 'coderevolution_gutenberg_label' },
'Instant Chat Response: '
),
mygcel12(
'div',
{className:'bws_help_box bws_help_box_right dashicons dashicons-editor-help'}
,
mygcel12(
'div',
{className:'bws_hidden_help_text'},
'Select the chat should have an instant response.'
)
),
mygcel12(
'select',
{ value: instant_response, onChange: updateMessage7, className: 'coderevolution_gutenberg_select' },
mygcel12(
'option',
{ value: 'false'},
'false'
),
mygcel12(
'option',
{ value: 'stream'},
'stream'
),
mygcel12(
'option',
{ value: 'true'},
'true'
)
),
mygcel12(
'br'
),
mygcel12(
'label',
{ className: 'coderevolution_gutenberg_label' },
'Preppend Each User Message With Text (Not Shown To Users): '
),
mygcel12(
'div',
{className:'bws_help_box bws_help_box_right dashicons dashicons-editor-help'}
,
mygcel12(
'div',
{className:'bws_hidden_help_text'},
'Preppend each of the user messages with this text, it will not be displayed to users. Using this settings field, you can set a name to users in the conversation, like "Customer: ".'
)
),
mygcel12(
'input',
{ type:'text',placeholder:'Preppend user message with this string (will not be shown to users)', value: user_message_preppend, onChange: updateMessage9, className: 'coderevolution_gutenberg_input' }
),
mygcel12(
'br'
),
mygcel12(
'label',
{ className: 'coderevolution_gutenberg_label' },
'Chat Mode: '
),
mygcel12(
'div',
{className:'bws_help_box bws_help_box_right dashicons dashicons-editor-help'}
,
mygcel12(
'div',
{className:'bws_hidden_help_text'},
'Select the mode of the chat (images or text).'
)
),
mygcel12(
'select',
{ value: chat_mode, onChange: updateMessage12, className: 'coderevolution_gutenberg_select' },
mygcel12(
'option',
{ value: 'text'},
'text'
),
mygcel12(
'option',
{ value: 'images'},
'images'
)
),
mygcel12(
'br'
),
mygcel12(
'label',
{ className: 'coderevolution_gutenberg_label' },
'Daily Token Count for Logged In Users: '
),
mygcel12(
'div',
{className:'bws_help_box bws_help_box_right dashicons dashicons-editor-help'}
,
mygcel12(
'div',
{className:'bws_hidden_help_text'},
'Set the daily token count for logged in users. Users who are not logged in will not be allowed to submit the form. To disable this feature, leave this field blank.'
)
),
mygcel12(
'input',
{ type:'number',min:0,placeholder:'Daily token count for users', value: user_token_cap_per_day, onChange: updateMessage13, className: 'coderevolution_gutenberg_input' }
),
mygcel12(
'br'
),
mygcel12(
'label',
{ className: 'coderevolution_gutenberg_label' },
'Enable Persistent Chat: '
),
mygcel12(
'div',
{className:'bws_help_box bws_help_box_right dashicons dashicons-editor-help'}
,
mygcel12(
'div',
{className:'bws_hidden_help_text'},
'Select a unique ID for persistent conversations of users. You can create multiple persistent conversations using different IDs, added to different shortcodes.'
)
),
mygcel12(
'input',
{ type:'text',placeholder:'Select the persistent conversation ID, which will be saved for each user', value: persistent, onChange: updateMessage14, className: 'coderevolution_gutenberg_input' }
),
mygcel12(
'br'
),
mygcel12(
'label',
{ className: 'coderevolution_gutenberg_label' },
'Prompt Templates (Semicolon Separated): '
),
mygcel12(
'div',
{className:'bws_help_box bws_help_box_right dashicons dashicons-editor-help'}
,
mygcel12(
'div',
{className:'bws_hidden_help_text'},
'Add a semicolon (;) separated list of prompt templates from which the users will be able to select and submit one.'
)
),
mygcel12(
'input',
{ type:'text',placeholder:'Template1;Template2;Template3', value: prompt_templates, onChange: updateMessage15, className: 'coderevolution_gutenberg_input' }
),
mygcel12(
'br'
),
mygcel12(
'label',
{ className: 'coderevolution_gutenberg_label' },
'Prompt Editable: '
),
mygcel12(
'div',
{className:'bws_help_box bws_help_box_right dashicons dashicons-editor-help'}
,
mygcel12(
'div',
{className:'bws_hidden_help_text'},
'Select wheather the prompt will be editable by users. This is useful when combined with prompt templates from above, when you don\'t want the users to edit the entered template.'
)
),
mygcel12(
'select',
{ value: prompt_editable, onChange: updateMessage16, className: 'coderevolution_gutenberg_select' },
mygcel12(
'option',
{ value: 'yes'},
'yes'
),
mygcel12(
'option',
{ value: 'no'},
'no'
)
),
mygcel12(
'br'
),
mygcel12(
'label',
{ className: 'coderevolution_gutenberg_label' },
'Form Input Placeholder: '
),
mygcel12(
'div',
{className:'bws_help_box bws_help_box_right dashicons dashicons-editor-help'}
,
mygcel12(
'div',
{className:'bws_hidden_help_text'},
'Set the placeholder text of the chat input. The default is: Enter your chat message here.'
)
),
mygcel12(
'input',
{ type:'text',placeholder:'Preppend chat with this string (will not be shown to users)', value: placeholder, onChange: updateMessage17, className: 'coderevolution_gutenberg_input' }
),
mygcel12(
'br'
),
mygcel12(
'label',
{ className: 'coderevolution_gutenberg_label' },
'Form Input Submit Button Text: '
),
mygcel12(
'div',
{className:'bws_help_box bws_help_box_right dashicons dashicons-editor-help'}
,
mygcel12(
'div',
{className:'bws_hidden_help_text'},
'Set the text of the submit button. The default is: Submit'
)
),
mygcel12(
'input',
{ type:'text', placeholder:'Submit', value: submit, onChange: updateMessage18, className: 'coderevolution_gutenberg_input' }
),
mygcel12(
'br'
),
mygcel12(
'label',
{ className: 'coderevolution_gutenberg_label' },
'Form Input Submit Button Image URL: '
),
mygcel12(
'div',
{className:'bws_help_box bws_help_box_right dashicons dashicons-editor-help'}
,
mygcel12(
'div',
{className:'bws_hidden_help_text'},
'Set the submit button image URL. If you want to use the default submit button, leave this field empty.'
)
),
mygcel12(
'input',
{ type:'text', placeholder:'Submit button image URL', value: submit_image, onChange: updateMessage18x, className: 'coderevolution_gutenberg_input' }
),
mygcel12(
'br'
),
mygcel12(
'label',
{ className: 'coderevolution_gutenberg_label' },
'Form Input Full Width Buttons: '
),
mygcel12(
'div',
{className:'bws_help_box bws_help_box_right dashicons dashicons-editor-help'}
,
mygcel12(
'div',
{className:'bws_hidden_help_text'},
'Select if you want to display full width input buttons.'
)
),
mygcel12(
'select',
{ value: submit_full, onChange: updateMessage18y, className: 'coderevolution_gutenberg_select' },
mygcel12(
'option',
{ value: 'off'},
'off'
),
mygcel12(
'option',
{ value: 'on'},
'on'
)
),
mygcel12(
'br'
),
mygcel12(
'label',
{ className: 'coderevolution_gutenberg_label' },
'Chat Compliance Text: '
),
mygcel12(
'div',
{className:'bws_help_box bws_help_box_right dashicons dashicons-editor-help'}
,
mygcel12(
'div',
{className:'bws_hidden_help_text'},
'Set the compliance text for the chatbot'
)
),
mygcel12(
'input',
{ type:'text', placeholder:'Compliance text', value: compliance, onChange: updateMessage36, className: 'coderevolution_gutenberg_input' }
),
mygcel12(
'br'
),
mygcel12(
'label',
{ className: 'coderevolution_gutenberg_label' },
'Show Chat In A Popup Window: '
),
mygcel12(
'div',
{className:'bws_help_box bws_help_box_right dashicons dashicons-editor-help'}
,
mygcel12(
'div',
{className:'bws_hidden_help_text'},
'Do you want to show the chat in a popup window instead in the page?'
)
),
mygcel12(
'select',
{ value: show_in_window, onChange: updateMessage19, className: 'coderevolution_gutenberg_select' },
mygcel12(
'option',
{ value: 'off'},
'off'
),
mygcel12(
'option',
{ value: 'on'},
'on'
)
),
mygcel12(
'br'
),
mygcel12(
'label',
{ className: 'coderevolution_gutenberg_label' },
'Chatbot Avatar: '
),
mygcel12(
'div',
{className:'bws_help_box bws_help_box_right dashicons dashicons-editor-help'}
,
mygcel12(
'div',
{className:'bws_hidden_help_text'},
'Select the numeric ID of a Media Library item which will be set as the avatar of the chatbot AI.'
)
),
mygcel12(
'input',
{ type:'text', placeholder:'', value: ai_avatar, onChange: updateMessage33, className: 'coderevolution_gutenberg_input' }
),
mygcel12(
'br'
),
mygcel12(
'label',
{ className: 'coderevolution_gutenberg_label' },
'Chatbot Role: '
),
mygcel12(
'div',
{className:'bws_help_box bws_help_box_right dashicons dashicons-editor-help'}
,
mygcel12(
'div',
{className:'bws_hidden_help_text'},
'Select the role of the AI chatbot. This is purely cosmetic, will only be displayed on the front end of the chatbot interface.'
)
),
mygcel12(
'input',
{ type:'text', placeholder:'', value: ai_role, onChange: updateMessage34, className: 'coderevolution_gutenberg_input' }
),
mygcel12(
'br'
),
mygcel12(
'label',
{ className: 'coderevolution_gutenberg_label' },
'Window Location: '
),
mygcel12(
'div',
{className:'bws_help_box bws_help_box_right dashicons dashicons-editor-help'}
,
mygcel12(
'div',
{className:'bws_hidden_help_text'},
'Select where you want to display the popup window. This works only if you set the "Show Chat In A Popup Window" settings field to "on".'
)
),
mygcel12(
'select',
{ value: window_location, onChange: updateMessage20, className: 'coderevolution_gutenberg_select' },
mygcel12(
'option',
{ value: 'bottom-right'},
'bottom-right'
),
mygcel12(
'option',
{ value: 'bottom-left'},
'bottom-left'
),mygcel12(
'option',
{ value: 'top-right'},
'top-right'
),
mygcel12(
'option',
{ value: 'top-left'},
'top-left'
)
),
mygcel12(
'br'
),
mygcel12(
'label',
{ className: 'coderevolution_gutenberg_label' },
'Font Size: '
),
mygcel12(
'div',
{className:'bws_help_box bws_help_box_right dashicons dashicons-editor-help'}
,
mygcel12(
'div',
{className:'bws_hidden_help_text'},
'Select the font size of the chatbot form. Default is 1em'
)
),
mygcel12(
'input',
{ type:'text', placeholder:'1em', value: font_size, onChange: updateMessage21, className: 'coderevolution_gutenberg_input' }
),
mygcel12(
'br'
),
mygcel12(
'label',
{ className: 'coderevolution_gutenberg_label' },
'Chat Form Width: '
),
mygcel12(
'div',
{className:'bws_help_box bws_help_box_right dashicons dashicons-editor-help'}
,
mygcel12(
'div',
{className:'bws_hidden_help_text'},
'Select the width of the chatbot form. For full width, you can set 100% (default value). You can also set values in pixels, like: 400px'
)
),
mygcel12(
'input',
{ type:'text', placeholder:'100%', value: width, onChange: updateMessage32, className: 'coderevolution_gutenberg_input' }
),
mygcel12(
'br'
),
mygcel12(
'label',
{ className: 'coderevolution_gutenberg_label' },
'Chat Form Height: '
),
mygcel12(
'div',
{className:'bws_help_box bws_help_box_right dashicons dashicons-editor-help'}
,
mygcel12(
'div',
{className:'bws_hidden_help_text'},
'Select the height of the chatbot form. For full height, you can set auto (default value). You can also set values in pixels, like: 400px'
)
),
mygcel12(
'input',
{ type:'text', placeholder:'auto', value: height, onChange: updateMessage22, className: 'coderevolution_gutenberg_input' }
),
mygcel12(
'br'
),
mygcel12(
'label',
{ className: 'coderevolution_gutenberg_label' },
'Chat Form Min-Height: '
),
mygcel12(
'div',
{className:'bws_help_box bws_help_box_right dashicons dashicons-editor-help'}
,
mygcel12(
'div',
{className:'bws_hidden_help_text'},
'Select the min-height of the chatbot form (when the form is resized, this is the minimum height it will be allowed to get. Default is 250px. You can set values in pixels, like: 400px'
)
),
mygcel12(
'input',
{ type:'text', value: minheight, onChange: updateMessage24, className: 'coderevolution_gutenberg_input' }
),
mygcel12(
'br'
),
mygcel12(
'label',
{ className: 'coderevolution_gutenberg_label' },
'Form Background Color: '
),
mygcel12(
'div',
{className:'bws_help_box bws_help_box_right dashicons dashicons-editor-help'}
,
mygcel12(
'div',
{className:'bws_hidden_help_text'},
'Select the background color of the chatbot form. Default is #ffffff'
)
),
mygcel12(
'input',
{ type:'color', value: general_background, onChange: updateMessage35, className: 'coderevolution_gutenberg_input' }
),
mygcel12(
'br'
),
mygcel12(
'label',
{ className: 'coderevolution_gutenberg_label' },
'Input Background Color: '
),
mygcel12(
'div',
{className:'bws_help_box bws_help_box_right dashicons dashicons-editor-help'}
,
mygcel12(
'div',
{className:'bws_hidden_help_text'},
'Select the background color of the chatbot input. Default is #f7f7f9'
)
),
mygcel12(
'input',
{ type:'color', value: background, onChange: updateMessage23, className: 'coderevolution_gutenberg_input' }
),
mygcel12(
'br'
),
mygcel12(
'label',
{ className: 'coderevolution_gutenberg_label' },
'Chat Form Min-Height: '
),
mygcel12(
'div',
{className:'bws_help_box bws_help_box_right dashicons dashicons-editor-help'}
,
mygcel12(
'div',
{className:'bws_hidden_help_text'},
'Select the min-height of the chatbot form (when the form is resized, this is the minimum height it will be allowed to get. Default is 250px. You can set values in pixels, like: 400px'
)
),
mygcel12(
'input',
{ type:'color', value: user_font_color, onChange: updateMessage25, className: 'coderevolution_gutenberg_input' }
),
mygcel12(
'br'
),
mygcel12(
'label',
{ className: 'coderevolution_gutenberg_label' },
'User Baloon Background Color: '
),
mygcel12(
'div',
{className:'bws_help_box bws_help_box_right dashicons dashicons-editor-help'}
,
mygcel12(
'div',
{className:'bws_hidden_help_text'},
'Select the font color of the user baloon chatbot form. Default is #0084ff'
)
),
mygcel12(
'input',
{ type:'color', value: user_background_color, onChange: updateMessage26, className: 'coderevolution_gutenberg_input' }
),
mygcel12(
'br'
),
mygcel12(
'label',
{ className: 'coderevolution_gutenberg_label' },
'AI Font Color: '
),
mygcel12(
'div',
{className:'bws_help_box bws_help_box_right dashicons dashicons-editor-help'}
,
mygcel12(
'div',
{className:'bws_hidden_help_text'},
'Select the font color of the AI chatbot form. Default is black'
)
),
mygcel12(
'input',
{ type:'color', value: ai_font_color, onChange: updateMessage27, className: 'coderevolution_gutenberg_input' }
),
mygcel12(
'br'
),
mygcel12(
'label',
{ className: 'coderevolution_gutenberg_label' },
'AI Baloon Background Color: '
),
mygcel12(
'div',
{className:'bws_help_box bws_help_box_right dashicons dashicons-editor-help'}
,
mygcel12(
'div',
{className:'bws_hidden_help_text'},
'Select the font color of the AI baloon chatbot form. Default is #f0f0f0'
)
),
mygcel12(
'input',
{ type:'color', value: ai_background_color, onChange: updateMessage28, className: 'coderevolution_gutenberg_input' }
),
mygcel12(
'br'
),
mygcel12(
'label',
{ className: 'coderevolution_gutenberg_label' },
'Input Border Color: '
),
mygcel12(
'div',
{className:'bws_help_box bws_help_box_right dashicons dashicons-editor-help'}
,
mygcel12(
'div',
{className:'bws_hidden_help_text'},
'Select the border color for the input field. Default is #e1e3e6'
)
),
mygcel12(
'input',
{ type:'color', value: input_border_color, onChange: updateMessage29, className: 'coderevolution_gutenberg_input' }
),
mygcel12(
'br'
),
mygcel12(
'label',
{ className: 'coderevolution_gutenberg_label' },
'Input Text Color: '
),
mygcel12(
'div',
{className:'bws_help_box bws_help_box_right dashicons dashicons-editor-help'}
,
mygcel12(
'div',
{className:'bws_hidden_help_text'},
'Select the text color for the input field. Default is #000000'
)
),
mygcel12(
'input',
{ type:'color', value: input_text_color, onChange: updateMessage37, className: 'coderevolution_gutenberg_input' }
),
mygcel12(
'br'
),
mygcel12(
'label',
{ className: 'coderevolution_gutenberg_label' },
'Input Placeholder Color: '
),
mygcel12(
'div',
{className:'bws_help_box bws_help_box_right dashicons dashicons-editor-help'}
,
mygcel12(
'div',
{className:'bws_hidden_help_text'},
'Select the placeholder color for the input field. Default is #333333'
)
),
mygcel12(
'input',
{ type:'color', value: input_placeholder_color, onChange: updateMessage38, className: 'coderevolution_gutenberg_input' }
),
mygcel12(
'br'
),
mygcel12(
'label',
{ className: 'coderevolution_gutenberg_label' },
'Persona Name Color: '
),
mygcel12(
'div',
{className:'bws_help_box bws_help_box_right dashicons dashicons-editor-help'}
,
mygcel12(
'div',
{className:'bws_hidden_help_text'},
'Select the persona name color for the input field. Default is #000000'
)
),
mygcel12(
'input',
{ type:'color', value: persona_name_color, onChange: updateMessage39, className: 'coderevolution_gutenberg_input' }
),
mygcel12(
'br'
),
mygcel12(
'label',
{ className: 'coderevolution_gutenberg_label' },
'Persona Role Color: '
),
mygcel12(
'div',
{className:'bws_help_box bws_help_box_right dashicons dashicons-editor-help'}
,
mygcel12(
'div',
{className:'bws_hidden_help_text'},
'Select the persona role color for the input field. Default is #000000'
)
),
mygcel12(
'input',
{ type:'color', value: persona_role_color, onChange: updateMessage40, className: 'coderevolution_gutenberg_input' }
),
mygcel12(
'br'
),
mygcel12(
'label',
{ className: 'coderevolution_gutenberg_label' },
'Submit Button Color: '
),
mygcel12(
'div',
{className:'bws_help_box bws_help_box_right dashicons dashicons-editor-help'}
,
mygcel12(
'div',
{className:'bws_hidden_help_text'},
'Select the color of the submit button. Default is #55a7e2'
)
),
mygcel12(
'input',
{ type:'color', value: submit_color, onChange: updateMessage30, className: 'coderevolution_gutenberg_input' }
),
mygcel12(
'br'
),
mygcel12(
'label',
{ className: 'coderevolution_gutenberg_label' },
'Submit Button Text Color: '
),
mygcel12(
'div',
{className:'bws_help_box bws_help_box_right dashicons dashicons-editor-help'}
,
mygcel12(
'div',
{className:'bws_hidden_help_text'},
'Select the text color of the submit button. Default is #55a7e2'
)
),
mygcel12(
'input',
{ type:'color', value: submit_text_color, onChange: updateMessage31, className: 'coderevolution_gutenberg_input' }
),
mygcel12(
'br'
),
mygcel12(
'label',
{ className: 'coderevolution_gutenberg_label' },
'Voice Button Color: '
),
mygcel12(
'div',
{className:'bws_help_box bws_help_box_right dashicons dashicons-editor-help'}
,
mygcel12(
'div',
{className:'bws_hidden_help_text'},
'Select the color of the voice button. Default is #55a7e2'
)
),
mygcel12(
'input',
{ type:'color', value: voice_color, onChange: updateMessage41, className: 'coderevolution_gutenberg_input' }
),
mygcel12(
'br'
),
mygcel12(
'label',
{ className: 'coderevolution_gutenberg_label' },
'Voice Button Color Activated: '
),
mygcel12(
'div',
{className:'bws_help_box bws_help_box_right dashicons dashicons-editor-help'}
,
mygcel12(
'div',
{className:'bws_hidden_help_text'},
'Select the color of the voice button when activated. Default is #55a7e2'
)
),
mygcel12(
'input',
{ type:'color', value: voice_color_activated, onChange: updateMessage42, className: 'coderevolution_gutenberg_input' }
)
);
}),
save: (function( props ) {
return null;
}),
} );