-
Notifications
You must be signed in to change notification settings - Fork 34
Closed
Labels
area/frontendestimation/2hEstimated time: 120 minutesEstimated time: 120 minuteskind/taskTask that is part of some featureTask that is part of some feature
Milestone
Description
The following block should be converted to React component:
mystamps/src/main/webapp/WEB-INF/views/series/info.html
Lines 489 to 541 in 366f099
<div class="row" th:if="${not #lists.isEmpty(purchasesAndSales)}" sec:authorize="hasAuthority('VIEW_SERIES_SALES')"> | |
<div class="col-sm-12"> | |
<h5 th:text="#{t_who_selling_series}">Who was selling/buying this series</h5> | |
<ul th:remove="all-but-first"> | |
<li id="series-sale-1-info" | |
th:id="|series-sale-${iter.count}-info|" | |
th:each="transaction,iter : ${purchasesAndSales}" | |
th:with="firstPrice=${#numbers.formatDecimal(transaction.firstPrice, 0, 'DEFAULT', 2, 'DEFAULT') + ' ' + transaction.firstCurrency}, | |
optionalSecondPrice=${transaction.secondPrice != null ? (' ' + '(' + #numbers.formatDecimal(transaction.secondPrice, 0, 'DEFAULT', 2, 'DEFAULT') + ' ' + transaction.secondCurrency + ')') : ''}"> | |
<!--/*/ | |
<span th:if="${transaction.date != null}" th:remove="tag" th:text="${#dates.format(transaction.date, 'dd.MM.yyyy')}"></span> | |
/*/--> | |
<a href="http://example.com/james-alan-hetfield" | |
id="series-sale-1-seller" | |
rel="nofollow" | |
th:id="|series-sale-${iter.count}-seller|" | |
th:remove="${transaction.sellerUrl == null} ? tag" | |
th:href="${transaction.sellerUrl}" | |
th:text="${transaction.sellerName}">James Alan Hetfield</a> | |
<span th:if="${transaction.buyerName == null}" th:remove="tag" th:text="#{t_was_selling_for}">was selling for</span> | |
<!--/*/ | |
<th:block th:if="${transaction.buyerName != null}"> | |
<span th:text="#{t_sold_to}" th:remove="tag">sold to</span> | |
<a href="http://example.com/eicca-toppinen" rel="nofollow" th:remove="${transaction.buyerUrl == null} ? tag" th:href="${transaction.buyerUrl}" th:text="${transaction.buyerName}">Eicca Toppinen</a> | |
<span th:text="#{t_sold_for}" th:remove="tag">for</span> | |
</th:block> | |
/*/--> | |
<a href="http://example.com/james-alan-hetfield/selling-stamps" | |
id="series-sale-1-transaction" | |
rel="nofollow" | |
th:id="|series-sale-${iter.count}-transaction|" | |
th:remove="${transaction.transactionUrl == null} ? tag" | |
th:href="${transaction.transactionUrl}" | |
th:text="${firstPrice + optionalSecondPrice}">100 USD</a> | |
</li> | |
<li id="series-sale-2-info"> | |
<a href="http://example.com/james-alan-hetfield" id="series-sale-2-seller" rel="nofollow">James Alan Hetfield</a> was selling for <a href="http://example.com/james-alan-hetfield/selling-stamps" id="series-sale-2-transaction" rel="nofollow">100 USD (650 RUB)</a> | |
</li> | |
<li id="series-sale-3-info"> | |
02.02.2002 <a href="http://example.com/tommy-lee-jones" id="series-sale-3-seller" rel="nofollow">Tommy Lee Jones</a> was selling for <a href="http://example.com/tommy-lee-jones/selling-stamps" id="series-sale-3-transaction" rel="nofollow">200 USD</a> | |
</li> | |
<li id="series-sale-4-info"> | |
02.02.2002 <a href="http://example.com/tommy-lee-jones" id="series-sale-4-seller" rel="nofollow">Tommy Lee Jones</a> was selling for <a href="http://example.com/tommy-lee-jones/selling-stamps" id="series-sale-4-transaction" rel="nofollow">200 USD (1300 RUB)</a> | |
</li> | |
<li id="series-sale-5-info"> | |
03.03.2003 <a href="http://example.com/eicca-toppinen" id="series-sale-5-seller" rel="nofollow">Eicca Toppinen</a> sold to <a href="http://example.com/kurt-cobain" rel="nofollow">Kurt Cobain</a> for <a href="http://example.com/eicca-toppinen/selling-stamps" id="series-sale-5-transaction" rel="nofollow">300 USD</a> | |
</li> | |
<li id="series-sale-6-info"> | |
03.03.2003 <a href="http://example.com/eicca-toppinen" id="series-sale-6-seller" rel="nofollow">Eicca Toppinen</a> sold to Michael Jackson for <a href="http://example.com/eicca-toppinen/selling-stamps" id="series-sale-6-transaction" rel="nofollow">300 USD (1560 RUB)</a> | |
</li> | |
</ul> | |
</div> | |
</div> |
Part of #1328
Definition of done:
- when I open
series/info.html
page in a browser, I should see exactly the same block as now but rendered with React - backend call will be implemented in Implement API for fetching all sales of a series #1330 based on a mock data from this task
- tests are out-of-scope
- we should show an error when we can't load data
Metadata
Metadata
Assignees
Labels
area/frontendestimation/2hEstimated time: 120 minutesEstimated time: 120 minuteskind/taskTask that is part of some featureTask that is part of some feature