mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-27 09:36:19 -05:00
Simple category breadcrumb component
This commit is contained in:
parent
541620c115
commit
cc9b11ecc5
7 changed files with 83 additions and 4 deletions
|
@ -0,0 +1,5 @@
|
|||
Discourse.DiscourseBreadcrumbsComponent = Ember.Component.extend({
|
||||
classNames: ['category-breadcrumb'],
|
||||
tagName: 'ol',
|
||||
parentCategory: Em.computed.alias('category.parentCategory')
|
||||
});
|
|
@ -15,6 +15,10 @@ Discourse.ListTopicsController = Discourse.ObjectController.extend({
|
|||
|
||||
latest: Ember.computed.equal('filter', 'latest'),
|
||||
|
||||
categories: function() {
|
||||
return Discourse.Category.list();
|
||||
}.property(),
|
||||
|
||||
draftLoaded: function() {
|
||||
var draft = this.get('content.draft');
|
||||
if (draft) {
|
||||
|
|
|
@ -27,8 +27,9 @@ Discourse.FilteredListRoute = Discourse.Route.extend({
|
|||
},
|
||||
|
||||
setupController: function() {
|
||||
var listController = this.controllerFor('list');
|
||||
var listTopicsController = this.controllerFor('listTopics');
|
||||
var listController = this.controllerFor('list'),
|
||||
listTopicsController = this.controllerFor('listTopics');
|
||||
|
||||
listController.set('filterMode', this.filter);
|
||||
|
||||
var listContent = listTopicsController.get('model');
|
||||
|
|
|
@ -0,0 +1,18 @@
|
|||
<li>
|
||||
<a href="/">{{title}}</a>
|
||||
<i class='icon icon-caret-right first-caret'></i>
|
||||
</li>
|
||||
|
||||
{{#if parentCategory}}
|
||||
<li>
|
||||
{{discourse-categorydrop category=parentCategory categories=categories}}
|
||||
</li>
|
||||
{{/if}}
|
||||
|
||||
{{#if category}}
|
||||
<li>
|
||||
{{discourse-categorydrop category=category}}
|
||||
</li>
|
||||
{{/if}}
|
||||
|
||||
<div class='clear'></div>
|
|
@ -0,0 +1,4 @@
|
|||
{{categoryLink category}}
|
||||
{{#if categories}}
|
||||
<button {{action expand}}><i class='icon icon-caret-right'></i></button>
|
||||
{{/if}}
|
|
@ -10,6 +10,10 @@
|
|||
</button>
|
||||
{{/if}}
|
||||
|
||||
{{#if category}}
|
||||
{{discourse-breadcrumbs title=Discourse.SiteSettings.title category=category categories=categories}}
|
||||
{{/if}}
|
||||
|
||||
<table id='topic-list'>
|
||||
<thead>
|
||||
<tr>
|
||||
|
|
|
@ -2,14 +2,14 @@
|
|||
.post-info a {color: #aaa;}
|
||||
|
||||
.topic-meta-data-inside {
|
||||
float: right;
|
||||
float: right;
|
||||
margin-top: -22px;
|
||||
float: right;
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
|
||||
.post-actions {
|
||||
.post-actions {
|
||||
color: #bbb;
|
||||
text-align: right;
|
||||
a {color: #bbb;}
|
||||
|
@ -195,3 +195,46 @@ i {background: #e4f2f8;
|
|||
font-size: 15px;
|
||||
z-index: 495
|
||||
}
|
||||
|
||||
ol.category-breadcrumb {
|
||||
list-style: none;
|
||||
margin: 0 0 10px 0;
|
||||
padding: 0;
|
||||
|
||||
.first-caret {
|
||||
margin: 0 3px 0 3px;
|
||||
color: #666;
|
||||
font-size: 13px;
|
||||
}
|
||||
|
||||
li {
|
||||
float: left;
|
||||
margin-right: 5px;
|
||||
border: 1px solid transparent;
|
||||
height: 21px;
|
||||
padding-top: 2px;
|
||||
|
||||
button {
|
||||
background: none;
|
||||
border: 1px solid transparent;
|
||||
padding: 0px 4px;
|
||||
margin: 0;
|
||||
color: #666;
|
||||
}
|
||||
|
||||
&.has-drop:hover {
|
||||
background-color: #eee;
|
||||
border: 1px solid #bbb;
|
||||
|
||||
button {
|
||||
color: black;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.clear {
|
||||
clear: both;
|
||||
}
|
||||
|
||||
|
||||
}
|
Loading…
Reference in a new issue