Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions Web/Presenters/WallPresenter.php
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,7 @@ public function renderFeed(): void
foreach ($posts->page((int) ($_GET["p"] ?? 1), $perPage) as $post) {
$this->template->posts[] = $this->posts->get($post->id);
}
$this->template->feedIgnoreButton = true;
}

public function renderGlobalFeed(): void
Expand Down Expand Up @@ -240,6 +241,7 @@ public function renderGlobalFeed(): void
foreach ($posts as $post) {
$this->template->posts[] = $this->posts->get($post->id);
}
$this->template->feedIgnoreButton = true;
}

public function renderHashtagFeed(string $hashtag): void
Expand Down
3 changes: 3 additions & 0 deletions Web/Presenters/templates/components/post/microblogpost.xml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,10 @@
<span n:if="$post->isPinned()" class="nobold">{_pinned}</span>

<a n:if="$canBeDeleted && !($forceNoDeleteLink ?? false) && $compact == false" class="delete" href="/wall{$post->getPrettyId()}/delete"></a>

<a n:if="!$canBeDeleted" class="report" title="{_report}" href="javascript:reportPost({$post->getId()})"></a>

<a n:if="$feedIgnoreButton && !$canBeDeleted" class="delete" id="__ignoreSomeoneFeed" title="{_feed_ignore}" data-val='1' data-id="{$wallOwner->getRealId()}"></a>

{if $canBePinned && !($forceNoPinLink ?? false) && $compact == false}
{if $post->isPinned()}
Expand Down
9 changes: 9 additions & 0 deletions Web/static/css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -918,6 +918,15 @@ h4 {
}
}

.post-hidden {
display: none;
}

.ignore-message {
padding: 5px 0;
}


.small-textarea {
height: 24px;
}
Expand Down
23 changes: 23 additions & 0 deletions Web/static/css/microblog.css
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,16 @@
background-color: rgb(240, 240, 240);
}

.ignore {
float: right;
height: 16px;
width: 16px;
overflow: auto;
background: url("/assets/packages/static/openvk/img/ignore.png") no-repeat 0 0;
opacity: 0.1;
transition-duration: 0.3s;
}

.report {
float: right;
height: 16px;
Expand All @@ -96,6 +106,19 @@
transition-duration: 0.3s;
}

.ignore:hover {
opacity: 0.4;
}

.post-hidden {
display: none;
}

.ignore-message {
padding: 5px 0;
border-bottom: 1px #ddd solid;
}

.report:hover {
opacity: 0.4;
}
Expand Down
5 changes: 5 additions & 0 deletions locales/en.strings
Original file line number Diff line number Diff line change
Expand Up @@ -359,6 +359,11 @@
"subscriptions_one" = "$1 subscription";
"subscriptions_other" = "$1 subscriptions";

"feed_user_ignored" = "User will no longer appear in the feed.";
"feed_club_ignored" = "Club will no longer appear in the feed.";
"feed_unignore" = "Restore.";
"feed_ignore" = "Not interested";

/* Group */

"group" = "Group";
Expand Down
5 changes: 5 additions & 0 deletions locales/ru.strings
Original file line number Diff line number Diff line change
Expand Up @@ -290,6 +290,11 @@
"change_geo_name" = "Изменить название точки";
"change_geo_name_new" = "Новое название";

"feed_user_ignored" = "Пользователь больше не будет появляться в ленте.";
"feed_club_ignored" = "Группа больше не будет появляться в ленте.";
"feed_unignore" = "Вернуть.";
"feed_ignore" = "Не интересно";

/* Friends */

"friends" = "Друзья";
Expand Down
5 changes: 5 additions & 0 deletions locales/uk.strings
Original file line number Diff line number Diff line change
Expand Up @@ -280,6 +280,11 @@
"change_geo_name" = "Змінити назву розташування";
"change_geo_name_new" = "Нова назва";

"feed_user_ignored" = "Користувач більше не з'являтиметься у стрічці.";
"feed_club_ignored" = "Спiльнота більше не з'являтиметься у стрічці.";
"feed_unignore" = "Повернути.";
"feed_ignore" = "Не цікаво";

/* Friends */

"friends" = "Друзі";
Expand Down