-
Notifications
You must be signed in to change notification settings - Fork 1.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fixes #11229: Built topic-tree UI at /topic-tree #11230
Changes from 1 commit
094a5df
5d60b9b
2eeed6f
fc652a1
6481c26
e84ee63
eeb75cd
42ba05b
04e38fc
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -566,4 +566,8 @@ def fetch_counts | |
@nodes.size | ||
end | ||
end | ||
|
||
def topic_tree | ||
end | ||
|
||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Trailing whitespace detected. |
||
end |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,107 @@ | ||
<h1 style="width: 100vw">Topic Tree</h1> | ||
<br> | ||
|
||
|
||
<div id="accordion"> | ||
<div class="list-group"> | ||
<details> | ||
<summary class="list-group-item list-group-item-action topic"><i class="fa fa-chevron-right" style="font-size: small;"></i> Water</summary> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is great. OK, so let's merge this, get some feedback, and while we're talking through the visual side with folks, we can work on generating these lists programmatically with Ruby. My guess is we'll start with the top-level topics hard-coded, like: [
'agriculture',
'air-quality'
] Then we'll make up a new method in the tag controller that returns There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yup @jywarren, this makes a little sense to me.
Where would this be hard-coded? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Sorry! OK, so we moved part of this to here: #11380, where we are setting up a way to request the sub-topics. |
||
<div class="list-group"> | ||
<a href="#" class="list-group-item list-group-item-action"> <i class="fa fa-chevron-right icon"></i> drinking-water</a> | ||
<a href="#" class="list-group-item list-group-item-action"> <i class="fa fa-chevron-right icon"></i> fracking</a> | ||
<a href="#" class="list-group-item list-group-item-action"> <i class="fa fa-chevron-right icon"></i> microplastics</a> | ||
<a href="#" class="list-group-item list-group-item-action"> <i class="fa fa-chevron-right icon"></i> lead</a> | ||
<a href="#" class="list-group-item list-group-item-action"> <i class="fa fa-chevron-right icon"></i> mining</a> | ||
<a href="#" class="list-group-item list-group-item-action"> <i class="fa fa-chevron-right icon"></i> agriculture</a> | ||
<a href="#" class="list-group-item list-group-item-action"> <i class="fa fa-chevron-right icon"></i> oil-and-gas</a> | ||
<a href="#" class="list-group-item list-group-item-action"> <i class="fa fa-chevron-right icon"></i> filters</a> | ||
<a href="#" class="list-group-item list-group-item-action"> <i class="fa fa-chevron-right icon"></i> wastewater</a> | ||
</div> | ||
</details> | ||
|
||
|
||
<details> | ||
<summary class="list-group-item list-group-item-action topic"><i class="fa fa-chevron-right" style="font-size: small;"></i> Soil</summary> | ||
<div class="list-group"> | ||
<a href="#" class="list-group-item list-group-item-action"> <i class="fa fa-chevron-right icon"></i> lead</a> | ||
<a href="#" class="list-group-item list-group-item-action"> <i class="fa fa-chevron-right icon"></i> mining</a> | ||
<a href="#" class="list-group-item list-group-item-action"> <i class="fa fa-chevron-right icon"></i> agriculture</a> | ||
<a href="#" class="list-group-item list-group-item-action"> <i class="fa fa-chevron-right icon"></i> oil-and-gas</a> | ||
</div> | ||
</details> | ||
|
||
|
||
<details> | ||
<summary class="list-group-item list-group-item-action topic"><i class="fa fa-chevron-right" style="font-size: small;"></i> Air</summary> | ||
<div class="list-group"> | ||
<a href="#" class="list-group-item list-group-item-action"> <i class="fa fa-chevron-right icon"></i> indoor-air</a> | ||
<a href="#" class="list-group-item list-group-item-action"> <i class="fa fa-chevron-right icon"></i> formaldehyde</a> | ||
<a href="#" class="list-group-item list-group-item-action"> <i class="fa fa-chevron-right icon"></i> dust</a> | ||
<a href="#" class="list-group-item list-group-item-action"> <i class="fa fa-chevron-right icon"></i> particulate-matter</a> | ||
<a href="#" class="list-group-item list-group-item-action"> <i class="fa fa-chevron-right icon"></i> oil-and-gas</a> | ||
<a href="#" class="list-group-item list-group-item-action"> <i class="fa fa-chevron-right icon"></i> transportation</a> | ||
<a href="#" class="list-group-item list-group-item-action"> <i class="fa fa-chevron-right icon"></i> filters</a> | ||
</div> | ||
</details> | ||
|
||
<details> | ||
<summary class="list-group-item list-group-item-action topic"><i class="fa fa-chevron-right" style="font-size: small;"></i> Industry</summary> | ||
<div class="list-group"> | ||
<a href="#" class="list-group-item list-group-item-action"> <i class="fa fa-chevron-right icon"></i> land-use</a> | ||
<a href="#" class="list-group-item list-group-item-action"> <i class="fa fa-chevron-right icon"></i> land-change</a> | ||
<a href="#" class="list-group-item list-group-item-action"> <i class="fa fa-chevron-right icon"></i> particulate-matter</a> | ||
<a href="#" class="list-group-item list-group-item-action"> <i class="fa fa-chevron-right icon"></i> oil-and-gas</a> | ||
<a href="#" class="list-group-item list-group-item-action"> <i class="fa fa-chevron-right icon"></i> transportation</a> | ||
<a href="#" class="list-group-item list-group-item-action"> <i class="fa fa-chevron-right icon"></i> mining</a> | ||
<a href="#" class="list-group-item list-group-item-action"> <i class="fa fa-chevron-right icon"></i> agriculture</a> | ||
<a href="#" class="list-group-item list-group-item-action"> <i class="fa fa-chevron-right icon"></i> waste</a> | ||
<a href="#" class="list-group-item list-group-item-action"> <i class="fa fa-chevron-right icon"></i> noise</a> | ||
<a href="#" class="list-group-item list-group-item-action"> <i class="fa fa-chevron-right icon"></i> chemicals</a> | ||
<a href="#" class="list-group-item list-group-item-action"> <i class="fa fa-chevron-right icon"></i> pipeline-monitoring</a> | ||
<a href="#" class="list-group-item list-group-item-action"> <i class="fa fa-chevron-right icon"></i> cafo</a> | ||
</div> | ||
</details> | ||
|
||
<details> | ||
<summary class="list-group-item list-group-item-action topic"><i class="fa fa-chevron-right" style="font-size: small;"></i> Climate</summary> | ||
<div class="list-group"> | ||
<a href="#" class="list-group-item list-group-item-action"> <i class="fa fa-chevron-right icon"></i> stormwater</a> | ||
<a href="#" class="list-group-item list-group-item-action"> <i class="fa fa-chevron-right icon"></i> land-change</a> | ||
<a href="#" class="list-group-item list-group-item-action"> <i class="fa fa-chevron-right icon"></i> particulate-matter</a> | ||
<a href="#" class="list-group-item list-group-item-action"> <i class="fa fa-chevron-right icon"></i> oil-and-gas</a> | ||
</div> | ||
</details> | ||
|
||
<details> | ||
<summary class="list-group-item list-group-item-action topic"><i class="fa fa-chevron-right" style="font-size: small;"></i> Organizing</summary> | ||
<div class="list-group"> | ||
<a href="#" class="list-group-item list-group-item-action"> <i class="fa fa-chevron-right icon"></i> advocacy</a> | ||
<a href="#" class="list-group-item list-group-item-action"> <i class="fa fa-chevron-right icon"></i> community-organizing</a> | ||
<a href="#" class="list-group-item list-group-item-action"> <i class="fa fa-chevron-right icon"></i> legal</a> | ||
<a href="#" class="list-group-item list-group-item-action"> <i class="fa fa-chevron-right icon"></i> public-comment</a> | ||
<a href="#" class="list-group-item list-group-item-action"> <i class="fa fa-chevron-right icon"></i> host-an-event</a> | ||
</div> | ||
</details> | ||
|
||
<details> | ||
<summary class="list-group-item list-group-item-action topic"><i class="fa fa-chevron-right" style="font-size: small;"></i> Monitoring</summary> | ||
<div class="list-group"> | ||
<a href="#" class="list-group-item list-group-item-action"> <i class="fa fa-chevron-right icon"></i> air-sensors</a> | ||
<a href="#" class="list-group-item list-group-item-action"> <i class="fa fa-chevron-right icon"></i> water-sensors</a> | ||
<a href="#" class="list-group-item list-group-item-action"> <i class="fa fa-chevron-right icon"></i> balloon-mapping</a> | ||
<a href="#" class="list-group-item list-group-item-action"> <i class="fa fa-chevron-right icon"></i> study-design</a> | ||
<a href="#" class="list-group-item list-group-item-action"> <i class="fa fa-chevron-right icon"></i> other methods</a> | ||
</div> | ||
</details> | ||
|
||
</div> | ||
</div> | ||
|
||
<style> | ||
.topic{ | ||
background-color: #F5F5F5 | ||
} | ||
.icon{ | ||
font-size: small; | ||
} | ||
</style> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Put empty method definitions on a single line.