aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Marien Fressinaud <dev@marienfressinaud.fr> 2013-10-26 16:45:14 +0200
committerGravatar Marien Fressinaud <dev@marienfressinaud.fr> 2013-10-26 16:45:14 +0200
commit298b5ecf206ff0020d8fed29e9aba4d7b148b080 (patch)
treeab8d6336f546e895743b168c313ea975644b4ef9
parentce1101bf4501141e9c9c86f58623e30cba20ce9f (diff)
parent39f2213e92040d2a8bffc3084f30d868fa7b8882 (diff)
Merge branch 'use_template' of https://github.com/Alkarex/FreshRSS into Alkarex-use_template
-rw-r--r--app/layout/aside_flux.phtml38
-rw-r--r--app/views/javascript/main.phtml14
2 files changed, 32 insertions, 20 deletions
diff --git a/app/layout/aside_flux.phtml b/app/layout/aside_flux.phtml
index 5ac86db96..8928ffca0 100644
--- a/app/layout/aside_flux.phtml
+++ b/app/layout/aside_flux.phtml
@@ -70,29 +70,15 @@
<?php $f_active = false; if ($this->get_f == $feed->id ()) { $f_active = true; } ?>
<li class="item<?php echo $f_active ? ' active' : ''; ?><?php echo $feed->inError () ? ' error' : ''; ?><?php echo $nbEntries == 0 ? ' empty' : ''; ?>">
<div class="dropdown">
- <div id="dropdown-<?php echo $feed->id(); ?>" class="dropdown-target"></div>
- <a class="dropdown-toggle" href="#dropdown-<?php echo $feed->id(); ?>"><i class="icon i_configure"></i></a>
- <ul class="dropdown-menu">
- <li class="dropdown-close"><a href="#close">&nbsp;</a></li>
- <li class="item"><a href="<?php echo _url ('index', 'index', 'get', 'f_' . $feed->id ()); ?>"><?php echo Translate::t ('filter'); ?></a></li>
- <li class="item"><a target="_blank" href="<?php echo $feed->website (); ?>"><?php echo Translate::t ('see_website'); ?></a></li>
- <?php if (!login_is_conf ($this->conf) || is_logged ()) { ?>
- <li class="separator"></li>
-
- <li class="item"><a href="<?php echo _url ('configure', 'feed', 'id', $feed->id ()); ?>"><?php echo Translate::t ('administration'); ?></a></li>
- <li class="item"><a href="<?php echo _url ('feed', 'actualize', 'id', $feed->id ()); ?>"><?php echo Translate::t ('actualize'); ?></a></li>
- <li class="item"><a href="<?php echo _url ('entry', 'read', 'is_read', 1, 'get', 'f_' . $feed->id ()); ?>"><?php echo Translate::t ('mark_read'); ?></a></li>
- <?php } ?>
- </ul>
+ <div class="dropdown-target"></div>
+ <a class="dropdown-toggle" data-fid="<?php echo $feed->id (); ?>" data-fweb="<?php echo $feed->website (); ?>"><i class="icon i_configure"></i></a>
+<?php /* feed_config_template */ ?>
</div>
-
<?php $not_read = $feed->nbNotRead (); ?>
-
<img class="favicon" src="<?php echo $feed->favicon (); ?>" alt="" />
<?php echo $not_read > 0 ? '<b>' : ''; ?>
<a class="feed" href="<?php echo _url ('index', 'index', 'get', 'f_' . $feed->id ()); ?>">
- <?php echo $not_read > 0 ? '(' . $not_read . ') ' : ''; ?>
- <?php echo $feed->name(); ?>
+ <?php echo ($not_read > 0 ? '(' . $not_read . ') ' : ''), $feed->name(); ?>
</a>
<?php echo $not_read > 0 ? '</b>' : ''; ?>
</li>
@@ -102,5 +88,19 @@
<?php } } ?>
</ul>
- <span class="aside_flux_ender"><!-- hack for fix menus, if it can be helpful ;) --></span>
+ <span class="aside_flux_ender"><!-- For fixed menu --></span>
</div>
+
+<script id="feed_config_template" type="text/html">
+ <ul class="dropdown-menu">
+ <li class="dropdown-close"><a href="#close">&nbsp;</a></li>
+ <li class="item"><a href="<?php echo _url ('index', 'index', 'get', 'f_' . '!!!!!!'); ?>"><?php echo Translate::t ('filter'); ?></a></li>
+ <li class="item"><a target="_blank" href="http://example.net/"><?php echo Translate::t ('see_website'); ?></a></li>
+ <?php if (!login_is_conf ($this->conf) || is_logged ()) { ?>
+ <li class="separator"></li>
+ <li class="item"><a href="<?php echo _url ('configure', 'feed', 'id', '!!!!!!'); ?>"><?php echo Translate::t ('administration'); ?></a></li>
+ <li class="item"><a href="<?php echo _url ('feed', 'actualize', 'id', '!!!!!!'); ?>"><?php echo Translate::t ('actualize'); ?></a></li>
+ <li class="item"><a href="<?php echo _url ('entry', 'read', 'is_read', 1, 'get', 'f_' . '!!!!!!'); ?>"><?php echo Translate::t ('mark_read'); ?></a></li>
+ <?php } ?>
+ </ul>
+</script>
diff --git a/app/views/javascript/main.phtml b/app/views/javascript/main.phtml
index 03c60cc52..f6700330a 100644
--- a/app/views/javascript/main.phtml
+++ b/app/views/javascript/main.phtml
@@ -403,7 +403,18 @@ function init_nav_entries() {
});
}
-$(document).ready (function () {
+function init_templates() {
+ $('#aside_flux').on('click', '.dropdown-toggle', function () {
+ if ($(this).nextAll('.dropdown-menu').length === 0) {
+ var feed_id = $(this).data('fid'),
+ feed_web = $(this).data('fweb'),
+ template = $('#feed_config_template').html().replace(/!!!!!!/g, feed_id).replace('http://example.net/', feed_web);
+ $(this).attr('href', '#dropdown-' + feed_id).prev('.dropdown-target').attr('id', 'dropdown-' + feed_id).parent().append(template);
+ }
+ });
+}
+
+$(function () {
if(is_reader_mode()) {
hide_posts = false;
}
@@ -412,4 +423,5 @@ $(document).ready (function () {
init_shortcuts ();
init_stream_delegates($('#stream'));
init_nav_entries();
+ init_templates();
});