mirror of
https://github.com/flarum/framework.git
synced 2025-01-06 10:33:46 +08:00
57 lines
2.0 KiB
JavaScript
57 lines
2.0 KiB
JavaScript
import Ember from 'ember';
|
|
|
|
import HasItemLists from 'flarum/mixins/has-item-lists';
|
|
import NavItem from 'flarum/components/ui/nav-item';
|
|
import DropdownSelect from 'flarum/components/ui/dropdown-select';
|
|
|
|
var precompileTemplate = Ember.Handlebars.compile;
|
|
|
|
export default Ember.View.extend(HasItemLists, {
|
|
itemLists: ['sidebar'],
|
|
|
|
didInsertElement: function() {
|
|
// Affix the sidebar so that when the user scrolls down it will stick
|
|
// to the top of their viewport.
|
|
var $sidebar = this.$('.user-nav');
|
|
$sidebar.find('> ul').affix({
|
|
offset: {
|
|
top: function () {
|
|
return $sidebar.offset().top - $('#header').outerHeight(true) - parseInt($sidebar.css('margin-top'));
|
|
},
|
|
bottom: function () {
|
|
return (this.bottom = $('#footer').outerHeight(true));
|
|
}
|
|
}
|
|
});
|
|
},
|
|
|
|
populateSidebar: function(items) {
|
|
var nav = this.populateItemList('nav');
|
|
items.pushObjectWithTag(DropdownSelect.extend({items: nav, listItemClass: 'title-control'}), 'nav');
|
|
},
|
|
|
|
populateNav: function(items) {
|
|
items.pushObjectWithTag(NavItem.extend({
|
|
label: 'Activity',
|
|
icon: 'user',
|
|
layout: precompileTemplate('{{#link-to "user.activity" (query-params filter="")}}{{fa-icon icon}} {{label}}{{/link-to}}')
|
|
}), 'activity');
|
|
|
|
items.pushObjectWithTag(NavItem.extend({
|
|
label: 'Discussions',
|
|
icon: 'reorder',
|
|
badge: Ember.computed.alias('user.discussionsCount'),
|
|
user: this.get('controller.model'),
|
|
layout: precompileTemplate('{{#link-to "user.activity" (query-params filter="discussions")}}{{fa-icon icon}} {{label}} <span class="count">{{badge}}</span>{{/link-to}}')
|
|
}), 'discussions');
|
|
|
|
items.pushObjectWithTag(NavItem.extend({
|
|
label: 'Posts',
|
|
icon: 'comment-o',
|
|
badge: Ember.computed.alias('user.commentsCount'),
|
|
user: this.get('controller.model'),
|
|
layout: precompileTemplate('{{#link-to "user.activity" (query-params filter="posts")}}{{fa-icon icon}} {{label}} <span class="count">{{badge}}</span>{{/link-to}}')
|
|
}), 'posts');
|
|
}
|
|
});
|