openvk/Web/Presenters/templates/Wall/Feed.xml

58 lines
1.8 KiB
XML
Raw Normal View History

2020-06-07 19:04:43 +03:00
{extends "../@layout.xml"}
{block title}{_"feed"}{/block}
{block header}
{_"feed"}
2020-06-11 12:51:12 +03:00
<div style="float: right;">
2020-06-11 12:51:12 +03:00
<span>
<b>
{if !isset($globalFeed)}
<a href="/feed/all">{_"all_news"}</a>
{else}
<a href="/feed">{_"my_feed"}</a>
{/if}
2020-06-11 12:51:12 +03:00
</b>
</span>
</div>
2020-06-07 19:04:43 +03:00
{/block}
{block content}
<div class="postFeedWrapper">
{include "../components/textArea.xml", route => "/wall" . $thisUser->getId() . "/makePost"}
2020-06-07 19:04:43 +03:00
</div>
<br/>
<center>
{foreach $posts as $post}
<a name="postGarter={$post->getId()}"></a>
{include "../components/post.xml", post => $post, onWallOf => true, commentSection => true}
2020-06-07 19:04:43 +03:00
{/foreach}
{include "../components/paginator.xml", conf => $paginatorConf}
<br/>
{_"posts_per_page"}:
2020-06-07 19:04:43 +03:00
<select id="pageSelect">
<option value="1">1</option>
<option value="5">5</option>
<option value="10">10</option>
<option value="20">20</option>
<option value="30">30</option>
<option value="40">40</option>
<option value="50">50</option>
</select>
<script>
u("#pageSelect").nodes[0].value = {$paginatorConf->perPage};
u("#pageSelect").on("change", function(e) {
let url = "?" + {http_build_query(array_merge($_GET, ['posts' => '__padding']))};
window.location.assign(url.replace("__padding", e.target.value));
});
</script>
</center>
2021-12-24 17:58:04 +03:00
{if isset($thisUser) && $thisUser->hasMicroblogEnabled()}
{script "js/al_comments.js"}
{/if}
{/block}