[Plugins][Components] Fixed issue where right panel form was rendered multiple times in actors plugin page. Actors page done.
This commit is contained in:
parent
e4b650be46
commit
6c899b7b61
|
@ -57,7 +57,7 @@ class Avatar extends Component
|
||||||
|
|
||||||
public function onStartTwigPopulateVars(array &$vars): bool
|
public function onStartTwigPopulateVars(array &$vars): bool
|
||||||
{
|
{
|
||||||
if (Common::user() != null) {
|
if (Common::user() !== null) {
|
||||||
$vars['user_avatar'] = self::getAvatarUrl();
|
$vars['user_avatar'] = self::getAvatarUrl();
|
||||||
}
|
}
|
||||||
return Event::next;
|
return Event::next;
|
||||||
|
|
|
@ -53,7 +53,7 @@ class Posting extends Component
|
||||||
*/
|
*/
|
||||||
public function onStartTwigPopulateVars(array &$vars): bool
|
public function onStartTwigPopulateVars(array &$vars): bool
|
||||||
{
|
{
|
||||||
if (($user = Common::user()) == null) {
|
if (($user = Common::user()) === null) {
|
||||||
return Event::next;
|
return Event::next;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -21,10 +21,11 @@ namespace Component\Right;
|
||||||
|
|
||||||
use App\Core\Event;
|
use App\Core\Event;
|
||||||
use App\Core\Modules\Component;
|
use App\Core\Modules\Component;
|
||||||
|
use App\Util\Common;
|
||||||
|
|
||||||
class Right extends Component
|
class Right extends Component
|
||||||
{
|
{
|
||||||
public function onEndTwigPopulateVars(array &$vars)
|
public function onStartTwigPopulateVars(array &$vars)
|
||||||
{
|
{
|
||||||
return Event::next;
|
return Event::next;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,19 +1,15 @@
|
||||||
{% extends 'stdgrid.html.twig' %}
|
{% set actor_nickname = actor.nickname() %}
|
||||||
|
{% set actor_tags = actor.getSelfTags() %}
|
||||||
{% set nickname = note.getActorNickname() %}
|
{% set actor_bio = actor.getBio() %}
|
||||||
|
|
||||||
{% block title %}{{ nickname }}'s profile{% endblock %}
|
|
||||||
|
|
||||||
{% block body %}
|
{% block body %}
|
||||||
<section class="section-widget section-widget-padded">
|
<section class='section-widget section-widget-padded' title="{{ 'Your profile information.' | trans }}">
|
||||||
<div class="section-title">
|
<a id="user" href="{{ path('actor_view_nickname', {'nickname' : actor_nickname}) }}">
|
||||||
<img class="icon icon-avatar" src="{{ actor.getAvatarUrl() }}" alt="{{ nickname }}'s avatar">{{ nickname }}
|
<img src='{{ user_avatar }}' class="icon icon-avatar" alt="{{ 'Your account\'s avatar.' | trans }}">
|
||||||
</div>
|
<div class="user-info">
|
||||||
|
<strong id="user-nickname" title="{{ 'Your account\' nickname.' | trans }}">{{ actor_nickname }}</strong>
|
||||||
|
|
||||||
<div class="actor-nickname-and-tags">
|
<nav class="user-tags">
|
||||||
{% set actor_tags = actor.getSelfTags() %}
|
|
||||||
|
|
||||||
<div class="tags">
|
|
||||||
{% if actor_tags %}
|
{% if actor_tags %}
|
||||||
{% for tag in actor_tags %}
|
{% for tag in actor_tags %}
|
||||||
<a href='#'><i> #{{ tag }} </i></a>
|
<a href='#'><i> #{{ tag }} </i></a>
|
||||||
|
@ -21,17 +17,16 @@
|
||||||
{% else %}
|
{% else %}
|
||||||
<i> {{ '(No tags)' | trans }} </i>
|
<i> {{ '(No tags)' | trans }} </i>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</div>
|
</nav>
|
||||||
</div>
|
|
||||||
|
|
||||||
{% set actor_bio = actor.getBio() %}
|
<section class="user-bio">
|
||||||
<div class="actor-bio">
|
|
||||||
{% if actor_bio %}
|
{% if actor_bio %}
|
||||||
<p>{{ actor_bio }}</p>
|
<p>{{ actor_bio }}</p>
|
||||||
{% else %}
|
{% else %}
|
||||||
<p>{{ '(No bio)' | trans }}</p>
|
<p>{{ '(No bio)' | trans }}</p>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
</a>
|
||||||
</section>
|
</section>
|
||||||
{% endblock body %}
|
{% endblock body %}
|
|
@ -4,10 +4,12 @@
|
||||||
|
|
||||||
{% block body %}
|
{% block body %}
|
||||||
<section class="section-widget section-widget-padded">
|
<section class="section-widget section-widget-padded">
|
||||||
<div class="actors">
|
<h2 class="section-title">{{ "Actors" | trans }}</h2>
|
||||||
|
|
||||||
|
<div class="section-widget-padded">
|
||||||
{% if actors is defined and actors is not empty %}
|
{% if actors is defined and actors is not empty %}
|
||||||
{% for actor in actors %}
|
{% for actor in actors %}
|
||||||
{% include 'directory/actor.html.twig' with {'actor': actor, 'have_user': have_user} only %}
|
{% include 'directory/actor.html.twig' %}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
{% else %}
|
{% else %}
|
||||||
<h1>{% trans %}No actors here.{% endtrans %}</h1>
|
<h1>{% trans %}No actors here.{% endtrans %}</h1>
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<a id="anchor-right-panel" class="anchor-hidden" title="{{ 'Press tab to access selected region!' | trans }}"></a>
|
<a id="anchor-right-panel" class="anchor-hidden" title="{{ 'Press tab to access selected region!' | trans }}"></a>
|
||||||
<aside class="panel-content accessibility-target">
|
<aside class="panel-content accessibility-target">
|
||||||
|
|
||||||
{% if post_form is defined %}
|
{% if post_form is defined and not post_form.isRendered() %}
|
||||||
<section class="section-widget" title={{ 'Create a new note.' | trans }}>
|
<section class="section-widget" title={{ 'Create a new note.' | trans }}>
|
||||||
<details class="section-title-details" title={{ 'Expand if you want to access more options.' | trans }}>
|
<details class="section-title-details" title={{ 'Expand if you want to access more options.' | trans }}>
|
||||||
<summary class="section-title-summary">
|
<summary class="section-title-summary">
|
||||||
|
|
Loading…
Reference in New Issue
Block a user