summary refs log tree commit diff
path: root/webclient/room/room.html
blob: e5e454864b15957620583a7efe342ba7d3da7283 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
<div ng-controller="RoomController" data-ng-init="onInit()" class="room" style="height: 100%;">

    <div id="roomHeader">
        <a href ng-click="goToPage('/')"><img src="img/logo-small.png" width="100" height="43" alt="[matrix]"/></a>
        <div id="roomName">
            {{ room_alias || room_id }}
        </div>
    </div>

    <div id="roomPage">
    <div id="roomWrapper">
        
    <div id="roomRecentsTableWrapper">
        <div ng-include="'recents/recents.html'"></div>
    </div>

    <div id="usersTableWrapper">
        <table id="usersTable">
            <tr ng-repeat="member in members | orderMembersList">
                <td class="userAvatar mouse-pointer" ng-click="$parent.goToUserPage(member.id)" ng-class="member.membership == 'invite' ? 'invited' : ''">
                    <img class="userAvatarImage" 
                         ng-src="{{member.avatar_url || 'img/default-profile.png'}}" 
                         alt="{{ member.displayname || member.id.substr(0, member.id.indexOf(':')) }}"
                         title="{{ member.id }}"
                         width="80" height="80"/>
                    <img class="userAvatarGradient" src="img/gradient.png" title="{{ member.id }}" width="80" height="24"/>
                    <div class="userName">{{ member.displayname || member.id.substr(0, member.id.indexOf(':')) }}<br/>{{ member.displayname ? "" : member.id.substr(member.id.indexOf(':')) }}</div>
                </td>
                <td class="userPresence" ng-class="(member.presenceState === 'online' ? 'online' : (member.presenceState === 'unavailable' ? 'unavailable' : '')) + ' ' + (member.membership == 'invite' ? 'invited' : '')">
                    <span ng-show="member.mtime_age">{{ member.mtime_age + (now - member.last_updated) | duration }}<br/>ago</span>
                </td>
        </table>
    </div>
    
    <div id="messageTableWrapper" keep-scroll>
        <!-- FIXME: need to have better timestamp semantics than the (msg.content.hsob_ts || msg.ts) hack below -->
        <table id="messageTable" infinite-scroll="paginateMore()">
            <tr ng-repeat="msg in events.rooms[room_id].messages"
                ng-class="(events.rooms[room_id].messages[$index + 1].user_id !== msg.user_id ? 'differentUser' : '') + (msg.user_id === state.user_id ? ' mine' : '')" scroll-item>
                <td class="leftBlock">
                    <div class="sender" ng-hide="events.rooms[room_id].messages[$index - 1].user_id === msg.user_id">{{ members[msg.user_id].displayname || msg.user_id }}</div>
                    <div class="timestamp">{{ (msg.content.hsob_ts || msg.ts) | date:'MMM d HH:mm' }}</div>
                </td>
                <td class="avatar">
                    <img class="avatarImage" ng-src="{{ members[msg.user_id].avatar_url || 'img/default-profile.png' }}" width="32" height="32"
                         ng-hide="events.rooms[room_id].messages[$index - 1].user_id === msg.user_id || msg.user_id === state.user_id"/>
                </td>
                <td ng-class="!msg.content.membership ? (msg.content.msgtype === 'm.emote' ? 'emote text' : 'text') : 'membership text'">
                    <div class="bubble">
                        <span ng-show='msg.type === "m.room.member"'>
                            {{ members[msg.user_id].displayname || msg.user_id }}
                            {{ {"join": "joined", "leave": "left", "invite": "invited"}[msg.content.membership] }}
                            {{ msg.content.membership === "invite" ? (msg.state_key || '') : '' }}
                        </span>
                        <span ng-show='msg.content.msgtype === "m.emote"' ng-bind-html="'* ' + (members[msg.user_id].displayname || msg.user_id) + ' ' + msg.content.body | linky:'_blank'"/>
                        <span ng-show='msg.content.msgtype === "m.text"' ng-bind-html="((msg.content.msgtype === 'm.text') ? msg.content.body : '') | linky:'_blank'"/>
                        <div ng-show='msg.content.msgtype === "m.image"'>
                            <div ng-hide='msg.content.thumbnail_url' ng-style="msg.content.body.h && { 'height' : (msg.content.body.h < 320) ? msg.content.body.h : 320}">
                                <img class="image" ng-src="{{ msg.content.url }}"/>
                            </div>
                            <div ng-show='msg.content.thumbnail_url' ng-style="{ 'height' : msg.content.thumbnail_info.h }">
                                <img class="image mouse-pointer" ng-src="{{ msg.content.thumbnail_url }}"
                                     ng-click="$parent.fullScreenImageURL = msg.content.url"/>
                            </div>
                        </div>
                    </div>
                </td>
                <td class="rightBlock">
                    <img class="avatarImage" ng-src="{{ members[msg.user_id].avatar_url || 'img/default-profile.png' }}" width="32" height="32"
                         ng-hide="events.rooms[room_id].messages[$index - 1].user_id === msg.user_id || msg.user_id !== state.user_id"/>
                </td>
            </tr>
        </table>
    </div>
    
    </div>
    </div>

    <div id="controlPanel">
        <div id="controls">
            <table id="inputBarTable">
                <tr>
                    <td id="userIdCell" width="1px">
                        {{ state.user_id }} 
                    </td>
                    <td width="*">
                        <input id="mainInput" ng-model="textInput" ng-enter="send()" ng-focus="true" autocomplete="off" tab-complete/>
                    </td>
                    <td id="buttonsCell">
                        <button ng-click="send()">Send</button>
                        <button m-file-input="imageFileToSend" class="extraControls">Image</button>
                    </td>
                </tr>
            </table>

            <div class="extraControls">
                <span>
                   Invite a user: 
                        <input ng-model="userIDToInvite" size="32" type="text" placeholder="User ID (ex:@user:homeserver)"/>     
                        <button ng-click="inviteUser(userIDToInvite)">Invite</button>
                </span>
                <button ng-click="leaveRoom()">Leave</button>
                <button ng-click="startVoiceCall()" ng-show="currentCall == undefined && memberCount() == 2">Voice Call</button>
                <div ng-show="currentCall.state == 'ringing'">
                Incoming call from {{ currentCall.user_id }}
                <button ng-click="answerCall()">Answer</button>
                <button ng-click="hangupCall()">Reject</button>
                </div>
                <button ng-click="hangupCall()" ng-show="currentCall && currentCall.state != 'ringing'">Hang up</button>
                <span ng-show="currentCall.state == 'invite_sent'">Calling...</span>
                <span ng-show="currentCall.state == 'connecting'">Call Connecting...</span>
                <span ng-show="currentCall.state == 'connected'">Call Connected</span>
                <span ng-show="currentCall.state == 'ended'">Call Ended</span>
                <span style="display: none; ">{{ currentCall.state }}</span>
            </div>
        
            {{ feedback }}
            <div ng-show="state.stream_failure">
                {{ state.stream_failure.data.error || "Connection failure" }}
            </div>
        </div>
    </div>

    <div id="room-fullscreen-image" ng-show="fullScreenImageURL" ng-click="fullScreenImageURL = undefined;">
        <img ng-src="{{ fullScreenImageURL }}"/>
    </div>

 </div>