wallet-core/packages/taler-wallet-webextension/src/components/ExchangeToS.tsx

91 lines
2.7 KiB
TypeScript
Raw Normal View History

2021-09-13 18:33:13 +02:00
/*
This file is part of GNU Taler
(C) 2019 Taler Systems SA
GNU Taler is free software; you can redistribute it and/or modify it under the
terms of the GNU General Public License as published by the Free Software
Foundation; either version 3, or (at your option) any later version.
GNU Taler is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with
GNU Taler; see the file COPYING. If not, see <http://www.gnu.org/licenses/>
*/
2021-11-16 17:59:53 +01:00
import { Fragment, VNode, h } from "preact";
2021-11-15 15:18:58 +01:00
import { useState } from "preact/hooks";
2021-09-13 18:32:58 +02:00
2021-11-16 17:59:53 +01:00
export function ExchangeXmlTos({ doc }: { doc: Document }): VNode {
2021-11-15 15:18:58 +01:00
const termsNode = doc.querySelector("[ids=terms-of-service]");
2021-09-13 18:32:58 +02:00
if (!termsNode) {
2021-11-15 15:18:58 +01:00
return (
<div>
<p>
The exchange send us an xml but there is no node with
&apos;ids=terms-of-service&apos;. This is the content:
2021-11-15 15:18:58 +01:00
</p>
<pre>{new XMLSerializer().serializeToString(doc)}</pre>
</div>
);
2021-09-13 18:32:58 +02:00
}
2021-11-15 15:18:58 +01:00
return <Fragment>{Array.from(termsNode.children).map(renderChild)}</Fragment>;
2021-09-13 18:32:58 +02:00
}
2021-09-20 05:18:52 +02:00
/**
* Map XML elements into HTML
2021-11-15 15:18:58 +01:00
* @param child
* @returns
2021-09-20 05:18:52 +02:00
*/
2021-09-13 18:32:58 +02:00
function renderChild(child: Element): VNode {
2021-11-15 15:18:58 +01:00
const children = Array.from(child.children);
2021-09-13 18:32:58 +02:00
switch (child.nodeName) {
2021-11-15 15:18:58 +01:00
case "title":
return <header>{child.textContent}</header>;
case "#text":
return <Fragment />;
case "paragraph":
return <p>{child.textContent}</p>;
case "section": {
return (
<AnchorWithOpenState href={`#terms-${child.getAttribute("ids")}`}>
{children.map(renderChild)}
</AnchorWithOpenState>
);
2021-09-13 18:32:58 +02:00
}
2021-11-15 15:18:58 +01:00
case "bullet_list": {
return <ul>{children.map(renderChild)}</ul>;
2021-09-13 18:32:58 +02:00
}
2021-11-15 15:18:58 +01:00
case "enumerated_list": {
return <ol>{children.map(renderChild)}</ol>;
2021-09-13 18:32:58 +02:00
}
2021-11-15 15:18:58 +01:00
case "list_item": {
return <li>{children.map(renderChild)}</li>;
2021-09-13 18:32:58 +02:00
}
2021-11-15 15:18:58 +01:00
case "block_quote": {
return <div>{children.map(renderChild)}</div>;
2021-09-13 18:32:58 +02:00
}
2021-11-15 15:18:58 +01:00
default:
return (
<div style={{ color: "red", display: "hidden" }}>
2021-11-16 17:59:53 +01:00
unknown tag {child.nodeName}
2021-11-15 15:18:58 +01:00
</div>
);
2021-09-13 18:32:58 +02:00
}
}
2021-09-20 05:18:52 +02:00
/**
* Simple anchor with a state persisted into 'data-open' prop
2021-11-15 15:18:58 +01:00
* @returns
2021-09-20 05:18:52 +02:00
*/
2021-11-15 15:18:58 +01:00
function AnchorWithOpenState(
2021-11-16 17:59:53 +01:00
props: h.JSX.HTMLAttributes<HTMLAnchorElement>,
): VNode {
2021-11-15 15:18:58 +01:00
const [open, setOpen] = useState<boolean>(false);
2021-11-16 17:59:53 +01:00
function doClick(e: h.JSX.TargetedMouseEvent<HTMLAnchorElement>): void {
2021-09-13 18:32:58 +02:00
setOpen(!open);
e.preventDefault();
}
2021-11-15 15:18:58 +01:00
return <a data-open={open ? "true" : "false"} onClick={doClick} {...props} />;
2021-09-13 18:32:58 +02:00
}