Skip to content

Commit

Permalink
feat: Provide an explanation to users about what a GTFS Component is #…
Browse files Browse the repository at this point in the history
…1505 (#1512)

* fix: display tooltip text

* feat: gtfs component description
  • Loading branch information
cka-y authored and davidgamez committed Jul 5, 2023
1 parent 9bdd288 commit 4d324a3
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public NoticeView(ResolvedNotice<? extends Notice> notice) {
this.notice = notice;
this.json = notice.getContext().toJsonTree().getAsJsonObject();
this.fields = new ArrayList<>(json.keySet());
this.comments = NoticeSchemaGenerator.loadComments(notice.getClass());
this.comments = NoticeSchemaGenerator.loadComments(notice.getContext().getClass());
}

/**
Expand Down
21 changes: 18 additions & 3 deletions main/src/main/resources/report.html
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@
.summary-cell {
padding: 5px;
box-sizing: border-box;
flex: 1;
}

.summary h4 {
Expand Down Expand Up @@ -129,10 +130,19 @@
position: absolute;
z-index: 1;
bottom: 100%;
left: 50%;
margin-left: -60px;
transform: translateX(-50%);
opacity: 0;
transition: opacity 0.3s;
max-width: 400px;
min-width: 100px;
width: max-content;
white-space: normal;
}

.tooltip {
position: relative;
display: inline-block;
cursor: help;
}

.tooltip:hover .tooltiptext {
Expand Down Expand Up @@ -262,7 +272,12 @@ <h4>Counts</h4>
</ul>
</div>
<div class="summary-cell summary_list">
<h4>GTFS Components included</h4>
<h4>
GTFS Components included
<a href="#" class="tooltip" onclick="event.preventDefault();"><span>(?)</span>
<span class="tooltiptext" style="transform: translateX(-100%)">GTFS components provide a standardized vocabulary to define and describe features that are officially adopted in GTFS.</span>
</a>
</h4>
<hr />
<div>
<span class="spec-feature" th:each="feature: ${metadata.specFeatures}" th:if="${feature.value == 'Yes'}" th:text="${feature.key}" />
Expand Down

0 comments on commit 4d324a3

Please sign in to comment.