Merge branch 'MDL-64506' of git://github.com/Chocolate-lightning/moodle
[moodle.git] / message / templates / message_drawer_view_conversation_header_content_type_public.mustache
1 {{!
2     This file is part of Moodle - http://moodle.org/
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.
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.
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_view_conversation_heeader_content
20     This template will render the header content of the conversation page in
21     the message message drawer.
23     Classes required for JS:
24     * none
26     Data attributes required for JS:
27     * All data attributes are required
29     Context variables required for this template:
30     * userid The logged in user id
31     * urls The URLs for the popover
33     Example context (json):
34     {}
36 }}
38 <div class="d-flex flex-column">
39     <div class="d-flex align-items-center">
40         <div class="align-self-stretch" >
41             <a class="h-100 mr-2 d-flex align-items-center" href="#" data-route-back role="button">
42                 {{> core_message/message_drawer_icon_back }}
43             </a>
44         </div>
45         <div class="d-flex text-truncate">
46             <a class="d-flex text-truncate text-decoration-none" href="#" data-action="view-group-info" role="button">
47                 {{#imageurl}}
48                     <img
49                         class="rounded-circle"
50                         src="{{{.}}}"
51                         alt="{{name}}"
52                         aria-hidden="true"
53                         style="height: 38px"
54                     >
55                 {{/imageurl}}
56                 <div class="w-100 text-truncate ml-2">
57                     <div class="d-flex">
58                         <strong class="m-0 text-truncate">{{name}}</strong>
59                         <span class="{{^isfavourite}}hidden{{/isfavourite}} ml-1 text-primary"
60                         data-region="favourite-icon-container" aria-label="{{#str}} favourites, core {{/str}}">
61                             {{#pix}} i/star-rating, core {{/pix}}
62                         </span>
63                         <span class="{{^ismuted}}hidden{{/ismuted}} ml-1 text-primary" data-region="muted-icon-container">
64                             {{#pix}} i/muted, core {{/pix}}
65                         </span>
66                     </div>
67                     <p class="m-0 text-truncate">{{subname}}</p>
68                 </div>
69             </a>
70         </div>
71         <div class="ml-auto dropdown">
72             <button class="btn btn-link btn-icon icon-size-3" type="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
73                 {{#pix}} i/moremenu, core {{/pix}}
74             </button>
75             <div class="dropdown-menu float-right">
76                 <a class="dropdown-item" href="#" data-action="view-group-info">
77                     {{#str}} groupinfo, core_message {{/str}}
78                 </a>
79                 <a class="dropdown-item {{#isfavourite}}hidden{{/isfavourite}}" href="#" data-action="confirm-favourite">
80                     {{#str}} addtofavourites, core_message {{/str}}
81                 </a>
82                 <a class="dropdown-item {{^isfavourite}}hidden{{/isfavourite}}" href="#" data-action="confirm-unfavourite">
83                     {{#str}} removefromfavourites, core_message {{/str}}
84                 </a>
85                 <a class="dropdown-item {{#ismuted}}hidden{{/ismuted}}" href="#" data-action="confirm-mute">
86                     {{#str}} muteconversation, core_message {{/str}}
87                 </a>
88                 <a class="dropdown-item {{^ismuted}}hidden{{/ismuted}}" href="#" data-action="confirm-unmute">
89                     {{#str}} unmuteconversation, core_message {{/str}}
90                 </a>
91             </div>
92         </div>
93     </div>
94     <div class="d-flex">
95         <!-- These are just placeholder elements to align the text below correctly with the name text above -->
96         <div class="mr-2 icon" aria-hidden="true"></div>
97         {{#imageurl}}<div style="width: 38px" aria-hidden="true"></div>{{/imageurl}}
98         <!-- End placeholders -->
99         <a class="text-decoration-none line-height-3 ml-2" href="#" data-action="view-group-info" role="button">
100             <small class="m-0 text-muted text-truncate">
101                 {{#str}} numparticipants, core_message, {{totalmembercount}} {{/str}}
102             </small>
103         </a>
104     </div>
105 </div>