diff options
| author | 2022-07-17 22:54:24 +0200 | |
|---|---|---|
| committer | 2022-07-17 22:54:24 +0200 | |
| commit | b2e46d62154faf28c3c17e2b775c47d11e38ee56 (patch) | |
| tree | 69df7287cdc30cee103cdeed43f5a43bbfb086af /app/views/index/normal.phtml | |
| parent | 954fcef9e26ce1d9e4e5ad83749e4ee9c894f716 (diff) | |
Improved: Article header (#4101)
* First draft for normal view
* Revert changes on the entry header
* Update normal.phtml
* Update normal.phtml
* RTL CSS
* CSS fixes
* Better tags style
* fix
* Update swage.scss
* fix
* Update swage.scss
* fixed .content header
* font-size in rem
* improved template
* dropdown menu if more than 7 tags
* configuration: show tags in topline
* Simplify loop logic
* Minor space
* config tags via reading (i18n still missed)
* fixed the whitespaces
* optimizations
* optimize header+footer
* Update normal.phtml
* fix css
* new config: show author+date in footer
* config feed name display
* improve HTML
* fix whitespaces
* i18n
* i18n: German translations
* fix i18n German
* fixed: uncouple from bottomline config
* reverted: tobline_tags
* equalities
* fixed: author in footer
* fixed data-leave-validation
* improved max numbers i18n label
* Config works now also in the reader view
* fix: footer border
* reader view: style article-header-topline
* fixed whitespace
* i18n fr
* Minor i18n fr
* Fix mistake i18n fr
* i18n fr more precise expression
* Fix JavaScript
* removed the link icon in the title
* clean CSS
Co-authored-by: Alexandre Alapetite <alexandre@alapetite.fr>
Diffstat (limited to 'app/views/index/normal.phtml')
| -rw-r--r-- | app/views/index/normal.phtml | 185 |
1 files changed, 155 insertions, 30 deletions
diff --git a/app/views/index/normal.phtml b/app/views/index/normal.phtml index da2388e8f..179c0f86d 100644 --- a/app/views/index/normal.phtml +++ b/app/views/index/normal.phtml @@ -13,6 +13,7 @@ $display_others = true; $hidePosts = !FreshRSS_Context::$user_conf->display_posts; $lazyload = FreshRSS_Context::$user_conf->lazyload; $content_width = FreshRSS_Context::$user_conf->content_width; +$MAX_TAGS_DISPLAYED = FreshRSS_Context::$user_conf->show_tags_max; $today = @strtotime('today'); ?> @@ -72,44 +73,168 @@ $today = @strtotime('today'); ?>" id="flux_<?= $this->entry->id() ?>" data-feed="<?= $this->feed->id() ?>"><?php - $this->renderHelper('index/normal/entry_header'); - ?><div class="flux_content" dir="auto"> + $tags = null; + $firstTags = array(); + $remainingTags = array(); + + if (FreshRSS_Context::$user_conf->show_tags === 'h' || FreshRSS_Context::$user_conf->show_tags === 'f' || FreshRSS_Context::$user_conf->show_tags === 'b') { + $tags = $this->entry->tags(); + if (!empty($tags)) { + if ($MAX_TAGS_DISPLAYED > 0) { + $firstTags = array_slice($tags, 0, $MAX_TAGS_DISPLAYED); + $remainingTags = array_slice($tags, $MAX_TAGS_DISPLAYED); + } else { + $firstTags = $tags; + } + } + } + ?><article class="flux_content" dir="auto"> <div class="content <?= $content_width ?>"> - <h1 class="title"><a target="_blank" rel="noreferrer" class="go_website" href="<?= $this->entry->link() ?>"><?= $this->entry->title() ?></a></h1> - <div class="subtitle"> - <div class="website"><a href="<?= _url('index', 'index', 'get', 'f_' . $this->feed->id()) ?>" title="<?= _t('gen.action.filter') ?>: <?= $this->feed->name() ?>"> - <?php if (FreshRSS_Context::$user_conf->show_favicons): ?> - <img class="favicon" src="<?= $this->feed->favicon() ?>" alt="✇" loading="lazy" /> - <?php endif; ?> - <span><?= $this->feed->name() ?></span></a> - </div> - <div class="date"><?= $this->entry->date() ?></div> - <?php + <header> + <?php if (FreshRSS_Context::$user_conf->show_feed_name === 't') { ?> + <div class="website"><a href="<?= _url('index', 'index', 'get', 'f_' . $this->feed->id()) ?>" title="<?= _t('gen.action.filter') ?>"> + <?php if (FreshRSS_Context::$user_conf->show_favicons): ?> + <img class="favicon" src="<?= $this->feed->favicon() ?>" alt="✇" loading="lazy" /><?php + endif; ?><span><?= $this->feed->name() ?></span></a> + </div> + <?php } ?> + <?php if (FreshRSS_Context::$user_conf->show_tags === 'h' || FreshRSS_Context::$user_conf->show_tags === 'b') { ?> + <div class="tags"> + <?php + if (!empty($tags)) { + ?><?= _i('tag') ?><ul class="list-tags"><?php + foreach ($firstTags as $tag) { + ?><li class="item tag"><a class="link-tag" href="<?= _url('index', 'index', 'search', '#' . str_replace(' ', '+', htmlspecialchars_decode($tag, ENT_QUOTES))) ?>" title="<?= _t('gen.action.filter') ?>">#<?= $tag ?></a></li><?php + } + + if (!empty($remainingTags)) { // more than 7 tags: show dropdown menu ?> + <li class="item tag"> + <div class="dropdown"> + <div id="dropdown-tags2-<?= $this->entry->id() ?>" class="dropdown-target"></div> + <a class="dropdown-toggle" href="#dropdown-tags2-<?= $this->entry->id() ?>"><?= _i('down') ?></a> + <ul class="dropdown-menu"> + <li class="dropdown-header"><?= _t('index.tag.related') ?></li> + <?php + foreach ($remainingTags as $tag) { + ?><li class="item"><a href="<?= _url('index', 'index', 'search', '#' . str_replace(' ', '+', htmlspecialchars_decode($tag, ENT_QUOTES))) ?>" title="<?= _t('gen.action.filter') ?>"><?= $tag ?></a></li><?php + } ?> + </ul> + <a class="dropdown-close" href="#close">❌</a> + </div> + </li> + <?php + } ?> + </ul><?php + } ?> + </div> + <?php + } ?> + <h1 class="title"><a target="_blank" rel="noreferrer" class="go_website" href="<?= $this->entry->link() ?>" title="<?= _t('conf.shortcut.see_on_website')?>"><?= $this->entry->title() ?></a></h1> + <?php if (FreshRSS_Context::$user_conf->show_author_date === 'h' || FreshRSS_Context::$user_conf->show_author_date === 'b') { ?> + <div class="subtitle"> + <?php if (FreshRSS_Context::$user_conf->show_feed_name === 'a') { ?> + <div class="website"><a href="<?= _url('index', 'index', 'get', 'f_' . $this->feed->id()) ?>" title="<?= _t('gen.action.filter') ?>"> + <?php if (FreshRSS_Context::$user_conf->show_favicons): ?> + <img class="favicon" src="<?= $this->feed->favicon() ?>" alt="✇" loading="lazy" /><?php + endif; ?><span><?= $this->feed->name() ?></span></a> + </div> + <?php + } + $authors = $this->entry->authors(); - if (!empty($authors) && is_array($authors)): - $first = true; - ?> - <div class="author"><?php - foreach ($authors as $author): - echo $first ? _t('gen.short.by_author') . ' ' : '· '; - $first = false; - ?> - <em><a href="<?= Minz_Url::display(Minz_Request::modifiedCurrentRequest( - ['search' => 'author:"' . htmlspecialchars_decode($author, ENT_QUOTES) . '"']) - ) ?>"><?= $author ?></a></em> - <?php endforeach; ?> - </div><?php endif; ?> - </div> + if (!empty($authors) && is_array($authors)) { + ?> + <div class="author"> + <?= _t('gen.short.by_author') ?> + <?php + foreach ($authors as $author) { + $href = Minz_Url::display(Minz_Request::modifiedCurrentRequest(['search' => 'author:"' . htmlspecialchars_decode($author, ENT_QUOTES) . '"'])); + ?> + <a href="<?= $href ?>" title="<?= _t('gen.action.filter') ?>"><?= $author ?></a> + <?php } ?> + </div> + <?php } ?> + <div class="date"><?= $this->entry->date() ?></div> + </div> + <?php } ?> + </header> <div class="text"><?php echo $lazyload && $hidePosts ? lazyimg($this->entry->content()) : $this->entry->content(); ?></div> - </div><?php + <?php + $display_authors_date = FreshRSS_Context::$user_conf->show_author_date === 'f' || FreshRSS_Context::$user_conf->show_author_date === 'b'; + $display_tags = FreshRSS_Context::$user_conf->show_tags === 'f' || FreshRSS_Context::$user_conf->show_tags === 'b'; - $this->renderHelper('index/normal/entry_bottom'); - - ?></div> + if ($display_authors_date || $display_tags) { + ?> + <footer> + <?php + if ($display_authors_date) { ?> + <div class="subtitle"> + <?php if (FreshRSS_Context::$user_conf->show_feed_name === 'a') { ?> + <div class="website"><a href="<?= _url('index', 'index', 'get', 'f_' . $this->feed->id()) ?>" title="<?= _t('gen.action.filter') ?>"> + <?php if (FreshRSS_Context::$user_conf->show_favicons): ?> + <img class="favicon" src="<?= $this->feed->favicon() ?>" alt="✇" loading="lazy" /><?php + endif; ?><span><?= $this->feed->name() ?></span></a> + </div> + <?php + } + $authors = $this->entry->authors(); + if (!empty($authors) && is_array($authors)) { + ?> + <div class="author"> + <?= _t('gen.short.by_author') ?> + <?php + foreach ($authors as $author) { + $href = Minz_Url::display(Minz_Request::modifiedCurrentRequest(['search' => 'author:"' . htmlspecialchars_decode($author, ENT_QUOTES) . '"'])); + ?> + <a href="<?= $href ?>" title="<?= _t('gen.action.filter') ?>"><?= $author ?></a> + <?php } ?> + </div> + <?php } ?> + <div class="date"><?= $this->entry->date() ?></div> + </div> + <?php + } + if ($display_tags) { ?> + <div class="tags"> + <?php + if (!empty($tags)) { + ?><?= _i('tag') ?><ul class="list-tags"><?php + foreach ($firstTags as $tag) { + ?><li class="item tag"><a class="link-tag" href="<?= _url('index', 'index', 'search', '#' . str_replace(' ', '+', htmlspecialchars_decode($tag, ENT_QUOTES))) ?>" title="<?= _t('gen.action.filter') ?>">#<?= $tag ?></a></li><?php + } + if (!empty($remainingTags)) { ?> + <li class="item tag"> + <div class="dropdown"> + <div id="dropdown-tags3-<?= $this->entry->id() ?>" class="dropdown-target"></div> + <a class="dropdown-toggle" href="#dropdown-tags3-<?= $this->entry->id() ?>"><?= _i('down') ?></a> + <ul class="dropdown-menu"> + <li class="dropdown-header"><?= _t('index.tag.related') ?></li> + <?php + foreach ($remainingTags as $tag) { + ?><li class="item"><a href="<?= _url('index', 'index', 'search', '#' . str_replace(' ', '+', htmlspecialchars_decode($tag, ENT_QUOTES))) ?>" title="<?= _t('gen.action.filter') ?>"><?= $tag ?></a></li><?php + } ?> + </ul> + <a class="dropdown-close" href="#close">❌</a> + </div> + </li> + <?php + } ?> + </ul><?php + } ?> + </div> + <?php + } ?> + </footer> + <?php + } ?> + </div><footer><?php + $this->renderHelper('index/normal/entry_bottom'); + ?> + </footer></article> </div><?php endforeach; |
