1 |
efrain |
1 |
{{!
|
|
|
2 |
This file is part of Moodle - http://moodle.org/
|
|
|
3 |
|
|
|
4 |
Moodle is free software: you can redistribute it and/or modify
|
|
|
5 |
it under the terms of the GNU General Public License as published by
|
|
|
6 |
the Free Software Foundation, either version 3 of the License, or
|
|
|
7 |
(at your option) any later version.
|
|
|
8 |
|
|
|
9 |
Moodle is distributed in the hope that it will be useful,
|
|
|
10 |
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
11 |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
12 |
GNU General Public License for more details.
|
|
|
13 |
|
|
|
14 |
You should have received a copy of the GNU General Public License
|
|
|
15 |
along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
|
|
16 |
}}
|
|
|
17 |
{{!
|
|
|
18 |
@template core_message/message_drawer_conversations_list
|
|
|
19 |
|
|
|
20 |
This template will render a list of conversations for the message drawer.
|
|
|
21 |
|
|
|
22 |
Classes required for JS:
|
|
|
23 |
* none
|
|
|
24 |
|
|
|
25 |
Data attributes required for JS:
|
|
|
26 |
* All data attributes are required
|
|
|
27 |
|
|
|
28 |
Context variables required for this template:
|
|
|
29 |
* userid The logged in user id
|
|
|
30 |
* urls The URLs for the popover
|
|
|
31 |
|
|
|
32 |
Example context (json):
|
|
|
33 |
{}
|
|
|
34 |
|
|
|
35 |
}}
|
|
|
36 |
|
|
|
37 |
{{#conversations}}
|
|
|
38 |
<a
|
|
|
39 |
href="#"
|
|
|
40 |
class="py-0 px-2 d-flex list-group-item list-group-item-action align-items-center"
|
|
|
41 |
data-conversation-id="{{id}}"
|
|
|
42 |
{{#userid}}
|
|
|
43 |
data-user-id="{{.}}"
|
|
|
44 |
{{/userid}}
|
|
|
45 |
role="button"
|
|
|
46 |
>
|
|
|
47 |
{{#imageurl}}
|
|
|
48 |
<img
|
|
|
49 |
class="rounded-circle align-self-start mt-2"
|
|
|
50 |
src="{{{.}}}"
|
|
|
51 |
alt="{{name}}"
|
|
|
52 |
aria-hidden="true"
|
|
|
53 |
style="height: 38px"
|
|
|
54 |
>
|
|
|
55 |
{{/imageurl}}
|
|
|
56 |
{{#showonlinestatus}}
|
|
|
57 |
<span class="contact-status icon-size-2 {{#isonline}}online{{/isonline}}">
|
|
|
58 |
{{#isonline}} {{#pix}} t/online, core, {{#str}} online, core_message {{/str}} {{/pix}} {{/isonline}}
|
|
|
59 |
</span>
|
|
|
60 |
{{/showonlinestatus}}
|
|
|
61 |
<div class="w-100 text-truncate ml-2 my-2">
|
|
|
62 |
<div class="d-flex">
|
|
|
63 |
<strong class="m-0 text-truncate">{{name}}</strong>
|
|
|
64 |
<span class="{{^isblocked}}hidden{{/isblocked}}" data-region="contact-icon-blocked">
|
|
|
65 |
{{#pix}} t/block, core, {{#str}} contactblocked, message {{/str}} {{/pix}}
|
|
|
66 |
</span>
|
|
|
67 |
<span class="{{^ismuted}}hidden{{/ismuted}}" data-region="muted-icon-container">
|
|
|
68 |
{{#pix}} i/muted, core {{/pix}}
|
|
|
69 |
</span>
|
|
|
70 |
</div>
|
|
|
71 |
{{#subname}}
|
|
|
72 |
<p class="m-0 text-truncate">{{.}}</p>
|
|
|
73 |
{{/subname}}
|
|
|
74 |
<p class="m-0 font-weight-light text-truncate last-message" data-region="last-message">
|
|
|
75 |
{{#sentfromcurrentuser}}
|
|
|
76 |
{{#str}} you, core_message {{/str}}
|
|
|
77 |
{{/sentfromcurrentuser}}
|
|
|
78 |
{{^sentfromcurrentuser}}
|
|
|
79 |
{{#lastsendername}}
|
|
|
80 |
{{#str}} sender, core_message, {{.}} {{/str}}
|
|
|
81 |
{{/lastsendername}}
|
|
|
82 |
{{/sentfromcurrentuser}}
|
|
|
83 |
<span>{{{lastmessage}}}</span>
|
|
|
84 |
</p>
|
|
|
85 |
</div>
|
|
|
86 |
<div class="d-flex align-self-stretch">
|
|
|
87 |
<div
|
|
|
88 |
class="px-2 py-1 small position-absolute position-right {{^lastmessagedate}}hidden{{/lastmessagedate}}"
|
|
|
89 |
data-region="last-message-date" aria-hidden="true"
|
|
|
90 |
>
|
|
|
91 |
{{#lastmessagedate}}
|
|
|
92 |
{{#istoday}}
|
|
|
93 |
{{#userdate}} {{.}}, {{#str}} strftimetime24, core_langconfig {{/str}} {{/userdate}}
|
|
|
94 |
{{/istoday}}
|
|
|
95 |
{{^istoday}}
|
|
|
96 |
{{#userdate}} {{.}}, {{#str}} strftimedatefullshort, core_langconfig {{/str}} {{/userdate}}
|
|
|
97 |
{{/istoday}}
|
|
|
98 |
|
|
|
99 |
{{/lastmessagedate}}
|
|
|
100 |
</div>
|
|
|
101 |
<div class="d-flex align-self-center align-items-center">
|
|
|
102 |
<span
|
|
|
103 |
class="badge rounded-pill bg-primary text-white {{^unreadcount}}hidden{{/unreadcount}}"
|
|
|
104 |
data-region="unread-count"
|
|
|
105 |
>
|
|
|
106 |
<span aria-hidden="true">{{unreadcount}}</span>
|
|
|
107 |
<span class="sr-only">{{#str}} unreadmessages, core_message, {{unreadcount}} {{/str}}</span>
|
|
|
108 |
</span>
|
|
|
109 |
|
|
|
110 |
<div class="text-muted ml-auto">
|
|
|
111 |
{{> core_message/message_drawer_icon_forward }}
|
|
|
112 |
</div>
|
|
|
113 |
</div>
|
|
|
114 |
</div>
|
|
|
115 |
</a>
|
|
|
116 |
{{/conversations}}
|