removing unused function because @linaria fails with unrelated error: TextEncoder is not defined in taler-util/lib/whatwg-url.js

This commit is contained in:
Sebastian 2023-09-08 18:12:34 -03:00
parent b784144edf
commit df7ab5b5dc
No known key found for this signature in database
GPG Key ID: 173909D1A5F66069

View File

@ -1073,126 +1073,126 @@ export function MerchantDetails({
);
}
function DeliveryDetails({
date,
location,
}: {
date: TalerProtocolTimestamp | undefined;
location: Location | undefined;
}): VNode {
const { i18n } = useTranslationContext();
return (
<PurchaseDetailsTable>
{location && (
<Fragment>
{location.country && (
<tr>
<td>
<i18n.Translate>Country</i18n.Translate>
</td>
<td>{location.country}</td>
</tr>
)}
{location.address_lines && (
<tr>
<td>
<i18n.Translate>Address lines</i18n.Translate>
</td>
<td>{location.address_lines}</td>
</tr>
)}
{location.building_number && (
<tr>
<td>
<i18n.Translate>Building number</i18n.Translate>
</td>
<td>{location.building_number}</td>
</tr>
)}
{location.building_name && (
<tr>
<td>
<i18n.Translate>Building name</i18n.Translate>
</td>
<td>{location.building_name}</td>
</tr>
)}
{location.street && (
<tr>
<td>
<i18n.Translate>Street</i18n.Translate>
</td>
<td>{location.street}</td>
</tr>
)}
{location.post_code && (
<tr>
<td>
<i18n.Translate>Post code</i18n.Translate>
</td>
<td>{location.post_code}</td>
</tr>
)}
{location.town_location && (
<tr>
<td>
<i18n.Translate>Town location</i18n.Translate>
</td>
<td>{location.town_location}</td>
</tr>
)}
{location.town && (
<tr>
<td>
<i18n.Translate>Town</i18n.Translate>
</td>
<td>{location.town}</td>
</tr>
)}
{location.district && (
<tr>
<td>
<i18n.Translate>District</i18n.Translate>
</td>
<td>{location.district}</td>
</tr>
)}
{location.country_subdivision && (
<tr>
<td>
<i18n.Translate>Country subdivision</i18n.Translate>
</td>
<td>{location.country_subdivision}</td>
</tr>
)}
</Fragment>
)}
// function DeliveryDetails({
// date,
// location,
// }: {
// date: TalerProtocolTimestamp | undefined;
// location: Location | undefined;
// }): VNode {
// const { i18n } = useTranslationContext();
// return (
// <PurchaseDetailsTable>
// {location && (
// <Fragment>
// {location.country && (
// <tr>
// <td>
// <i18n.Translate>Country</i18n.Translate>
// </td>
// <td>{location.country}</td>
// </tr>
// )}
// {location.address_lines && (
// <tr>
// <td>
// <i18n.Translate>Address lines</i18n.Translate>
// </td>
// <td>{location.address_lines}</td>
// </tr>
// )}
// {location.building_number && (
// <tr>
// <td>
// <i18n.Translate>Building number</i18n.Translate>
// </td>
// <td>{location.building_number}</td>
// </tr>
// )}
// {location.building_name && (
// <tr>
// <td>
// <i18n.Translate>Building name</i18n.Translate>
// </td>
// <td>{location.building_name}</td>
// </tr>
// )}
// {location.street && (
// <tr>
// <td>
// <i18n.Translate>Street</i18n.Translate>
// </td>
// <td>{location.street}</td>
// </tr>
// )}
// {location.post_code && (
// <tr>
// <td>
// <i18n.Translate>Post code</i18n.Translate>
// </td>
// <td>{location.post_code}</td>
// </tr>
// )}
// {location.town_location && (
// <tr>
// <td>
// <i18n.Translate>Town location</i18n.Translate>
// </td>
// <td>{location.town_location}</td>
// </tr>
// )}
// {location.town && (
// <tr>
// <td>
// <i18n.Translate>Town</i18n.Translate>
// </td>
// <td>{location.town}</td>
// </tr>
// )}
// {location.district && (
// <tr>
// <td>
// <i18n.Translate>District</i18n.Translate>
// </td>
// <td>{location.district}</td>
// </tr>
// )}
// {location.country_subdivision && (
// <tr>
// <td>
// <i18n.Translate>Country subdivision</i18n.Translate>
// </td>
// <td>{location.country_subdivision}</td>
// </tr>
// )}
// </Fragment>
// )}
{!location || !date ? undefined : (
<tr>
<td colSpan={2}>
<hr />
</td>
</tr>
)}
{date && (
<Fragment>
<tr>
<td>
<i18n.Translate>Date</i18n.Translate>
</td>
<td>
<Time
timestamp={AbsoluteTime.fromProtocolTimestamp(date)}
format="dd MMMM yyyy, HH:mm"
/>
</td>
</tr>
</Fragment>
)}
</PurchaseDetailsTable>
);
}
// {!location || !date ? undefined : (
// <tr>
// <td colSpan={2}>
// <hr />
// </td>
// </tr>
// )}
// {date && (
// <Fragment>
// <tr>
// <td>
// <i18n.Translate>Date</i18n.Translate>
// </td>
// <td>
// <Time
// timestamp={AbsoluteTime.fromProtocolTimestamp(date)}
// format="dd MMMM yyyy, HH:mm"
// />
// </td>
// </tr>
// </Fragment>
// )}
// </PurchaseDetailsTable>
// );
// }
export function ExchangeDetails({ exchange }: { exchange: string }): VNode {
return (