Merge branch 'dev' of https://github.com/redmatrix/hubzilla into xdev_merge

This commit is contained in:
zotlabs 2017-10-11 15:14:18 -07:00
commit ee307729fc
11 changed files with 76 additions and 46 deletions

View File

@ -11,30 +11,35 @@ class Apporder extends \Zotlabs\Web\Controller {
} }
function get() { function get() {
$syslist = array();
$list = Zlib\Apps::app_list(local_channel(), false, 'nav_featured_app');
if($list) {
foreach($list as $li) {
$syslist[] = Zlib\Apps::app_encode($li);
}
}
Zlib\Apps::translate_system_apps($syslist);
usort($syslist,'Zotlabs\\Lib\\Apps::app_name_compare'); if(! local_channel())
return;
$syslist = Zlib\Apps::app_order(local_channel(),$syslist); nav_set_selected('Order Apps');
foreach($syslist as $app) { $syslist = array();
$nav_apps[] = Zlib\Apps::app_render($app,'nav-order'); $list = Zlib\Apps::app_list(local_channel(), false, 'nav_featured_app');
if($list) {
foreach($list as $li) {
$syslist[] = Zlib\Apps::app_encode($li);
}
}
Zlib\Apps::translate_system_apps($syslist);
usort($syslist,'Zotlabs\\Lib\\Apps::app_name_compare');
$syslist = Zlib\Apps::app_order(local_channel(),$syslist);
foreach($syslist as $app) {
$nav_apps[] = Zlib\Apps::app_render($app,'nav-order');
} }
return replace_macros(get_markup_template('apporder.tpl'), return replace_macros(get_markup_template('apporder.tpl'),
[ [
'$header' => t('Change Order of Navigation Apps'), '$header' => t('Change Order of Navigation Apps'),
'$desc' => t('Use arrows to move the corresponding app up or down in the display list'), '$desc' => t('Use arrows to move the corresponding app up or down in the display list'),
'$nav_apps' => $nav_apps '$nav_apps' => $nav_apps
] ]
); );
} }
} }

View File

@ -7,6 +7,8 @@ use \Zotlabs\Lib as Zlib;
class Apps extends \Zotlabs\Web\Controller { class Apps extends \Zotlabs\Web\Controller {
function get() { function get() {
nav_set_selected('Apps');
if(argc() == 2 && argv(1) == 'edit') if(argc() == 2 && argv(1) == 'edit')
$mode = 'edit'; $mode = 'edit';

View File

@ -120,21 +120,23 @@ class Notifications {
]; ];
} }
$notifications[] = [ if(get_config('system', 'disable_discover_tab') != 1) {
'type' => 'pubs', $notifications[] = [
'icon' => 'globe', 'type' => 'pubs',
'severity' => 'secondary', 'icon' => 'globe',
'label' => t('Public Stream'), 'severity' => 'secondary',
'title' => t('Public Stream Notifications'), 'label' => t('Public Stream'),
'viewall' => [ 'title' => t('Public Stream Notifications'),
'url' => 'pubstream', 'viewall' => [
'label' => t('View the public stream') 'url' => 'pubstream',
], 'label' => t('View the public stream')
'markall' => [ ],
'url' => '#', 'markall' => [
'label' => t('Mark all notifications seen') 'url' => '#',
] 'label' => t('Mark all notifications seen')
]; ]
];
}
$o = replace_macros(get_markup_template('notifications_widget.tpl'), array( $o = replace_macros(get_markup_template('notifications_widget.tpl'), array(
'$notifications' => $notifications, '$notifications' => $notifications,

View File

@ -57,7 +57,13 @@ li:hover .widget-nav-pills-icons {
/* affinity slider */ /* affinity slider */
#main-slider { #main-slider {
margin: 10px 7px 45px 7px; margin: 10px 7px 4rem 7px;
}
@media screen and (max-width: 767px) {
#main-slider {
margin: 4rem 7px 4rem 7px;
}
} }
/* posted date */ /* posted date */

View File

@ -1,5 +1,3 @@
[region=nav]$nav[/region]
[region=aside] [region=aside]
[widget=collections][/widget] [widget=collections][/widget]
[widget=forums][/widget] [widget=forums][/widget]

View File

@ -50,7 +50,7 @@ main {
height: 100%; height: 100%;
background: rgba(0, 0, 0, .5); background: rgba(0, 0, 0, .5);
cursor: pointer; cursor: pointer;
z-index: 1029; z-index: 1028;
} }
h1, .h1 { h1, .h1 {

View File

@ -83,7 +83,7 @@ $(document).ready(function() {
}); });
var notifications_parent = $('#notifications_wrapper')[0].parentElement.id; var notifications_parent = $('#notifications_wrapper')[0].parentElement.id;
$('#notifications-btn-1').click(function() { $('#notifications-btn').click(function() {
if($('#notifications_wrapper').hasClass('fs')) if($('#notifications_wrapper').hasClass('fs'))
$('#notifications_wrapper').prependTo('#' + notifications_parent); $('#notifications_wrapper').prependTo('#' + notifications_parent);
else else

View File

@ -1 +1 @@
<a class="navbar-app nav-link{{if $app.active}} active{{/if}}" href="{{$app.url}}" title="{{$app.name}}" >{{if $icon}}<i class="generic-icons-nav fa fa-fw fa-{{$icon}}"></i>{{else}}<img src="{{$app.photo}}" width="16" height="16" />{{/if}}</a> <a class="navbar-app nav-link{{if $app.active}} active{{/if}}" href="{{$app.url}}" title="{{$app.name}}" >{{if $icon}}<i class="fa fa-fw fa-{{$icon}}"></i>{{else}}<img src="{{$app.photo}}" width="16" height="16" />{{/if}}</a>

View File

@ -1,5 +1,9 @@
<div id="main-slider" class="slider" ><input id="main-range" type="text" name="cminmax" value="{{$val}}" /></div> <div id="main-slider" class="slider" >
<div id="profile-jot-text-loading" class="spinner-wrapper"><div class="spinner m"></div></div> <input id="main-range" type="text" name="cminmax" value="{{$val}}" />
<div id="profile-jot-text-loading" class="spinner-wrapper">
<div class="spinner m"></div>
</div>
</div>
<script> <script>
$(document).ready(function() { $(document).ready(function() {
var old_cmin = 0; var old_cmin = 0;

View File

@ -67,7 +67,7 @@
<i class="fa fa-arrow-circle-right" id="expand-aside-icon"></i> <i class="fa fa-arrow-circle-right" id="expand-aside-icon"></i>
</button> </button>
{{if $localuser || $nav.pubs}} {{if $localuser || $nav.pubs}}
<button id="notifications-btn-1" type="button" class="navbar-toggler border-0 text-white"> <button id="notifications-btn" type="button" class="navbar-toggler border-0 text-white">
<i class="fa fa-exclamation-circle"></i> <i class="fa fa-exclamation-circle"></i>
</button> </button>
{{/if}} {{/if}}
@ -107,6 +107,13 @@
</div> </div>
</li> </li>
{{/if}} {{/if}}
{{if $navbar_apps}}
{{foreach $navbar_apps as $navbar_app}}
<li>
{{$navbar_app}}
</li>
{{/foreach}}
{{/if}}
<li class="nav-item dropdown" id="app-menu"> <li class="nav-item dropdown" id="app-menu">
<a class="nav-link" href="#" data-toggle="dropdown"><i class="fa fa-fw fa-bars"></i></a> <a class="nav-link" href="#" data-toggle="dropdown"><i class="fa fa-fw fa-bars"></i></a>
<div id="dropdown-menu" class="dropdown-menu dropdown-menu-right"> <div id="dropdown-menu" class="dropdown-menu dropdown-menu-right">

View File

@ -17,7 +17,7 @@
width: 100%; width: 100%;
max-width: 100%; max-width: 100%;
height: 100%; height: 100%;
z-index: 1025; z-index: 1029;
overflow: auto; overflow: auto;
} }
@ -26,6 +26,7 @@
} }
</style> </style>
{{if $notifications}}
<div id="notifications_wrapper"> <div id="notifications_wrapper">
<div id="notifications" class="navbar-nav" data-children=".nav-item"> <div id="notifications" class="navbar-nav" data-children=".nav-item">
<div id="nav-notifications-template" rel="template"> <div id="nav-notifications-template" rel="template">
@ -43,10 +44,14 @@
</a> </a>
<div id="nav-{{$notification.type}}-menu" class="collapse notification-content" rel="{{$notification.type}}"> <div id="nav-{{$notification.type}}-menu" class="collapse notification-content" rel="{{$notification.type}}">
{{if $notification.viewall}} {{if $notification.viewall}}
<a class="list-group-item" id="nav-{{$notification.type}}-see-all" href="{{$notification.viewall.url}}">{{$notification.viewall.label}}</a> <a class="list-group-item text-dark" id="nav-{{$notification.type}}-see-all" href="{{$notification.viewall.url}}">
<i class="fa fa-fw fa-external-link"></i> {{$notification.viewall.label}}
</a>
{{/if}} {{/if}}
{{if $notification.markall}} {{if $notification.markall}}
<a class="list-group-item" id="nav-{{$notification.type}}-mark-all" href="{{$notification.markall.url}}" onclick="markRead('{{$notification.type}}'); return false;">{{$notification.markall.label}}</a> <a class="list-group-item text-dark" id="nav-{{$notification.type}}-mark-all" href="{{$notification.markall.url}}" onclick="markRead('{{$notification.type}}'); return false;">
<i class="fa fa-fw fa-check"></i> {{$notification.markall.label}}
</a>
{{/if}} {{/if}}
{{$loading}} {{$loading}}
</div> </div>
@ -54,3 +59,4 @@
{{/foreach}} {{/foreach}}
</div> </div>
</div> </div>
{{/if}}