2014-08-18 20:54:12 +08:00
|
|
|
<template name="displayUserIcons">
|
2014-08-08 04:29:13 +08:00
|
|
|
<td>{{#if isUserSharingVideo user}}
|
|
|
|
<span class="userListSettingIcon glyphicon glyphicon-facetime-video"></span>
|
|
|
|
{{/if}}</td>
|
2014-07-29 01:43:26 +08:00
|
|
|
|
|
|
|
<!-- Should use much more noticeable icons than just bootstrap's volume-up & volume-down to differentiate talking but it is good for now -->
|
2014-08-08 04:29:13 +08:00
|
|
|
<td>{{#if isUserSharingAudio user}}
|
2014-08-13 00:25:15 +08:00
|
|
|
{{#if isUserMuted user}}
|
|
|
|
<span class="userListSettingIcon glyphicon glyphicon-volume-off"></span>
|
|
|
|
{{else}}
|
|
|
|
{{#if isUserTalking user}}
|
|
|
|
<span class="userListSettingIcon glyphicon glyphicon-volume-up"></span>
|
|
|
|
{{else}}
|
|
|
|
<span class="userListSettingIcon glyphicon glyphicon-volume-down"></span>
|
|
|
|
{{/if}}
|
|
|
|
{{/if}}
|
2014-08-08 04:29:13 +08:00
|
|
|
{{/if}}</td>
|
2014-08-09 00:04:04 +08:00
|
|
|
|
2014-08-16 04:25:28 +08:00
|
|
|
<td>{{#if user.presenter}}<span class="userListSettingIcon glyphicon glyphicon-picture"></span>{{/if}}</td>
|
2014-08-18 20:54:12 +08:00
|
|
|
|
|
|
|
<td>{{#if user.raise_hand}}<span class="userListSettingIcon glyphicon glyphicon-hand-up"></span>{{/if}}</td>
|
2014-08-09 00:04:04 +08:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<template name="usernameEntry"> <!-- A template now because more information be added/styled -->
|
2014-08-18 20:54:12 +08:00
|
|
|
<td class="userNameContainer">
|
|
|
|
{{#if isCurrentUser userId}}
|
|
|
|
<p class="userNameEntry" rel="tooltip" data-placement="bottom" title="{{user.name}} (you)">
|
|
|
|
<strong>{{user.name}} (you)</strong>
|
|
|
|
</p>
|
|
|
|
{{else}}
|
|
|
|
<p class="userNameEntry" rel="tooltip" data-placement="bottom" title="{{user.name}}">
|
|
|
|
{{user.name}}
|
|
|
|
</p>
|
|
|
|
{{/if}}
|
|
|
|
</td>
|
2014-08-09 00:04:04 +08:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<template name="userItem">
|
2014-08-16 04:25:28 +08:00
|
|
|
{{> usernameEntry}}
|
2014-08-18 20:54:12 +08:00
|
|
|
{{> displayUserIcons}}
|
2014-08-09 00:04:04 +08:00
|
|
|
</template>
|