Add credentials to PDF

Fix Umlauts in PDF
Reorder elements of PDF

Change-Id: I49335584ef282e4b960275013ea7d16053b9f773
This commit is contained in:
Michael Albert 2020-08-21 14:20:01 +02:00
parent dd00a76603
commit 725e24d944
6 changed files with 127 additions and 23 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -9,6 +9,32 @@
name="description" name="description"
content="Synapse-Admin" content="Synapse-Admin"
/> />
<style>
@font-face {
font-family: "DejaVu Sans";
src: url("%PUBLIC_URL%/fonts/DejaVu/DejaVuSans.ttf") format("truetype");
}
@font-face {
font-family: "DejaVu Sans";
font-weight: bold;
src: url("%PUBLIC_URL%/fonts/DejaVu/DejaVuSans-Bold.ttf") format("truetype");
}
@font-face {
font-family: "DejaVu Sans";
font-style: italic;
src: url("%PUBLIC_URL%/fonts/DejaVu/DejaVuSans-Oblique.ttf") format("truetype");
}
@font-face {
font-family: "DejaVu Sans";
font-weight: bold;
font-style: italic;
src: url("%PUBLIC_URL%/fonts/DejaVu/DejaVuSans-Oblique.ttf") format("truetype");
}
@font-face {
font-family: "DejaVu Sans Mono";
src: url("%PUBLIC_URL%/fonts/DejaVu/DejaVuSans-Mono.ttf") format("truetype");
}
</style>
<!-- <!--
manifest.json provides metadata used when your web app is installed on a manifest.json provides metadata used when your web app is installed on a
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/ user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/

View File

@ -33,6 +33,8 @@ const ShowUserPdf = props => {
margin: "auto", margin: "auto",
overflowX: "hidden", overflowX: "hidden",
overflowY: "hidden", overflowY: "hidden",
fontFamily: "DejaVu Sans, Sans-Serif",
fontSize: 15,
}, },
header: { header: {
height: 144, height: 144,
@ -41,24 +43,41 @@ const ShowUserPdf = props => {
marginTop: 15, marginTop: 15,
}, },
name: { name: {
width: 233, width: 240,
fontSize: 40, fontSize: 35,
float: "left", float: "left",
marginTop: 15, marginTop: 100,
}, },
logo: { logo: {
width: 90, width: 90,
marginTop: 20, marginTop: 50,
marginRight: 32, marginRight: 70,
float: "left", float: "right",
}, },
code: { body: {
marginLeft: 330, clear: "both",
},
table_cell: {
verticalAlign: "top",
},
code_note: {
marginLeft: 32,
marginTop: 86, marginTop: 86,
}, },
qr: { qr: {
marginRight: 40, marginTop: 15,
float: "right", marginLeft: 32,
},
credentials_note: {
marginTop: 86,
marginLeft: 10,
},
credentials_text: {
marginLeft: 10,
fontSize: 12,
},
credentials: {
fontFamily: "DejaVu Sans Mono, monospace",
}, },
note: { note: {
fontSize: 18, fontSize: 18,
@ -78,16 +97,21 @@ const ShowUserPdf = props => {
var qrCode = ""; var qrCode = "";
var displayname = ""; var displayname = "";
var id = "";
var password = "";
var username = "";
var serverUrl = "";
if ( if (
props.location.state && props.location.state &&
props.location.state.id && props.location.state.id &&
props.location.state.password props.location.state.password
) { ) {
const { id, password } = props.location.state; id = props.location.state.id;
password = props.location.state.password;
const username = id.substring(1, id.indexOf(":")); username = id.substring(1, id.indexOf(":"));
const serverUrl = "https://" + id.substring(id.indexOf(":") + 1); serverUrl = "https://" + id.substring(id.indexOf(":") + 1);
const qrString = calculateQrString(serverUrl, username, password); const qrString = calculateQrString(serverUrl, username, password);
@ -109,21 +133,75 @@ const ShowUserPdf = props => {
ref={r => (resume = r)} ref={r => (resume = r)}
> >
<div className={classes.page}> <div className={classes.page}>
<div className={classes.code}>Ihr persönlicher Anmeldecode:</div>
<div className={classes.header}> <div className={classes.header}>
<div className={classes.name}>{displayname}</div> <div className={classes.name}>{displayname}</div>
<img className={classes.logo} alt="Logo" src="images/logo.png" /> <img className={classes.logo} alt="Logo" src="images/logo.png" />
<div className={classes.qr}>{qrCode}</div>
</div> </div>
<div className={classes.body}>
<table>
<tbody>
<tr>
<td width="200px">
<div className={classes.code_note}>
Ihr persönlicher Anmeldecode:
</div>
</td>
<td className={classes.table_cell}>
<div className={classes.credentials_note}>
Ihre persönlichen Zugangsdaten:
</div>
</td>
</tr>
<tr>
<td>
<div className={classes.qr}>{qrCode}</div>
</td>
<td className={classes.table_cell}>
<div className={classes.credentials_text}>
<br />
<table>
<tbody>
<tr>
<td>Heimserver:</td>
<td>
<span className={classes.credentials}>
{serverUrl}
</span>
</td>
</tr>
<tr>
<td>Benutzername:</td>
<td>
<span className={classes.credentials}>
{username}
</span>
</td>
</tr>
<tr>
<td>Passwort:</td>
<td>
<span className={classes.credentials}>
{password}
</span>
</td>
</tr>
</tbody>
</table>
</div>
</td>
</tr>
</tbody>
</table>
<div className={classes.note}> <div className={classes.note}>
Hier können Sie Ihre selbst gewählte Schlüsselsicherungs-Passphrase Hier können Sie Ihre selbst gewählte
notieren: Schlüsselsicherungs-Passphrase notieren:
<br /> <br />
<br /> <br />
<br /> <br />
<hr /> <hr />
</div> </div>
</div> </div>
</div>
</PDFExport> </PDFExport>
</div> </div>
); );