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/>
|
|
|
|
*/
|
|
|
|
import { Fragment, VNode } from "preact"
|
2021-09-13 18:32:58 +02:00
|
|
|
import { useState } from "preact/hooks"
|
|
|
|
import { JSXInternal } from "preact/src/jsx"
|
2021-09-13 18:33:13 +02:00
|
|
|
import { h } from 'preact';
|
2021-09-13 18:32:58 +02:00
|
|
|
|
|
|
|
export function ExchangeXmlTos({ doc }: { doc: Document }) {
|
|
|
|
const termsNode = doc.querySelector('[ids=terms-of-service]')
|
|
|
|
if (!termsNode) {
|
2021-10-13 14:54:18 +02:00
|
|
|
return <div>
|
|
|
|
<p>The exchange send us an xml but there is no node with 'ids=terms-of-service'. This is the content:</p>
|
|
|
|
<pre>{new XMLSerializer().serializeToString(doc)}</pre>
|
|
|
|
</div>
|
2021-09-13 18:32:58 +02:00
|
|
|
}
|
|
|
|
return <Fragment>
|
|
|
|
{Array.from(termsNode.children).map(renderChild)}
|
|
|
|
</Fragment>
|
|
|
|
}
|
|
|
|
|
2021-09-20 05:18:52 +02:00
|
|
|
/**
|
|
|
|
* Map XML elements into HTML
|
|
|
|
* @param child
|
|
|
|
* @returns
|
|
|
|
*/
|
2021-09-13 18:32:58 +02:00
|
|
|
function renderChild(child: Element): VNode {
|
|
|
|
const children = Array.from(child.children)
|
|
|
|
switch (child.nodeName) {
|
|
|
|
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>
|
|
|
|
}
|
|
|
|
case 'bullet_list': {
|
|
|
|
return <ul>{children.map(renderChild)}</ul>
|
|
|
|
}
|
|
|
|
case 'enumerated_list': {
|
|
|
|
return <ol>{children.map(renderChild)}</ol>
|
|
|
|
}
|
|
|
|
case 'list_item': {
|
|
|
|
return <li>{children.map(renderChild)}</li>
|
|
|
|
}
|
|
|
|
case 'block_quote': {
|
|
|
|
return <div>{children.map(renderChild)}</div>
|
|
|
|
}
|
|
|
|
default: return <div style={{ color: 'red', display: 'hidden' }}>unknown tag {child.nodeName} <a></a></div>
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-09-20 05:18:52 +02:00
|
|
|
/**
|
|
|
|
* Simple anchor with a state persisted into 'data-open' prop
|
|
|
|
* @returns
|
|
|
|
*/
|
2021-09-13 18:32:58 +02:00
|
|
|
function AnchorWithOpenState(props: JSXInternal.HTMLAttributes<HTMLAnchorElement>) {
|
|
|
|
const [open, setOpen] = useState<boolean>(false)
|
|
|
|
function doClick(e: JSXInternal.TargetedMouseEvent<HTMLAnchorElement>) {
|
|
|
|
setOpen(!open);
|
|
|
|
e.preventDefault();
|
|
|
|
}
|
2021-09-20 05:18:52 +02:00
|
|
|
return <a data-open={open ? 'true' : 'false'} onClick={doClick} {...props} />
|
2021-09-13 18:32:58 +02:00
|
|
|
}
|
|
|
|
|