summary refs log tree commit diff
path: root/components/InfoBar/index.tsx
blob: 290188322264c2b84d82ddb7f778a86f1ce6cabf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
import { ReactNode } from 'react'
import Image from 'next/image'

import system from '~/config/system.json'
import profilePics from '~/utils/profiles'
import styles from './InfoBar.module.css'

interface ArbitraryChildrenProps {
  children: ReactNode
}

interface SideNoteProps {
  text: string
}

interface PostInfoPros {
  publishedDate: Date,
  authorName: string
}

interface SystemMemberInfoProps {
  memberName: string
}

type InfobarProps = (
  ArbitraryChildrenProps
  | SideNoteProps
  | PostInfoPros
  | SystemMemberInfoProps
)

export default function InfoBar(props: InfobarProps) {
  if ('text' in props) {
    return (
      <aside className={`${styles.infobar} ${styles.sideNote}`}>
        {props.text}
      </aside>
    )
  }

  if ('authorName' in props) {
    const authorKey = props.authorName.toLowerCase()
    const author = system.members.find((member) => member.name === props.authorName)
    const style = { '--author-color': author?.color } as React.CSSProperties
    const picture = profilePics[authorKey]

    return (
      <aside className={`${styles.infobar} ${styles.postMeta}`} style={style}>
        {picture && <Image alt="" width={50} height={50} src={picture} />}
        <span>
          by <span className={styles.author}>{props.authorName}</span>;{' '}
          <span className={styles.date}>published {props.publishedDate.toLocaleDateString()}</span>
        </span>
      </aside>
    )
  }

  if ('memberName' in props) {
    const memberKey = props.memberName.toLowerCase()
    const member = system.members.find((member) => member.name === props.memberName)
    const style = { '--member-color': member?.color } as React.CSSProperties
    const picture = profilePics[memberKey]

    return (
      <aside className={`${styles.infobar} ${styles.memberProfile}`} style={style}>
        <Image alt="" width={150} height={150} src={picture} />
        <h1>{props.memberName}</h1>
      </aside>
    )
  }

  if ('children' in props) {
    return (
      <aside className={styles.infobar}>
        {props.children}
      </aside>
    )
  }

  throw new Error('Unknown infobar type')
}