34 lines
752 B
JavaScript
34 lines
752 B
JavaScript
|
#include utility.js
|
||
|
|
||
|
Umi.UI.ChatInputMain = function() {
|
||
|
const html = $e({
|
||
|
attrs: {
|
||
|
id: 'umi-msg-container',
|
||
|
className: 'input__main',
|
||
|
},
|
||
|
child: [
|
||
|
{
|
||
|
tag: 'textarea',
|
||
|
attrs: {
|
||
|
id: 'umi-msg-text',
|
||
|
className: 'input__text',
|
||
|
autofocus: true,
|
||
|
},
|
||
|
},
|
||
|
{
|
||
|
tag: 'button',
|
||
|
attrs: {
|
||
|
id: 'umi-msg-send',
|
||
|
className: 'input__button input__button--send',
|
||
|
},
|
||
|
},
|
||
|
],
|
||
|
});
|
||
|
|
||
|
return {
|
||
|
getElement: function() {
|
||
|
return html;
|
||
|
},
|
||
|
};
|
||
|
};
|