view default/components/common.html @ 85:05b500bd6235

chat: chat implementation, first draft: this chat use the new dynamic pages feature. Updates are pushed directly by server. Identities are used to retrieve avatar, and first letter of nickname is used to generate an avatar is none is found (temporary, a more elaborate avatar generation should follow in the future). Scroll is done automatically when new messages arrive, except if scroll is not at the end, as it probably means that user is checking history. User can resize text area and use [shift] + [enter] to enter multi-line messages. History will then scroll to bottom after message has been sent.
author Goffi <goffi@goffi.org>
date Wed, 03 Jan 2018 01:12:16 +0100
parents ead4db120515
children 92ca411ee635
line wrap: on
line source

{# menu labels, map from menu names to labels #}
{% set ml = {
    'login': _('Session') if profile else _('Log in'),
    'blog_view': _('Blog'),
    'merge-requests_list': _('Merge requests'),
    'merge-request_new': _('Create new merge request'),
    'tickets_list': _('Tickets'),
    'ticket_new': _('Create new ticket'),
    'chat': _('Chat'),
} %}

{% macro menu(menus, class='') %}
    <nav class="menu {{class}}">
        <ul>
        {% for name,url in menus %}
            <li><a class="menu_item button {{name}}" {{ {'href': url}|xmlattr }}>{{ml[name]}}</a></li>
        {% endfor %}
        </ul>
    </nav>
{% endmacro %}