2016-03-28 14:29:05 +00:00
|
|
|
|
|
|
|
{{* This is a little bit hacky. This is needed to have some sort comments container.
|
|
|
|
It would be better if it would be done in friendica core but since core lacks this functionality
|
|
|
|
it is done in the theme
|
|
|
|
|
2016-11-05 01:19:07 +00:00
|
|
|
In short: the piece of code counts the total number of children of the toplevelpost
|
2016-03-28 14:29:05 +00:00
|
|
|
- this are usaly all posts with thread_level = 2 - and stores it in variable $top_children_total.
|
|
|
|
The first time a children which hits thread_level = 2 and $top_child = 1 opens the div.
|
|
|
|
|
|
|
|
Everytime when a children with top_level = 2 comes up $top_child_nr rises with 1.
|
|
|
|
The div get's closed if thread_level = 2 and the value of $top_child_nr is the same
|
|
|
|
as the value of $top_child_total (this is done at the end of this file)
|
|
|
|
*}}
|
|
|
|
{{if $item.thread_level==1}}
|
2018-12-07 05:54:40 +00:00
|
|
|
{{assign var="top_child_total" value=count($item.children)}}
|
|
|
|
{{assign var="top_child_nr" value=0}}
|
2016-03-28 14:29:05 +00:00
|
|
|
{{/if}}
|
|
|
|
{{if $item.thread_level==2}}
|
|
|
|
{{assign var="top_child_nr" value=$top_child_nr+1 scope=parent}}
|
|
|
|
{{/if}}
|
|
|
|
|
|
|
|
{{if $item.thread_level==2 && $top_child_nr==1}}
|
2019-02-15 03:28:38 +00:00
|
|
|
<div class="comment-container"> <!--top-child-begin-->
|
2016-03-28 14:29:05 +00:00
|
|
|
{{/if}}
|
|
|
|
{{* end of hacky part to count childrens *}}
|
|
|
|
|
|
|
|
|
|
|
|
{{if $mode == display}}
|
|
|
|
{{else}}
|
|
|
|
{{if $item.comment_firstcollapsed}}
|
|
|
|
{{*
|
|
|
|
<div align="center" style="margin-top:-34px;">
|
|
|
|
<div class="hide-comments-outer btn btn-default" onclick="showHideComments({{$item.id}});">
|
|
|
|
<span id="hide-comments-total-{{$item.id}}" class="hide-comments-total">{{$item.num_comments}}</span>
|
|
|
|
<span id="hide-comments-{{$item.id}}" class="hide-comments fakelink">{{$item.hide_text}}</span>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div id="collapsed-comments-{{$item.id}}" class="collapsed-comments" style="display: none;">
|
|
|
|
*}}
|
|
|
|
|
|
|
|
{{if $item.thread_level<3}}
|
|
|
|
<div class="hide-comments-outer-wrapper">
|
2017-03-16 02:00:07 +00:00
|
|
|
<div class="hide-comments-outer fakelink" onclick="showHideComments({{$item.id}});">
|
2019-02-15 03:24:34 +00:00
|
|
|
<span id="hide-comments-total-{{$item.id}}" class="hide-comments-total">
|
2019-02-18 13:23:05 +00:00
|
|
|
<i class="fa fa-caret-right" aria-hidden="true"></i>
|
2019-02-15 03:24:34 +00:00
|
|
|
{{$item.num_comments}} - {{$item.show_text}}
|
|
|
|
</span>
|
|
|
|
<span id="hide-comments-{{$item.id}}" class="hide-comments" style="display: none">
|
2019-02-18 13:23:05 +00:00
|
|
|
<i class="fa fa-caret-down" aria-hidden="true"></i>
|
2019-02-15 03:24:34 +00:00
|
|
|
{{$item.num_comments}} - {{$item.hide_text}}
|
|
|
|
</span>
|
2016-03-28 14:29:05 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div id="collapsed-comments-{{$item.id}}" class="collapsed-comments" style="display: none;">
|
|
|
|
{{else}}
|
|
|
|
<div id="collapsed-comments-{{$item.id}}" class="collapsed-comments" style="display: block;">
|
|
|
|
{{/if}}
|
|
|
|
{{/if}}
|
|
|
|
{{/if}}
|
|
|
|
|
2018-12-07 05:54:40 +00:00
|
|
|
{{* TODO => Unknown block *}}
|
2016-03-28 14:29:05 +00:00
|
|
|
<div class="wall-item-decor" style="display:none;">
|
2016-11-05 01:19:07 +00:00
|
|
|
{{if $item.star}}
|
2018-12-14 03:28:12 +00:00
|
|
|
<span class="icon s22 star {{$item.isstarred}}" id="starred-{{$item.id}}" title="{{$item.star.starred}}">{{$item.star.starred}}</span>
|
2016-11-05 01:19:07 +00:00
|
|
|
{{/if}}
|
2022-01-09 17:17:34 +00:00
|
|
|
{{if $item.lock}}<span class="navicon lock fakelink" onclick="lockview(event, 'item', {{$item.id}});" title="{{$item.lock}}"></span><span class="fa fa-lock"></span>
|
|
|
|
{{elseif $item.connector}}<span class="fa fa-lock" title="{{$item.connector}}"></span>{{/if}}
|
2016-03-28 14:29:05 +00:00
|
|
|
</div>
|
2018-12-07 05:54:40 +00:00
|
|
|
{{* /TODO => Unknown block *}}
|
2016-03-28 14:29:05 +00:00
|
|
|
|
|
|
|
|
|
|
|
{{* Use a different div container in dependence max thread-level = 7 *}}
|
|
|
|
{{if $item.thread_level<7}}
|
2019-07-16 02:46:22 +00:00
|
|
|
<div class="item-{{$item.id}} wall-item-container {{$item.indent}} {{$item.network}} thread_level_{{$item.thread_level}} {{if $item.thread_level==1}}panel-body h-entry{{else}}u-comment h-cite{{/if}}" id="item-{{$item.guid}}"><!-- wall-item-container -->
|
2016-03-28 14:29:05 +00:00
|
|
|
{{else}}
|
2019-07-16 02:46:22 +00:00
|
|
|
<div class="item-{{$item.id}} wall-item-container {{$item.indent}} {{$item.network}} thread_level_7 u-comment h-cite" id="item-{{$item.guid}}">
|
2017-07-31 06:04:37 +00:00
|
|
|
{{/if}}
|
|
|
|
{{if $item.thread_level==1}}
|
|
|
|
<span class="commented" style="display: none;">{{$item.commented}}</span>
|
|
|
|
<span class="received" style="display: none;">{{$item.received}}</span>
|
|
|
|
<span class="created" style="display: none;">{{$item.created_date}}</span>
|
2020-08-13 20:07:13 +00:00
|
|
|
<span class="uriid" style="display: none;">{{$item.uriid}}</span>
|
2017-07-31 06:04:37 +00:00
|
|
|
{{/if}}
|
2019-07-16 02:46:22 +00:00
|
|
|
<div class="media {{$item.shiny}}">
|
2020-09-08 22:06:10 +00:00
|
|
|
{{if $item.reshared}}
|
2020-09-09 15:41:23 +00:00
|
|
|
<p class="wall-item-announce wall-item-responses" id="wall-item-announce-{{$item.id}}"><i class="fa fa-retweet" aria-hidden="true"></i> {{$item.reshared nofilter}}</p>
|
2020-09-03 14:45:57 +00:00
|
|
|
{{/if}}
|
2016-03-28 14:29:05 +00:00
|
|
|
{{* The avatar picture and the photo-menu *}}
|
|
|
|
<div class="dropdown pull-left"><!-- Dropdown -->
|
|
|
|
{{if $item.thread_level==1}}
|
2016-06-21 14:23:43 +00:00
|
|
|
<div class="hidden-sm hidden-xs contact-photo-wrapper mframe{{if $item.owner_url}} wwfrom{{/if}} p-author h-card">
|
2019-10-30 03:18:17 +00:00
|
|
|
<a class="userinfo click-card u-url" id="wall-item-photo-menu-{{$item.id}}" href="{{$item.profile_url}}">
|
2016-03-28 14:29:05 +00:00
|
|
|
<div class="contact-photo-image-wrapper">
|
2018-12-14 03:28:12 +00:00
|
|
|
<img src="{{$item.thumb}}" class="contact-photo media-object {{$item.sparkle}} p-name u-photo" id="wall-item-photo-{{$item.id}}" alt="{{$item.name}}" />
|
2016-03-28 14:29:05 +00:00
|
|
|
</div>
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
<div class="hidden-lg hidden-md contact-photo-wrapper mframe{{if $item.owner_url}} wwfrom{{/if}}">
|
2019-10-30 03:18:17 +00:00
|
|
|
<a class="userinfo click-card u-url" id="wall-item-photo-menu-xs-{{$item.id}}" href="{{$item.profile_url}}">
|
2016-03-28 14:29:05 +00:00
|
|
|
<div class="contact-photo-image-wrapper">
|
2018-12-14 03:28:12 +00:00
|
|
|
<img src="{{$item.thumb}}" class="contact-photo-xs media-object {{$item.sparkle}}" id="wall-item-photo-xs-{{$item.id}}" alt="{{$item.name}}" />
|
2016-03-28 14:29:05 +00:00
|
|
|
</div>
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{{* The litle overlay avatar picture if someone is posting directly to a wall or a forum *}}
|
|
|
|
{{if $item.owner_url}}
|
2021-05-19 21:47:15 +00:00
|
|
|
<div aria-hidden="true" class="contact-photo-wrapper mframe wwto" id="wall-item-ownerphoto-wrapper-{{$item.id}}">
|
2018-12-14 03:28:12 +00:00
|
|
|
<a href="{{$item.owner_url}}" target="redir" title="{{$item.olinktitle}}" class="contact-photo-link" id="wall-item-ownerphoto-link-{{$item.id}}">
|
|
|
|
<img src="{{$item.owner_photo}}" class="contact-photo {{$item.osparkle}}" id="wall-item-ownerphoto-{{$item.id}}" alt="{{$item.owner_name}}" />
|
2016-03-28 14:29:05 +00:00
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
{{/if}}
|
|
|
|
|
2016-04-26 12:07:40 +00:00
|
|
|
{{/if}} {{*End if $item.thread_level==1}}
|
2016-03-28 14:29:05 +00:00
|
|
|
|
|
|
|
{{* The avatar picture for comments *}}
|
|
|
|
{{if $item.thread_level!=1}}
|
2016-06-21 14:23:43 +00:00
|
|
|
<div class="contact-photo-wrapper mframe{{if $item.owner_url}} wwfrom{{/if}} p-author h-card">
|
2019-10-30 03:18:17 +00:00
|
|
|
<a class="userinfo click-card u-url" id="wall-item-photo-menu-{{$item.id}}" href="{{$item.profile_url}}">
|
2016-03-28 14:29:05 +00:00
|
|
|
<div class="contact-photo-image-wrapper">
|
2018-12-14 03:28:12 +00:00
|
|
|
<img src="{{$item.thumb}}" class="contact-photo-xs media-object {{$item.sparkle}} p-name u-photo" id="wall-item-photo-comment-{{$item.id}}" alt="{{$item.name}}" />
|
2016-03-28 14:29:05 +00:00
|
|
|
</div>
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
{{/if}}
|
|
|
|
</div><!-- ./Dropdown -->
|
|
|
|
|
|
|
|
|
2020-09-03 14:45:57 +00:00
|
|
|
{{if $item.thread_level!=1}}
|
|
|
|
<div class="media-body">{{*this is the media body for comments - this div must be closed at the end of the file *}}
|
|
|
|
{{/if}}
|
2016-03-28 14:29:05 +00:00
|
|
|
|
2020-09-03 14:45:57 +00:00
|
|
|
{{* contact info header*}}
|
|
|
|
<div role="heading" aria-level="{{$item.thread_level}}">
|
|
|
|
<div class="preferences">
|
|
|
|
{{if $item.network_icon != ""}}
|
|
|
|
<span class="wall-item-network"><i class="fa fa-{{$item.network_icon}}" title="{{$item.network_name}}" aria-hidden="true"></i></span>
|
|
|
|
{{else}}
|
|
|
|
<span class="wall-item-network" title="{{$item.app}}">{{$item.network_name}}</span>
|
|
|
|
{{/if}}
|
|
|
|
{{if $item.plink}} {{*link to the original source of the item *}}
|
|
|
|
|
|
|
|
<a href="{{$item.plink.href}}" class="plink u-url" aria-label="{{$item.plink.title}}" title="{{$item.plink.title}}">
|
|
|
|
<i class="fa fa-external-link"></i>
|
|
|
|
</a>
|
|
|
|
{{/if}}
|
|
|
|
</div>
|
2016-03-28 14:29:05 +00:00
|
|
|
{{if $item.thread_level==1}}
|
2020-09-03 14:45:57 +00:00
|
|
|
<div class="contact-info hidden-sm hidden-xs media-body"><!-- <= For computer -->
|
|
|
|
<h4 class="media-heading">
|
|
|
|
<a href="{{$item.profile_url}}" title="{{$item.linktitle}}" class="wall-item-name-link userinfo hover-card">
|
|
|
|
<span class="wall-item-name {{$item.sparkle}}">{{$item.name}}</span>
|
|
|
|
</a>
|
|
|
|
{{if $item.owner_url}}
|
|
|
|
{{$item.via}}
|
|
|
|
<a href="{{$item.owner_url}}" target="redir" title="{{$item.olinktitle}}" class="wall-item-name-link userinfo hover-card">
|
|
|
|
<span class="wall-item-name {{$item.osparkle}}" id="wall-item-ownername-{{$item.id}}">{{$item.owner_name}}</span>
|
|
|
|
</a>
|
|
|
|
{{/if}}
|
2022-02-20 19:25:55 +00:00
|
|
|
{{if $item.connector}}
|
|
|
|
<small><i class="fa fa-plug" title="{{$item.connector}}" aria-hidden="true"></i></small>
|
|
|
|
{{else}}
|
|
|
|
<span class="navicon lock fakelink" onClick="lockview(event, 'item', {{$item.id}});" title="{{$item.privacy}}" data-toggle="tooltip">
|
|
|
|
<small><i class="fa {{if $item.private == 1}}fa-lock{{elseif $item.private == 0}}fa-globe{{else}}fa-low-vision{{/if}}" aria-hidden="true"></i></small>
|
2020-09-03 14:45:57 +00:00
|
|
|
</span>
|
|
|
|
{{/if}}
|
|
|
|
</h4>
|
|
|
|
|
|
|
|
<div class="additional-info text-muted">
|
|
|
|
<div id="wall-item-ago-{{$item.id}}" class="wall-item-ago">
|
|
|
|
<small>
|
|
|
|
<a href="{{$item.plink.orig}}">
|
2021-11-22 03:51:21 +00:00
|
|
|
<time class="time dt-published" title="{{$item.localtime}}" data-toggle="tooltip" datetime="{{$item.utc}}">{{$item.ago}}</time>
|
2020-09-03 14:45:57 +00:00
|
|
|
</a>
|
|
|
|
{{if $item.owner_self}}
|
|
|
|
{{include file="sub/delivery_count.tpl" delivery=$item.delivery}}
|
|
|
|
{{/if}}
|
|
|
|
{{if $item.direction}}
|
|
|
|
{{include file="sub/direction.tpl" direction=$item.direction}}
|
|
|
|
{{/if}}
|
|
|
|
{{if $item.pinned}}
|
|
|
|
• <i class="fa fa-thumb-tack" aria-hidden="true" title="{{$item.pinned}}"></i>
|
|
|
|
<span class="sr-only">{{$item.pinned}}</span>
|
|
|
|
{{/if}}
|
|
|
|
|
|
|
|
</small>
|
|
|
|
</div>
|
2016-03-28 14:29:05 +00:00
|
|
|
|
2020-09-13 23:33:57 +00:00
|
|
|
{{if $item.location_html}}
|
2020-09-03 14:45:57 +00:00
|
|
|
<div id="wall-item-location-{{$item.id}}" class="wall-item-location">
|
2020-09-13 23:33:57 +00:00
|
|
|
<small><span class="location">({{$item.location_html nofilter}})</span></small>
|
2020-09-03 14:45:57 +00:00
|
|
|
</div>
|
|
|
|
{{/if}}
|
2016-04-26 12:07:40 +00:00
|
|
|
</div>
|
2020-09-03 14:45:57 +00:00
|
|
|
{{* @todo $item.created have to be inserted *}}
|
2016-04-26 12:07:40 +00:00
|
|
|
</div>
|
2016-03-28 14:29:05 +00:00
|
|
|
|
2020-09-03 14:45:57 +00:00
|
|
|
{{* contact info header for smartphones *}}
|
|
|
|
<div class="contact-info-xs hidden-lg hidden-md"><!-- <= For smartphone (responsive) -->
|
|
|
|
<h5 class="media-heading">
|
|
|
|
<a href="{{$item.profile_url}}" title="{{$item.linktitle}}" class="wall-item-name-link userinfo hover-card"><span>{{$item.name}}</span></a>
|
|
|
|
<p class="text-muted">
|
|
|
|
<small>
|
2021-11-22 03:51:21 +00:00
|
|
|
<a href="{{$item.plink.orig}}">
|
|
|
|
<time class="time" class="wall-item-ago" datetime="{{$item.utc}}">{{$item.ago}}</time>
|
|
|
|
</a>
|
2020-09-13 23:33:57 +00:00
|
|
|
{{if $item.location_html}} — ({{$item.location_html nofilter}}){{/if}}
|
2020-09-03 14:45:57 +00:00
|
|
|
{{if $item.owner_self}}
|
|
|
|
{{include file="sub/delivery_count.tpl" delivery=$item.delivery}}
|
|
|
|
{{/if}}
|
|
|
|
{{if $item.direction}}
|
|
|
|
{{include file="sub/direction.tpl" direction=$item.direction}}
|
|
|
|
{{/if}}
|
|
|
|
</small>
|
|
|
|
</p>
|
|
|
|
</h5>
|
|
|
|
</div>
|
|
|
|
{{else}} {{* End of if $item.thread_level == 1 *}}
|
|
|
|
{{* contact info header for comments *}}
|
|
|
|
<div class="contact-info-comment">
|
|
|
|
<h5 class="media-heading">
|
|
|
|
<a href="{{$item.profile_url}}" title="{{$item.linktitle}}" class="wall-item-name-link userinfo hover-card"><span class="fakelink">{{$item.name}}</span></a>
|
2022-02-20 19:25:55 +00:00
|
|
|
{{if $item.connector}}
|
|
|
|
<small><i class="fa fa-plug" title="{{$item.connector}}" aria-hidden="true"></i></small>
|
|
|
|
{{else}}
|
|
|
|
<span class="navicon lock fakelink" onClick="lockview(event, 'item', {{$item.id}});" title="{{$item.privacy}}" data-toggle="tooltip">
|
|
|
|
<small><i class="fa {{if $item.private == 1}}fa-lock{{elseif $item.private == 0}}fa-globe{{else}}fa-low-vision{{/if}}" aria-hidden="true"></i></small>
|
|
|
|
</span>
|
|
|
|
{{/if}}
|
2020-09-03 14:45:57 +00:00
|
|
|
<span class="text-muted">
|
2022-02-20 19:25:55 +00:00
|
|
|
</h5>
|
2020-09-03 14:45:57 +00:00
|
|
|
<small>
|
2021-11-22 03:51:21 +00:00
|
|
|
<a href="{{$item.plink.orig}}">
|
|
|
|
<time class="time" title="{{$item.localtime}}" data-toggle="tooltip" datetime="{{$item.utc}}">{{$item.ago}}</time>
|
|
|
|
</a>
|
2020-09-13 23:33:57 +00:00
|
|
|
{{if $item.location_html}} — ({{$item.location_html nofilter}}){{/if}}
|
2020-09-03 14:45:57 +00:00
|
|
|
{{if $item.owner_self}}
|
|
|
|
{{include file="sub/delivery_count.tpl" delivery=$item.delivery}}
|
|
|
|
{{/if}}
|
|
|
|
{{if $item.direction}}
|
|
|
|
{{include file="sub/direction.tpl" direction=$item.direction}}
|
|
|
|
{{/if}}
|
|
|
|
</small>
|
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
{{/if}} {{* End of if $item.thread_level != 1 *}}
|
2020-02-09 22:47:41 +00:00
|
|
|
</div>
|
2020-02-06 22:06:24 +00:00
|
|
|
|
2018-08-04 18:54:58 +00:00
|
|
|
<div class="clearfix"></div>
|
2018-08-08 10:58:58 +00:00
|
|
|
|
|
|
|
{{* Insert Line to seperate item header and item content visually *}}
|
|
|
|
{{if $item.thread_level==1}}<hr />{{/if}}
|
2016-03-28 14:29:05 +00:00
|
|
|
|
|
|
|
{{* item content *}}
|
2017-10-20 13:21:42 +00:00
|
|
|
<div class="wall-item-content {{$item.type}}" id="wall-item-content-{{$item.id}}">
|
2016-03-28 14:29:05 +00:00
|
|
|
{{if $item.title}}
|
2021-05-19 22:05:56 +00:00
|
|
|
<span class="wall-item-title" id="wall-item-title-{{$item.id}}"><h4 class="media-heading" dir="auto"><a href="{{$item.plink.href}}" class="{{$item.sparkle}} p-name">{{$item.title}}</a></h4><br /></span>
|
2016-03-28 14:29:05 +00:00
|
|
|
{{/if}}
|
|
|
|
|
2021-05-01 19:13:53 +00:00
|
|
|
<div class="wall-item-body e-content {{if !$item.title}}p-name{{/if}}" id="wall-item-body-{{$item.id}}" dir="auto">{{$item.body_html nofilter}}</div>
|
2016-03-28 14:29:05 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<!-- TODO -->
|
|
|
|
<div class="wall-item-bottom">
|
2018-08-08 10:58:58 +00:00
|
|
|
<div class="wall-item-links"></div>
|
2016-03-28 14:29:05 +00:00
|
|
|
<div class="wall-item-tags">
|
2018-03-25 04:38:23 +00:00
|
|
|
{{if !$item.suppress_tags}}
|
|
|
|
{{foreach $item.hashtags as $tag}}
|
2018-12-20 21:57:53 +00:00
|
|
|
<span class="tag label btn-info sm">{{$tag nofilter}} <i class="fa fa-bolt" aria-hidden="true"></i></span>
|
2018-03-25 04:38:23 +00:00
|
|
|
{{/foreach}}
|
|
|
|
|
|
|
|
{{foreach $item.mentions as $tag}}
|
2018-12-20 21:57:53 +00:00
|
|
|
<span class="mention label btn-warning sm">{{$tag nofilter}} <i class="fa fa-user" aria-hidden="true"></i></span>
|
2018-03-25 04:38:23 +00:00
|
|
|
{{/foreach}}
|
2016-03-28 14:29:05 +00:00
|
|
|
|
2019-02-23 04:03:32 +00:00
|
|
|
{{*foreach $item.implicit_mentions as $tag}}
|
|
|
|
<span class="mention label label-default sm">{{$tag nofilter}} <i class="fa fa-eye-slash" aria-hidden="true"></i></span>
|
|
|
|
{{/foreach*}}
|
|
|
|
{{/if}}
|
2018-03-25 04:38:23 +00:00
|
|
|
{{foreach $item.folders as $cat}}
|
2019-02-06 16:08:13 +00:00
|
|
|
<span class="folder label btn-danger sm p-category">{{$cat.name}}{{if $cat.removeurl}} (<a href="{{$cat.removeurl}}" title="{{$remove}}">x</a>) {{/if}} </span>
|
2018-03-25 04:38:23 +00:00
|
|
|
{{/foreach}}
|
2016-03-28 14:29:05 +00:00
|
|
|
|
2018-03-25 04:38:23 +00:00
|
|
|
{{foreach $item.categories as $cat}}
|
2019-11-03 14:55:58 +00:00
|
|
|
<span class="category label btn-success sm p-category"><a href="{{$cat.url}}">{{$cat.name}}</a>{{if $cat.removeurl}} (<a href="{{$cat.removeurl}}" title="{{$remove}}">x</a>) {{/if}} </span>
|
2018-03-25 04:38:23 +00:00
|
|
|
{{/foreach}}
|
2016-03-28 14:29:05 +00:00
|
|
|
</div>
|
2018-12-14 03:28:12 +00:00
|
|
|
{{if $item.edited}}<div class="itemedited text-muted">{{$item.edited['label']}} (<span title="{{$item.edited['date']}}">{{$item.edited['relative']}}</span>)</div>{{/if}}
|
2016-03-28 14:29:05 +00:00
|
|
|
</div>
|
|
|
|
<!-- ./TODO -->
|
|
|
|
|
|
|
|
<!-- <hr /> -->
|
2020-02-06 22:06:24 +00:00
|
|
|
<div class="wall-item-actions">
|
2016-03-28 14:29:05 +00:00
|
|
|
{{* Action buttons to interact with the item (like: like, dislike, share and so on *}}
|
2020-02-13 02:26:49 +00:00
|
|
|
<span class="wall-item-actions-left hidden-xs">
|
2016-03-28 14:29:05 +00:00
|
|
|
|
2020-02-09 22:47:41 +00:00
|
|
|
{{* Buttons for like and dislike *}}
|
|
|
|
{{if $item.vote}}
|
|
|
|
{{if $item.vote.like}}
|
2021-01-30 21:42:34 +00:00
|
|
|
<button type="button" class="btn-link button-likes{{if $item.responses.like.self}} active" aria-pressed="true{{/if}}" id="like-{{$item.id}}" title="{{$item.vote.like.0}}" onclick="doActivityItemAction({{$item.id}}, 'like'{{if $item.responses.like.self}}, true{{/if}});" data-toggle="button"><i class="fa fa-thumbs-up" aria-hidden="true"></i> {{$item.vote.like.1}}</button>
|
2020-02-09 22:47:41 +00:00
|
|
|
{{/if}}
|
|
|
|
{{if $item.vote.like AND $item.vote.dislike}}
|
|
|
|
<span role="presentation" class="separator"></span>
|
|
|
|
{{/if}}
|
|
|
|
{{if $item.vote.dislike}}
|
2021-01-30 21:42:34 +00:00
|
|
|
<button type="button" class="btn-link button-likes{{if $item.responses.dislike.self}} active" aria-pressed="true{{/if}}" id="dislike-{{$item.id}}" title="{{$item.vote.dislike.0}}" onclick="doActivityItemAction({{$item.id}}, 'dislike'{{if $item.responses.dislike.self}}, true{{/if}});" data-toggle="button"><i class="fa fa-thumbs-down" aria-hidden="true"></i> {{$item.vote.dislike.1}}</button>
|
2020-02-09 22:47:41 +00:00
|
|
|
{{/if}}
|
2016-03-28 14:29:05 +00:00
|
|
|
|
2020-09-13 23:43:42 +00:00
|
|
|
{{if ($item.vote.like OR $item.vote.dislike) AND $item.comment_html}}
|
2020-02-09 22:47:41 +00:00
|
|
|
<span role="presentation" class="separator"></span>
|
2016-03-28 14:29:05 +00:00
|
|
|
{{/if}}
|
2020-02-09 22:47:41 +00:00
|
|
|
{{/if}}
|
2016-03-28 14:29:05 +00:00
|
|
|
|
2020-02-18 06:57:38 +00:00
|
|
|
{{if $item.remote_comment}}
|
|
|
|
<a href="{{$item.remote_comment.2}}" class="btn-link button-comments" title="{{$item.remote_comment.0}}"><i class="fa fa-commenting" aria-hidden="true"></i> {{$item.remote_comment.1}}</a>
|
|
|
|
{{/if}}
|
|
|
|
|
2020-02-09 22:47:41 +00:00
|
|
|
{{* Button to open the comment text field *}}
|
2020-09-13 23:43:42 +00:00
|
|
|
{{if $item.comment_html}}
|
2019-02-15 03:28:38 +00:00
|
|
|
<button type="button" class="btn-link button-comments" id="comment-{{$item.id}}" title="{{$item.switchcomment}}" {{if $item.thread_level != 1}}onclick="openClose('item-comments-{{$item.id}}'); commentExpand({{$item.id}});" {{else}} onclick="openClose('item-comments-{{$item.id}}'); commentExpand({{$item.id}});"{{/if}}><i class="fa fa-commenting" aria-hidden="true"></i> {{$item.switchcomment}}</button>
|
2020-02-09 22:47:41 +00:00
|
|
|
{{/if}}
|
2016-03-28 14:29:05 +00:00
|
|
|
|
2020-02-09 22:47:41 +00:00
|
|
|
{{* Button for sharing the item *}}
|
|
|
|
{{if $item.vote}}
|
2020-10-11 08:49:47 +00:00
|
|
|
{{if $item.vote.share OR $item.vote.announce}}
|
2020-09-13 23:43:42 +00:00
|
|
|
{{if $item.vote.like OR $item.vote.dislike OR $item.comment_html}}
|
2020-02-09 22:47:41 +00:00
|
|
|
<span role="presentation" class="separator"></span>
|
2016-03-28 14:29:05 +00:00
|
|
|
{{/if}}
|
2020-10-11 08:49:47 +00:00
|
|
|
{{/if}}
|
|
|
|
{{if $item.vote.announce}}
|
2021-01-30 21:42:34 +00:00
|
|
|
<button type="button" class="btn-link button-announces{{if $item.responses.announce.self}} active" aria-pressed="true{{/if}}" id="announce-{{$item.id}}" title="{{$item.vote.announce.0}}" onclick="doActivityItemAction({{$item.id}}, 'announce'{{if $item.responses.announce.self}}, true{{/if}});" data-toggle="button"><i class="fa fa-retweet" aria-hidden="true"></i> {{$item.vote.announce.1}}</button>
|
2020-10-11 08:49:47 +00:00
|
|
|
<span role="presentation" class="separator"></span>
|
|
|
|
{{/if}}
|
|
|
|
{{if $item.vote.share}}
|
|
|
|
<button type="button" class="btn-link button-votes" id="share-{{$item.id}}" title="{{$item.vote.share.0}}" onclick="jotShare({{$item.id}});"><i class="fa fa-share" aria-hidden="true"></i> {{$item.vote.share.1}}</button>
|
2016-03-28 14:29:05 +00:00
|
|
|
{{/if}}
|
2020-02-09 22:47:41 +00:00
|
|
|
{{/if}}
|
2020-02-06 22:06:24 +00:00
|
|
|
|
2020-02-09 22:47:41 +00:00
|
|
|
{{* Put additional actions in a dropdown menu *}}
|
2022-04-19 21:04:55 +00:00
|
|
|
{{if $item.menu && ($item.edpost || $item.tagger || $item.filer || $item.pin || $item.star || $item.follow_thread || $item.ignore || ($item.drop && $item.drop.dropping) || $item.browsershare)}}
|
2020-02-06 22:06:24 +00:00
|
|
|
<span role="presentation" class="separator"></span>
|
2020-02-09 22:47:41 +00:00
|
|
|
<span class="more-links btn-group{{if $item.thread_level > 1}} dropup{{/if}}">
|
|
|
|
<button type="button" class="btn-link dropdown-toggle" data-toggle="dropdown" id="dropdownMenuOptions-{{$item.id}}" aria-haspopup="true" aria-expanded="false" title="{{$item.menu}}"><i class="fa fa-ellipsis-h" aria-hidden="true"></i> {{$item.menu}}</button>
|
|
|
|
<ul class="dropdown-menu dropdown-menu-right" role="menu" aria-labelledby="dropdownMenuOptions-{{$item.id}}">
|
|
|
|
{{if $item.edpost}} {{* edit the posting *}}
|
|
|
|
<li role="menuitem">
|
|
|
|
<a href="javascript:editpost('{{$item.edpost.0}}?mode=none');" title="{{$item.edpost.1}}" class="btn-link navicon pencil"><i class="fa fa-pencil" aria-hidden="true"></i> {{$item.edpost.1}}</a>
|
|
|
|
</li>
|
|
|
|
{{/if}}
|
2020-02-06 22:06:24 +00:00
|
|
|
|
2020-02-09 22:47:41 +00:00
|
|
|
{{if $item.tagger}} {{* tag the post *}}
|
|
|
|
<li role="menuitem">
|
|
|
|
<a id="tagger-{{$item.id}}" href="javascript:itemTag({{$item.id}});" class="btn-link {{$item.tagger.class}}" title="{{$item.tagger.add}}"><i class="fa fa-tag" aria-hidden="true"></i> {{$item.tagger.add}}</a>
|
|
|
|
</li>
|
|
|
|
{{/if}}
|
2020-02-06 22:06:24 +00:00
|
|
|
|
2020-02-09 22:47:41 +00:00
|
|
|
{{if $item.filer}}
|
|
|
|
<li role="menuitem">
|
|
|
|
<a id="filer-{{$item.id}}" href="javascript:itemFiler({{$item.id}});" class="btn-link filer-item filer-icon" title="{{$item.filer}}"><i class="fa fa-folder" aria-hidden="true"></i> {{$item.filer}}</a>
|
|
|
|
</li>
|
|
|
|
{{/if}}
|
2020-02-06 22:06:24 +00:00
|
|
|
|
2020-02-09 22:47:41 +00:00
|
|
|
{{if $item.pin}}
|
|
|
|
<li role="menuitem">
|
2021-01-30 23:05:40 +00:00
|
|
|
<a id="pin-{{$item.id}}" href="javascript:doPin({{$item.id}});" class="btn-link {{$item.pin.classdo}}" title="{{$item.pin.do}}"><i class="fa fa-circle-o" aria-hidden="true"></i> {{$item.pin.do}}</a>
|
|
|
|
<a id="unpin-{{$item.id}}" href="javascript:doPin({{$item.id}});" class="btn-link {{$item.pin.classundo}}" title="{{$item.pin.undo}}"><i class="fa fa-dot-circle-o" aria-hidden="true"></i> {{$item.pin.undo}}</a>
|
2020-02-09 22:47:41 +00:00
|
|
|
</li>
|
|
|
|
{{/if}}
|
2020-02-06 22:06:24 +00:00
|
|
|
|
2020-02-09 22:47:41 +00:00
|
|
|
{{if $item.star}}
|
|
|
|
<li role="menuitem">
|
2021-01-30 22:51:27 +00:00
|
|
|
<a id="star-{{$item.id}}" href="javascript:doStar({{$item.id}});" class="btn-link {{$item.star.classdo}}" title="{{$item.star.do}}"><i class="fa fa-star-o" aria-hidden="true"></i> {{$item.star.do}}</a>
|
|
|
|
<a id="unstar-{{$item.id}}" href="javascript:doStar({{$item.id}});" class="btn-link {{$item.star.classundo}}" title="{{$item.star.undo}}"><i class="fa fa-star" aria-hidden="true"></i> {{$item.star.undo}}</a>
|
2020-02-09 22:47:41 +00:00
|
|
|
</li>
|
|
|
|
{{/if}}
|
2020-02-06 22:06:24 +00:00
|
|
|
|
2021-01-30 20:51:27 +00:00
|
|
|
{{if $item.follow_thread}}
|
2020-02-09 22:47:41 +00:00
|
|
|
<li role="menuitem">
|
2021-01-30 20:51:27 +00:00
|
|
|
<a id="follow_thread-{{$item.id}}" href="javascript:{{$item.follow_thread.action}}" class="btn-link" title="{{$item.follow_thread.title}}"><i class="fa fa-plus" aria-hidden="true"></i> {{$item.follow_thread.title}}</a>
|
2020-02-09 22:47:41 +00:00
|
|
|
</li>
|
|
|
|
{{/if}}
|
2020-02-06 22:06:24 +00:00
|
|
|
|
2020-10-04 18:52:28 +00:00
|
|
|
{{if $item.language}}
|
|
|
|
<li role="menuitem">
|
|
|
|
<a id="language-{{$item.id}}" href="javascript:alert('{{$item.language.1}}');" class="btn-link filer-item language-icon" title="{{$item.language.0}}"><i class="fa fa-language" aria-hidden="true"></i> {{$item.language.0}}</a>
|
|
|
|
</li>
|
|
|
|
{{/if}}
|
|
|
|
|
2022-04-19 21:04:55 +00:00
|
|
|
{{if $item.browsershare}}
|
|
|
|
<li role="menuitem" class="button-browser-share">
|
|
|
|
<a id="browser-share-{{$item.id}}" href="javascript:navigator.share({url: '{{$item.plink.orig}}'})" class="btn-link button-browser-share" title="{{$item.browsershare.1}}"><i class="fa fa-share-alt" aria-hidden="true"></i> {{$item.browsershare.0}}</a>
|
|
|
|
</li>
|
|
|
|
{{/if}}
|
|
|
|
|
2022-02-20 06:57:04 +00:00
|
|
|
{{if ($item.edpost || $item.tagger || $item.filer || $item.pin || $item.star || $item.follow_thread) && ($item.ignore || ($item.drop && $item.drop.dropping))}}
|
2020-02-09 22:47:41 +00:00
|
|
|
<li role="separator" class="divider"></li>
|
|
|
|
{{/if}}
|
2020-02-06 22:06:24 +00:00
|
|
|
|
2020-02-09 22:47:41 +00:00
|
|
|
{{if $item.ignore}}
|
|
|
|
<li role="menuitem">
|
2021-01-30 21:22:53 +00:00
|
|
|
<a id="ignore-{{$item.id}}" href="javascript:doIgnoreThread({{$item.id}});" class="btn-link {{$item.ignore.classdo}}" title="{{$item.ignore.do}}"><i class="fa fa-eye-slash" aria-hidden="true"></i> {{$item.ignore.do}}</a>
|
2020-02-09 22:47:41 +00:00
|
|
|
</li>
|
|
|
|
<li role="menuitem">
|
2021-01-30 21:22:53 +00:00
|
|
|
<a id="unignore-{{$item.id}}" href="javascript:doIgnoreThread({{$item.id}});" class="btn-link {{$item.ignore.classundo}}" title="{{$item.ignore.undo}}"><i class="fa fa-eye" aria-hidden="true"></i> {{$item.ignore.undo}}</a>
|
2020-02-09 22:47:41 +00:00
|
|
|
</li>
|
|
|
|
{{/if}}
|
2020-02-06 22:06:24 +00:00
|
|
|
|
2022-02-20 06:57:04 +00:00
|
|
|
{{if $item.drop && $item.drop.dropping}}
|
2020-02-06 22:06:24 +00:00
|
|
|
<li role="menuitem">
|
2020-02-09 22:47:41 +00:00
|
|
|
<a class="btn-link navicon delete" href="javascript:dropItem('item/drop/{{$item.id}}/{{$item.return}}', 'item-{{$item.guid}}');" title="{{$item.drop.delete}}"><i class="fa fa-trash" aria-hidden="true"></i> {{$item.drop.delete}}</a>
|
2020-02-06 22:06:24 +00:00
|
|
|
</li>
|
2020-02-09 22:47:41 +00:00
|
|
|
{{/if}}
|
2021-01-20 23:44:30 +00:00
|
|
|
|
|
|
|
{{if $item.block}}
|
|
|
|
<li role="menuitem">
|
|
|
|
<a class="btn-link navicon block" href="javascript:blockAuthor('item/block/{{$item.id}}/{{$item.return}}', 'item-{{$item.guid}}');" title="{{$item.block.block}}"><i class="fa fa-ban" aria-hidden="true"></i> {{$item.block.block}}</a>
|
|
|
|
</li>
|
|
|
|
{{/if}}
|
2020-02-09 22:47:41 +00:00
|
|
|
</ul>
|
|
|
|
<img id="like-rotator-{{$item.id}}" class="like-rotator" src="images/rotator.gif" alt="{{$item.wait}}" title="{{$item.wait}}" style="display: none;" />
|
2020-02-06 22:06:24 +00:00
|
|
|
</span>
|
2020-02-09 22:47:41 +00:00
|
|
|
{{else}}
|
2018-12-14 03:28:12 +00:00
|
|
|
<img id="like-rotator-{{$item.id}}" class="like-rotator" src="images/rotator.gif" alt="{{$item.wait}}" title="{{$item.wait}}" style="display: none;" />
|
2020-02-09 22:47:41 +00:00
|
|
|
{{/if}}
|
|
|
|
|
2019-02-15 03:28:38 +00:00
|
|
|
</span>
|
2016-03-28 14:29:05 +00:00
|
|
|
|
2020-02-13 02:26:49 +00:00
|
|
|
<span class="wall-item-actions-right hidden-xs">
|
2016-03-28 14:29:05 +00:00
|
|
|
{{* Event attendance buttons *}}
|
2019-02-15 03:28:38 +00:00
|
|
|
{{if $item.isevent}}
|
|
|
|
<span class="vote-event">
|
2021-01-30 21:42:34 +00:00
|
|
|
<button type="button" class="btn btn-xs btn-default button-event{{if $item.responses.attendyes.self}} active" aria-pressed="true{{/if}}" id="attendyes-{{$item.id}}" title="{{$item.attend.0}}" onclick="doActivityItemAction({{$item.id}}, 'attendyes'{{if $item.responses.attendyes.self}}, true{{/if}});"><i class="fa fa-check" aria-hidden="true"><span class="sr-only">{{$item.attend.0}}</span></i></button>
|
|
|
|
<button type="button" class="btn btn-xs btn-default button-event{{if $item.responses.attendno.self}} active" aria-pressed="true{{/if}}" id="attendno-{{$item.id}}" title="{{$item.attend.1}}" onclick="doActivityItemAction({{$item.id}}, 'attendno'{{if $item.responses.attendno.self}}, true{{/if}});"><i class="fa fa-times" aria-hidden="true"><span class="sr-only">{{$item.attend.1}}</span></i></button>
|
|
|
|
<button type="button" class="btn btn-xs btn-default button-event{{if $item.responses.attendmaybe.self}} active" aria-pressed="true{{/if}}" id="attendmaybe-{{$item.id}}" title="{{$item.attend.2}}" onclick="doActivityItemAction({{$item.id}}, 'attendmaybe'{{if $item.responses.attendmaybe.self}}, true{{/if}});"><i class="fa fa-question" aria-hidden="true"><span class="sr-only">{{$item.attend.2}}</span></i></button>
|
2019-02-15 03:28:38 +00:00
|
|
|
</span>
|
|
|
|
{{/if}}
|
2016-03-28 14:29:05 +00:00
|
|
|
|
2019-02-15 03:28:38 +00:00
|
|
|
<span class="pull-right checkbox">
|
2022-02-20 06:57:04 +00:00
|
|
|
{{if $item.drop && $item.drop.pagedrop}}
|
2018-12-14 03:28:12 +00:00
|
|
|
<input type="checkbox" title="{{$item.drop.select}}" name="itemselected[]" id="checkbox-{{$item.id}}" class="item-select" value="{{$item.id}}" />
|
2016-03-28 14:29:05 +00:00
|
|
|
<label for="checkbox-{{$item.id}}"></label>
|
2019-02-15 03:28:38 +00:00
|
|
|
{{/if}}
|
|
|
|
</span>
|
|
|
|
</span>
|
2020-02-13 02:26:49 +00:00
|
|
|
|
|
|
|
<div class="btn-toolbar visible-xs" role="toolbar">
|
|
|
|
{{* Buttons for like and dislike *}}
|
|
|
|
{{if $item.vote}}
|
|
|
|
<div class="btn-group" role="group">
|
|
|
|
{{if $item.vote.like}}
|
2021-01-30 21:42:34 +00:00
|
|
|
<button type="button" class="btn btn-sm button-likes{{if $item.responses.like.self}} active" aria-pressed="true{{/if}}" id="like-{{$item.id}}" title="{{$item.vote.like.0}}" onclick="doActivityItemAction({{$item.id}}, 'like'{{if $item.responses.like.self}}, true{{/if}});" data-toggle="button"><i class="fa fa-thumbs-up" aria-hidden="true"></i></button>
|
2020-02-13 02:26:49 +00:00
|
|
|
{{/if}}
|
|
|
|
{{if $item.vote.dislike}}
|
2021-01-30 21:42:34 +00:00
|
|
|
<button type="button" class="btn btn-sm button-likes{{if $item.responses.dislike.self}} active" aria-pressed="true{{/if}}" id="dislike-{{$item.id}}" title="{{$item.vote.dislike.0}}" onclick="doActivityItemAction({{$item.id}}, 'dislike'{{if $item.responses.dislike.self}}, true{{/if}});" data-toggle="button"><i class="fa fa-thumbs-down" aria-hidden="true"></i></button>
|
2020-02-13 02:26:49 +00:00
|
|
|
{{/if}}
|
|
|
|
</div>
|
|
|
|
{{/if}}
|
|
|
|
|
|
|
|
{{* Button to open the comment text field *}}
|
2020-09-13 23:43:42 +00:00
|
|
|
{{if $item.comment_html}}
|
2020-02-13 02:26:49 +00:00
|
|
|
<div class="btn-group" role="group">
|
|
|
|
<button type="button" class="btn btn-sm button-comments" id="comment-{{$item.id}}" title="{{$item.switchcomment}}" {{if $item.thread_level != 1}}onclick="openClose('item-comments-{{$item.id}}'); commentExpand({{$item.id}});" {{else}} onclick="openClose('item-comments-{{$item.id}}'); commentExpand({{$item.id}});"{{/if}}><i class="fa fa-commenting" aria-hidden="true"></i></button>
|
|
|
|
</div>
|
|
|
|
{{/if}}
|
|
|
|
|
2021-01-07 15:13:40 +00:00
|
|
|
{{if $item.vote.announce OR $item.vote.share}}
|
|
|
|
<div class="share-links btn-group{{if $item.thread_level > 1}} dropup{{/if}}">
|
|
|
|
<button type="button" class="btn btn-sm dropdown-toggle{{if $item.responses.announce.self}} active{{/if}}" data-toggle="dropdown" id="shareMenuOptions-{{$item.id}}" aria-haspopup="true" aria-expanded="false" title="{{$item.menu}}">
|
|
|
|
<i class="fa fa-share" aria-hidden="true"></i>
|
|
|
|
</button>
|
|
|
|
<ul class="dropdown-menu dropdown-menu-left" role="menu" aria-labelledby="shareMenuOptions-{{$item.id}}">
|
|
|
|
{{if $item.vote.announce}} {{* edit the posting *}}
|
|
|
|
<li role="menuitem">
|
|
|
|
{{if $item.responses.announce.self}}
|
2021-01-30 21:42:34 +00:00
|
|
|
<a class="btn-link" id="announce-{{$item.id}}" href="javascript:doActivityItemAction({{$item.id}}, 'announce', true);" title="{{$item.vote.unannounce.0}}">
|
2021-01-07 15:13:40 +00:00
|
|
|
<i class="fa fa-ban" aria-hidden="true"></i> {{$item.vote.unannounce.1}}
|
|
|
|
</a>
|
|
|
|
{{else}}
|
2021-01-30 21:42:34 +00:00
|
|
|
<a class="btn-link" id="announce-{{$item.id}}" href="javascript:doActivityItemAction({{$item.id}}, 'announce');" title="{{$item.vote.announce.0}}">
|
2021-01-07 15:13:40 +00:00
|
|
|
<i class="fa fa-retweet" aria-hidden="true"></i> {{$item.vote.announce.1}}
|
|
|
|
</a>
|
|
|
|
{{/if}}
|
|
|
|
</li>
|
|
|
|
{{/if}}
|
|
|
|
{{if $item.vote.share}}
|
|
|
|
<li role="menuitem">
|
|
|
|
<a class="btn-link" id="share-{{$item.id}}" href="javascript:jotShare({{$item.id}});" title="{{$item.vote.share.0}}">
|
|
|
|
<i class="fa fa-share" aria-hidden="true"></i> {{$item.vote.share.1}}
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
{{/if}}
|
|
|
|
</ul>
|
2020-02-13 02:26:49 +00:00
|
|
|
</div>
|
|
|
|
{{/if}}
|
|
|
|
|
2022-04-19 21:04:55 +00:00
|
|
|
{{if $item.browsershare}}
|
|
|
|
<button type="button" class="btn btn-sm button-browser-share" onclick="navigator.share({url: '{{$item.plink.orig}}'})" title="{{$item.browsershare.1}}"><i class="fa fa-share-alt"></i></button>
|
2022-01-09 15:15:04 +00:00
|
|
|
{{/if}}
|
|
|
|
|
2020-02-13 02:26:49 +00:00
|
|
|
{{* Put additional actions in a dropdown menu *}}
|
|
|
|
<div class="btn-group" role="group">
|
|
|
|
<img id="like-rotator-{{$item.id}}" class="like-rotator" src="images/rotator.gif" alt="{{$item.wait}}" title="{{$item.wait}}" style="display: none;" />
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="wall-item-actions-right visible-xs">
|
|
|
|
{{* Event attendance buttons *}}
|
|
|
|
{{if $item.isevent}}
|
|
|
|
<div class="btn-group" role="group">
|
2021-01-30 21:42:34 +00:00
|
|
|
<button type="button" class="btn btn-sm btn-default button-event{{if $item.responses.attendyes.self}} active" aria-pressed="true{{/if}}" id="attendyes-{{$item.id}}" title="{{$item.attend.0}}" onclick="doActivityItemAction({{$item.id}}, 'attendyes'{{if $item.responses.attendyes.self}}, true{{/if}});"><i class="fa fa-check" aria-hidden="true"><span class="sr-only">{{$item.attend.0}}</span></i></button>
|
|
|
|
<button type="button" class="btn btn-sm btn-default button-event{{if $item.responses.attendno.self}} active" aria-pressed="true{{/if}}" id="attendno-{{$item.id}}" title="{{$item.attend.1}}" onclick="doActivityItemAction({{$item.id}}, 'attendno'{{if $item.responses.attendno.self}}, true{{/if}});"><i class="fa fa-times" aria-hidden="true"><span class="sr-only">{{$item.attend.1}}</span></i></button>
|
|
|
|
<button type="button" class="btn btn-sm btn-default button-event{{if $item.responses.attendmaybe.self}} active" aria-pressed="true{{/if}}" id="attendmaybe-{{$item.id}}" title="{{$item.attend.2}}" onclick="doActivityItemAction({{$item.id}}, 'attendmaybe'{{if $item.responses.attendmaybe.self}}, true{{/if}});"><i class="fa fa-question" aria-hidden="true"><span class="sr-only">{{$item.attend.2}}</span></i></button>
|
2020-02-13 02:26:49 +00:00
|
|
|
</div>
|
|
|
|
{{/if}}
|
|
|
|
|
2022-02-20 06:57:04 +00:00
|
|
|
{{if $item.edpost || $item.tagger || $item.filer || $item.pin || $item.star || $item.follow_thread || $item.ignore || ($item.drop && $item.drop.dropping)}}
|
2020-02-13 02:26:49 +00:00
|
|
|
<div class="more-links btn-group{{if $item.thread_level > 1}} dropup{{/if}}">
|
|
|
|
<button type="button" class="btn btn-sm dropdown-toggle" data-toggle="dropdown" id="dropdownMenuOptions-{{$item.id}}" aria-haspopup="true" aria-expanded="false" title="{{$item.menu}}"><i class="fa fa-ellipsis-h" aria-hidden="true"></i></button>
|
|
|
|
<ul class="dropdown-menu dropdown-menu-right" role="menu" aria-labelledby="dropdownMenuOptions-{{$item.id}}">
|
|
|
|
{{if $item.edpost}} {{* edit the posting *}}
|
|
|
|
<li role="menuitem">
|
|
|
|
<a href="javascript:editpost('{{$item.edpost.0}}?mode=none');" title="{{$item.edpost.1}}" class="btn-link navicon pencil"><i class="fa fa-pencil" aria-hidden="true"></i> {{$item.edpost.1}}</a>
|
|
|
|
</li>
|
|
|
|
{{/if}}
|
|
|
|
|
|
|
|
{{if $item.tagger}} {{* tag the post *}}
|
|
|
|
<li role="menuitem">
|
|
|
|
<a id="tagger-{{$item.id}}" href="javascript:itemTag({{$item.id}});" class="btn-link {{$item.tagger.class}}" title="{{$item.tagger.add}}"><i class="fa fa-tag" aria-hidden="true"></i> {{$item.tagger.add}}</a>
|
|
|
|
</li>
|
|
|
|
{{/if}}
|
|
|
|
|
|
|
|
{{if $item.filer}}
|
|
|
|
<li role="menuitem">
|
|
|
|
<a id="filer-{{$item.id}}" href="javascript:itemFiler({{$item.id}});" class="btn-link filer-item filer-icon" title="{{$item.filer}}"><i class="fa fa-folder" aria-hidden="true"></i> {{$item.filer}}</a>
|
|
|
|
</li>
|
|
|
|
{{/if}}
|
|
|
|
|
|
|
|
{{if $item.pin}}
|
|
|
|
<li role="menuitem">
|
2021-01-30 23:05:40 +00:00
|
|
|
<a id="pin-{{$item.id}}" href="javascript:doPin({{$item.id}});" class="btn-link {{$item.pin.classdo}}" title="{{$item.pin.do}}"><i class="fa fa-circle-o" aria-hidden="true"></i> {{$item.pin.do}}</a>
|
|
|
|
<a id="unpin-{{$item.id}}" href="javascript:doPin({{$item.id}});" class="btn-link {{$item.pin.classundo}}" title="{{$item.pin.undo}}"><i class="fa fa-dot-circle-o" aria-hidden="true"></i> {{$item.pin.undo}}</a>
|
2020-02-13 02:26:49 +00:00
|
|
|
</li>
|
|
|
|
{{/if}}
|
|
|
|
|
|
|
|
{{if $item.star}}
|
|
|
|
<li role="menuitem">
|
2021-01-30 22:51:27 +00:00
|
|
|
<a id="star-{{$item.id}}" href="javascript:doStar({{$item.id}});" class="btn-link {{$item.star.classdo}}" title="{{$item.star.do}}"><i class="fa fa-star-o" aria-hidden="true"></i> {{$item.star.do}}</a>
|
|
|
|
<a id="unstar-{{$item.id}}" href="javascript:doStar({{$item.id}});" class="btn-link {{$item.star.classundo}}" title="{{$item.star.undo}}"><i class="fa fa-star" aria-hidden="true"></i> {{$item.star.undo}}</a>
|
2020-02-13 02:26:49 +00:00
|
|
|
</li>
|
|
|
|
{{/if}}
|
|
|
|
|
2021-01-30 20:51:27 +00:00
|
|
|
{{if $item.follow_thread}}
|
2020-02-13 02:26:49 +00:00
|
|
|
<li role="menuitem">
|
2021-01-30 20:51:27 +00:00
|
|
|
<a id="follow_thread-{{$item.id}}" href="javascript:{{$item.follow_thread.action}}" class="btn-link" title="{{$item.follow_thread.title}}"><i class="fa fa-plus" aria-hidden="true"></i> {{$item.follow_thread.title}}</a>
|
2020-02-13 02:26:49 +00:00
|
|
|
</li>
|
|
|
|
{{/if}}
|
|
|
|
|
2022-04-19 21:04:55 +00:00
|
|
|
{{if $item.language}}
|
|
|
|
<li role="menuitem">
|
|
|
|
<a id="language-{{$item.id}}" href="javascript:alert('{{$item.language.1}}');" class="btn-link filer-item language-icon" title="{{$item.language.0}}"><i class="fa fa-language" aria-hidden="true"></i> {{$item.language.0}}</a>
|
|
|
|
</li>
|
|
|
|
{{/if}}
|
|
|
|
|
2022-02-20 06:57:04 +00:00
|
|
|
{{if $item.ignore || ($item.drop && $item.drop.dropping)}}
|
2020-02-13 02:26:49 +00:00
|
|
|
<li role="separator" class="divider"></li>
|
|
|
|
{{/if}}
|
|
|
|
|
|
|
|
{{if $item.ignore}}
|
|
|
|
<li role="menuitem">
|
2021-01-30 21:22:53 +00:00
|
|
|
<a id="ignore-{{$item.id}}" href="javascript:doIgnoreThread({{$item.id}});" class="btn-link {{$item.ignore.classdo}}" title="{{$item.ignore.do}}"><i class="fa fa-eye-slash" aria-hidden="true"></i> {{$item.ignore.do}}</a>
|
2020-02-13 02:26:49 +00:00
|
|
|
</li>
|
|
|
|
<li role="menuitem">
|
2021-01-30 21:22:53 +00:00
|
|
|
<a id="unignore-{{$item.id}}" href="javascript:doIgnoreThread({{$item.id}});" class="btn-link {{$item.ignore.classundo}}" title="{{$item.ignore.undo}}"><i class="fa fa-eye" aria-hidden="true"></i> {{$item.ignore.undo}}</a>
|
2020-02-13 02:26:49 +00:00
|
|
|
</li>
|
|
|
|
{{/if}}
|
|
|
|
|
2022-02-20 06:57:04 +00:00
|
|
|
{{if $item.drop && $item.drop.dropping}}
|
2020-02-13 02:26:49 +00:00
|
|
|
<li role="menuitem">
|
|
|
|
<a class="btn-link navicon delete" href="javascript:dropItem('item/drop/{{$item.id}}/{{$item.return}}', 'item-{{$item.guid}}');" title="{{$item.drop.delete}}"><i class="fa fa-trash" aria-hidden="true"></i> {{$item.drop.delete}}</a>
|
|
|
|
</li>
|
|
|
|
{{/if}}
|
|
|
|
</ul>
|
|
|
|
<img id="like-rotator-{{$item.id}}" class="like-rotator" src="images/rotator.gif" alt="{{$item.wait}}" title="{{$item.wait}}" style="display: none;" />
|
|
|
|
</div>
|
|
|
|
{{/if}}
|
|
|
|
<span class="pull-right checkbox">
|
2022-02-20 06:57:04 +00:00
|
|
|
{{if $item.drop && $item.drop.pagedrop}}
|
2020-02-13 02:26:49 +00:00
|
|
|
<input type="checkbox" title="{{$item.drop.select}}" name="itemselected[]" id="checkbox-{{$item.id}}" class="item-select" value="{{$item.id}}" />
|
|
|
|
<label for="checkbox-{{$item.id}}"></label>
|
|
|
|
{{/if}}
|
|
|
|
</span>
|
|
|
|
</div>
|
2020-02-06 22:06:24 +00:00
|
|
|
</div><!--./wall-item-actions-->
|
2016-03-28 14:29:05 +00:00
|
|
|
|
|
|
|
<div class="wall-item-links"></div>
|
|
|
|
|
|
|
|
{{* Display likes, dislike and attendance stats *}}
|
2020-09-03 14:45:57 +00:00
|
|
|
{{if $item.responses}}
|
|
|
|
<div class="wall-item-responses">
|
|
|
|
{{foreach $item.responses as $verb=>$response}}
|
|
|
|
<div class="wall-item-{{$verb}}" id="wall-item-{{$verb}}-{{$item.id}}">{{$response.output nofilter}}</div>
|
|
|
|
{{/foreach}}
|
|
|
|
</div>
|
|
|
|
{{/if}}
|
2016-03-28 14:29:05 +00:00
|
|
|
|
2019-02-15 03:28:38 +00:00
|
|
|
{{* Insert comment box of threaded children *}}
|
2020-09-13 23:43:42 +00:00
|
|
|
{{if $item.threaded && $item.comment_html && $item.indent==comment}}
|
2019-02-15 03:28:38 +00:00
|
|
|
<div class="wall-item-comment-wrapper" id="item-comments-{{$item.id}}" data-display="block" style="display: none;">
|
2020-09-13 23:43:42 +00:00
|
|
|
{{$item.comment_html nofilter}}
|
2019-02-15 03:28:38 +00:00
|
|
|
</div>
|
|
|
|
{{/if}}
|
|
|
|
|
2016-03-28 14:29:05 +00:00
|
|
|
{{if $item.thread_level!=1}}
|
|
|
|
</div><!--./media-body from for comments-->
|
|
|
|
{{/if}}
|
2019-07-16 02:46:22 +00:00
|
|
|
</div>
|
|
|
|
{{foreach $item.children as $child}}
|
|
|
|
{{include file="{{$item.template}}" item=$child}}
|
|
|
|
{{/foreach}}
|
|
|
|
|
|
|
|
{{* Insert the comment box of the top level post at the bottom of the thread.
|
|
|
|
Display this comment box if there are any comments. If not hide it. In this
|
|
|
|
case it could be opend with the "comment" button *}}
|
2020-09-13 23:43:42 +00:00
|
|
|
{{if $item.comment_html && $item.thread_level==1}}
|
2019-07-16 02:46:22 +00:00
|
|
|
{{if $item.total_comments_num}}
|
|
|
|
<div class="comment-fake-form" id="comment-fake-form-{{$item.id}}">
|
|
|
|
<textarea id="comment-fake-text-{{$item.id}}" class="comment-fake-text-empty form-control" placeholder="{{$item.reply_label}}" onFocus="commentOpenUI(this, {{$item.id}});" rows="1"></textarea>
|
|
|
|
</div>
|
2016-03-28 14:29:05 +00:00
|
|
|
{{/if}}
|
2020-09-13 23:43:42 +00:00
|
|
|
<div class="wall-item-comment-wrapper well well-small" id="item-comments-{{$item.id}}" data-display="block" style="display: none">{{$item.comment_html nofilter}}</div>
|
2019-07-16 02:46:22 +00:00
|
|
|
{{/if}}
|
2016-03-28 14:29:05 +00:00
|
|
|
</div><!-- ./panel-body or ./wall-item-container -->
|
|
|
|
|
|
|
|
{{if $mode == display}}
|
|
|
|
{{else}}
|
|
|
|
{{if $item.comment_lastcollapsed}}</div>{{/if}}
|
|
|
|
{{/if}}
|
|
|
|
|
|
|
|
{{* close the comment-container div if no more thread_level = 2 children are left *}}
|
|
|
|
{{if $item.thread_level==2 && $top_child_nr==$top_child_total}}
|
|
|
|
</div><!--./comment-container-->
|
|
|
|
{{/if}}
|