|
2 | 2 | import { onMount } from 'svelte';
|
3 | 3 | import { writable } from 'svelte/store';
|
4 | 4 | import { t } from 'i18next';
|
| 5 | + import { info } from '$lib/data/urls.json'; |
5 | 6 | import { navigate, Destination } from '$lib/destinations';
|
6 | 7 | import { DisplayableError } from '$lib/events';
|
7 | 8 | import { call, getUsersClient } from '$lib/openapi';
|
|
91 | 92 | {#if $token}
|
92 | 93 | <div class="destination">
|
93 | 94 | <List borderless>
|
94 |
| - <tr> |
95 |
| - <td> |
96 |
| - <div class="avatar-wrapper"> |
97 |
| - <EditableAvatar user={currentUser} on:file={updateAvatar} /> |
98 |
| - </div> |
99 |
| - </td> |
100 |
| - <td> |
101 |
| - <Button |
102 |
| - type="button" |
103 |
| - disabled={!currentUser?.avatar} |
104 |
| - loading={isAvatarLoading} |
105 |
| - on:click={removeAvatar} |
106 |
| - > |
107 |
| - {t('settings.avatar.remove')} |
108 |
| - </Button> |
109 |
| - </td> |
110 |
| - </tr> |
111 |
| - <tr> |
112 |
| - <td>{t('settings.username')}</td> |
113 |
| - <td title={t('settings.username')} class="username"> |
114 |
| - {currentUser?.username ?? t('loading')} |
115 |
| - </td> |
116 |
| - </tr> |
117 |
| - <tr> |
118 |
| - <td>{t('settings.dateJoined')}</td> |
119 |
| - <td title={t('settings.dateJoined')}> |
120 |
| - {currentUser?.dateCreated.toLocaleString() ?? t('loading')} |
121 |
| - </td> |
122 |
| - </tr> |
123 |
| - <tr> |
124 |
| - <td colspan="2"> |
125 |
| - <Button type="button" on:click={logout}>{t('settings.logout')}</Button> |
126 |
| - </td> |
127 |
| - </tr> |
| 95 | + <svelte:fragment slot="header"> |
| 96 | + <tr> |
| 97 | + <td colspan="2">{t('settings.profile.header')}</td> |
| 98 | + </tr> |
| 99 | + </svelte:fragment> |
| 100 | + <svelte:fragment slot="body"> |
| 101 | + <tr> |
| 102 | + <td> |
| 103 | + <div class="avatar-wrapper"> |
| 104 | + <EditableAvatar user={currentUser} on:file={updateAvatar} /> |
| 105 | + </div> |
| 106 | + </td> |
| 107 | + <td> |
| 108 | + <Button |
| 109 | + type="button" |
| 110 | + disabled={!currentUser?.avatar} |
| 111 | + loading={isAvatarLoading} |
| 112 | + on:click={removeAvatar} |
| 113 | + > |
| 114 | + {t('settings.profile.avatar.remove')} |
| 115 | + </Button> |
| 116 | + </td> |
| 117 | + </tr> |
| 118 | + <tr> |
| 119 | + <td>{t('settings.profile.username')}</td> |
| 120 | + <td title={t('settings.profile.username')} class="username"> |
| 121 | + {currentUser?.username ?? t('loading')} |
| 122 | + </td> |
| 123 | + </tr> |
| 124 | + <tr> |
| 125 | + <td>{t('settings.profile.dateJoined')}</td> |
| 126 | + <td title={t('settings.profile.dateJoined')}> |
| 127 | + {currentUser?.dateCreated.toLocaleString() ?? t('loading')} |
| 128 | + </td> |
| 129 | + </tr> |
| 130 | + <tr> |
| 131 | + <td colspan="2" class="logout"> |
| 132 | + <Button type="button" on:click={logout}>{t('settings.profile.logout')}</Button> |
| 133 | + </td> |
| 134 | + </tr> |
| 135 | + </svelte:fragment> |
| 136 | + </List> |
| 137 | + |
| 138 | + <List borderless> |
| 139 | + <svelte:fragment slot="header"> |
| 140 | + <tr> |
| 141 | + <td colspan="2">{t('settings.about.header')}</td> |
| 142 | + </tr> |
| 143 | + </svelte:fragment> |
| 144 | + <svelte:fragment slot="body"> |
| 145 | + <tr> |
| 146 | + <td> |
| 147 | + <a href={info.website} target="_blank">{t('settings.about.website')}</a> |
| 148 | + </td> |
| 149 | + </tr> |
| 150 | + <tr> |
| 151 | + <td> |
| 152 | + <a href={info.termsOfService} target="_blank">{t('settings.about.termsOfService')}</a> |
| 153 | + </td> |
| 154 | + </tr> |
| 155 | + <tr> |
| 156 | + <td> |
| 157 | + <a href={info.privacyPolicy} target="_blank">{t('settings.about.privacyPolicy')}</a> |
| 158 | + </td> |
| 159 | + </tr> |
| 160 | + <tr> |
| 161 | + <td> |
| 162 | + <a href={info.sourceCode} target="_blank">{t('settings.about.sourceCode')}</a> |
| 163 | + </td> |
| 164 | + </tr> |
| 165 | + </svelte:fragment> |
128 | 166 | </List>
|
129 | 167 | </div>
|
130 | 168 | {/if}
|
|
136 | 174 | width: 100%;
|
137 | 175 | box-sizing: border-box;
|
138 | 176 | display: flex;
|
| 177 | + flex-direction: column; |
139 | 178 | align-items: center;
|
140 | 179 | justify-content: center;
|
| 180 | + gap: 2em; |
141 | 181 |
|
142 | 182 | @include expanded-width {
|
143 | 183 | padding: 2em;
|
|
155 | 195 | .username {
|
156 | 196 | font-weight: bold;
|
157 | 197 | }
|
| 198 | +
|
| 199 | + .logout { |
| 200 | + text-align: center; |
| 201 | + } |
158 | 202 | </style>
|
0 commit comments