extJ上的聊天记录

zzlelutf  于 2022-09-26  发布在  其他
关注(0)|答案(1)|浏览(118)

我需要在我的应用程序中显示聊天历史记录。它应该是这样的:我可以使用组件树面板来实现吗,或者有更简单的方法来显示我需要的内容吗?我不知道如何在树面板的情况下显示数据

sqyvllje

sqyvllje1#

我用数据视图做了这件事。将消息存储在商店中。

layout: 'vbox',
    items: [
        {
            xtype: 'dataview',
            bodyCls: 'chat chatbody',
            flex: 1,
            scrollable: true,
            bind: {
                store: '{chat}'
            },
            itemTpl: new Ext.XTemplate(
                '<div',
                    '<tpl if="this.isDateSet(username)"> class="conversation-start">',
                        '{[values.timestamp.toLocaleDateString()]}',
                    '<tpl else>',
                        '<tpl if="this.isMyMessage(username)"> class="chat bubble me">',
                        '<tpl else> class="chat bubble you"></tpl>',
                            '{message} <br> <div class="chat time">{[values.timestamp.toLocaleTimeString(navigator.language, {hour: "2-digit", minute:"2-digit"})]}</div>',
                    '</tpl>',
                '</div>',
                {
                    disableFormats: true,
                    isMyMessage(username){
                        return username == 'Me';
                    },
                    isDateSet(username){
                        return username == 'dateset';
                    }
                }
            ),
        }, 
        {
            xtype: 'container',
            layout: 'hbox',
    //      default focus is not working as expected
    //      defaultFocus: 'textfield[name=message]',
            items: [{
                xtype: 'textfield',
                flex: 1,
                margin: '0 10 0 0',
                placeholder: 'Send a Message',
                autoComplete: false,
                autoCorrect: false,
                listeners: {
                    added: 'focusTextField',
                    action: 'sendMessage'
                }
            },
            {
                xtype: 'button',
                ui: 'action round',
                height: 32,
                iconCls: 'x-fa fa-arrow-right',
                handler: 'sendMessage'
            }]
        }
    ]
.chat {
    &.time {
        font-size: 12px;
        color: #494949;
    }
    &.bubble {
        font-size: 16px;
        position: relative;
        display: inline-block;
        clear: both;
        margin: 8px;
        //margin-bottom: 8px;
        padding: 13px 14px;
        vertical-align: top;
        border-radius: 5px;
        box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
        word-wrap: break-word;
        width: 80%;
        height: auto;
        display: inline-block;
        &.you {
            float: left;
            color: #000000;
            background-color: $base-light-color;
            align-self: flex-start;
        }
        &.me {
            float: right;
            color: #000000;
            background-color: $accent-light-color;
            align-self: flex-end;
        }
    }
}

.conversation-start {
    position: relative;
    width: 100%;
    padding: 10px;
    margin-bottom: 3px;
    text-align: center;
    font-size: 14px;
    display: inline-block;
    color: #494949;
}

.chatbody {
    background-color: $faded-color;
}

.commmessageswindow {
        border: 1px solid $highlight-color;
        .x-panelheader {
                border: 0px;
        }
}

相关问题