feat(dashboard): timestamp parsing (#461)

This commit is contained in:
pulchra mentis 2022-06-17 23:03:07 -04:00 committed by spiral
parent 62c5c3865a
commit 33b77470ee
No known key found for this signature in database
GPG Key ID: 244A11E4B0BCF40E
4 changed files with 36 additions and 7 deletions

View File

@ -0,0 +1,26 @@
import moment from 'moment'
const timestampRegex = /<t:(\d{10})(:[tTdDfFR])?>/g
const parseTimestamps = (html: string) => {
return html.replaceAll(
timestampRegex,
(match, p1, p2) => {
const timestamp = moment.unix(parseInt(p1))
const format: string = p2 ? p2[1] : 'f'
if (format !== 'R') {
let dateTimeFormatOptions = {
t: 'HH:mm',
T: 'HH:mm:ss',
d: 'DD/MM/YYYY',
D: 'DD MMMM YYYY',
f: 'DD MMMM YYYY HH:mm',
F: 'dddd, DD MMMM YYYY HH:mm',
}[format]
return timestamp.format(dateTimeFormatOptions)
}
return timestamp.fromNow()
},
)
}
export default parseTimestamps

View File

@ -3,6 +3,7 @@
import { Row, Col, Modal, Image, Button, CardBody, ModalHeader, ModalBody, ModalFooter, Spinner } from 'sveltestrap'; import { Row, Col, Modal, Image, Button, CardBody, ModalHeader, ModalBody, ModalFooter, Spinner } from 'sveltestrap';
import moment from 'moment'; import moment from 'moment';
import { toHTML } from 'discord-markdown'; import { toHTML } from 'discord-markdown';
import parseTimestamps from '../../api/parse-timestamps';
import Edit from './Edit.svelte'; import Edit from './Edit.svelte';
import twemoji from 'twemoji'; import twemoji from 'twemoji';
import Privacy from './Privacy.svelte'; import Privacy from './Privacy.svelte';
@ -21,7 +22,7 @@
let htmlDescription: string; let htmlDescription: string;
$: if (group.description) { $: if (group.description) {
htmlDescription = toHTML(group.description, {embed: true}); htmlDescription = toHTML(parseTimestamps(group.description), {embed: true});
} else { } else {
htmlDescription = "(no description)"; htmlDescription = "(no description)";
} }
@ -124,4 +125,4 @@
{:else if memberMode} {:else if memberMode}
<MemberEdit on:updateMembers bind:group bind:memberMode bind:members /> <MemberEdit on:updateMembers bind:group bind:memberMode bind:members />
{/if} {/if}
</CardBody> </CardBody>

View File

@ -3,6 +3,7 @@
import { Row, Col, Modal, Image, Button, CardBody, ModalHeader, ModalBody } from 'sveltestrap'; import { Row, Col, Modal, Image, Button, CardBody, ModalHeader, ModalBody } from 'sveltestrap';
import moment from 'moment'; import moment from 'moment';
import { toHTML } from 'discord-markdown'; import { toHTML } from 'discord-markdown';
import parseTimestamps from '../../api/parse-timestamps';
import twemoji from 'twemoji'; import twemoji from 'twemoji';
import GroupEdit from './GroupEdit.svelte'; import GroupEdit from './GroupEdit.svelte';
@ -24,14 +25,14 @@
let htmlDescription: string; let htmlDescription: string;
$: if (member.description) { $: if (member.description) {
htmlDescription = toHTML(member.description, {embed: true}); htmlDescription = toHTML(parseTimestamps(member.description), {embed: true});
} else { } else {
htmlDescription = "(no description)"; htmlDescription = "(no description)";
} }
let htmlPronouns: string; let htmlPronouns: string;
$: if (member.pronouns) { $: if (member.pronouns) {
htmlPronouns = toHTML(member.pronouns, {embed: true}); htmlPronouns = toHTML(parseTimestamps(member.pronouns), {embed: true});
} }
let settings = JSON.parse(localStorage.getItem("pk-settings")); let settings = JSON.parse(localStorage.getItem("pk-settings"));
@ -164,4 +165,4 @@
{:else if groupMode} {:else if groupMode}
<GroupEdit on:updateGroups bind:member bind:groups bind:groupMode /> <GroupEdit on:updateGroups bind:member bind:groups bind:groupMode />
{/if} {/if}
</CardBody> </CardBody>

View File

@ -2,6 +2,7 @@
import { Row, Col, Modal, Image, Button } from 'sveltestrap'; import { Row, Col, Modal, Image, Button } from 'sveltestrap';
import moment from 'moment'; import moment from 'moment';
import { toHTML } from 'discord-markdown'; import { toHTML } from 'discord-markdown';
import parseTimestamps from '../../api/parse-timestamps';
import twemoji from 'twemoji'; import twemoji from 'twemoji';
import { System } from '../../api/types'; import { System } from '../../api/types';
@ -13,7 +14,7 @@
let htmlDescription: string; let htmlDescription: string;
let htmlName: string; let htmlName: string;
if (user.description) { if (user.description) {
htmlDescription = toHTML(user.description, {embed: true}); htmlDescription = toHTML(parseTimestamps(user.description), {embed: true});
} else { } else {
htmlDescription = "(no description)"; htmlDescription = "(no description)";
} }
@ -91,4 +92,4 @@
{/if} {/if}
{#if !isPublic} {#if !isPublic}
<Button style="flex: 0" color="primary" on:click={() => editMode = true} aria-label="edit system information">Edit</Button> <Button style="flex: 0" color="primary" on:click={() => editMode = true} aria-label="edit system information">Edit</Button>
{/if} {/if}