mirror of
https://github.com/ClusterCockpit/cc-backend
synced 2025-04-03 18:55:55 +02:00
40 lines
941 B
Svelte
40 lines
941 B
Svelte
<!--
|
|
@component User data row for table
|
|
|
|
Properties:
|
|
- `user Object!`: User Object
|
|
- {username: String, name: String, roles: [String], projects: String, email: String}
|
|
-->
|
|
|
|
<script>
|
|
import { Button } from "@sveltestrap/sveltestrap";
|
|
import { fetchJwt } from "../../generic/utils.js"
|
|
|
|
export let user;
|
|
|
|
let jwt = "";
|
|
function getUserJwt(username) {
|
|
const p = fetchJwt(username);
|
|
p.then((content) => {
|
|
jwt = content
|
|
}).catch((error) => {
|
|
console.error(`Could not get JWT: ${error}`);
|
|
});
|
|
}
|
|
</script>
|
|
|
|
<td>{user.username}</td>
|
|
<td>{user.name}</td>
|
|
<td style="max-width: 200px;">{user.projects}</td>
|
|
<td>{user.email}</td>
|
|
<td><code>{user?.roles ? user.roles.join(", ") : "No Roles"}</code></td>
|
|
<td>
|
|
{#if !jwt}
|
|
<Button color="success" on:click={getUserJwt(user.username)}
|
|
>Gen. JWT</Button
|
|
>
|
|
{:else}
|
|
<textarea rows="3" cols="20">{jwt}</textarea>
|
|
{/if}
|
|
</td>
|