summary refs log tree commit diff
path: root/src/web/pug/guild_not_linked.pug
blob: 04d2dae33e4f572ec71634d7f808a95887e3cb61 (plain) (blame)
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
extends includes/template.pug

mixin space(space)
  .s-user-card.flex__1
    span.s-avatar.s-avatar__32.s-user-card--avatar
      if space.avatar
        img.s-avatar--image(src=mUtils.getPublicUrlForMxc(space.avatar) alt="")
      else
        .s-avatar--letter.bg-silver-400.bar-md(aria-hidden="true")= space.name[0]
    .s-user-card--info.ai-start
      strong= space.name
      if space.topic
        ul.s-user-card--awards
          li= space.topic

block body
  .s-notice.s-notice__info.d-flex.g16
    div
      != icons.Icons.IconInfo
    div
      - const self = `@${reg.sender_localpart}:${reg.ooye.server_name}`
      strong You picked self-service mode
      .mt4 To complete setup, you need to manually choose a Matrix space to link with #[strong= guild.name].
      .mt4 On Matrix, invite #[code.s-code-block: a.fc-black.s-link(href=`https://matrix.to/#/${self}` target="_blank")= self] to a space. Then you can pick the space on this page.

  h3.mt32.fs-category Choose a space

  form.s-card.bs-sm.p0.s-table-container.bar-md(method="post" action=rel("/api/link-space"))
    input(type="hidden" name="guild_id" value=guild_id)
    table.s-table.s-table__bx-simple
      each space in spaces
        tr
          td.p0: +space(space)
          td: button.s-btn(name="space_id" value=space.room_id hx-post=rel("/api/link-space") hx-trigger="click" hx-disabled-elt="this") Link with this space
      else
        if session.data.mxid
          tr
            td.p16 Invite the bridge to a space, and the space will show up here.
        else
          tr
            td.d-flex.ai-center.pl16.g16
              | You need to log in with Matrix first.
              a.s-btn.s-btn__matrix.s-btn__outlined(href=rel(`/log-in-with-matrix`, {next: `./guild?guild_id=${guild_id}`})) Log in with Matrix

  h3.mt48.fs-category Other choices
  .s-card.d-grid.g16
    form.d-flex.ai-center.g8(method="post" action=rel("/api/autocreate") hx-post=rel("/api/autocreate") hx-indicator="#easy-mode-button")
      input(type="hidden" name="guild_id" value=guild_id)
      input(type="hidden" name="autocreate" value="true")
      label.s-label.fl-grow1
        | Do it automatically
        p.s-description If you want, OOYE can create and manage the Matrix space so you don't have to.
      button.s-btn.s-btn__icon.s-btn__outlined#easy-mode-button
        != icons.Icons.IconWand
        span.ml4= ` Use easy mode`

    form.d-flex.gx16.ai-center(method="post" action=rel("/api/unlink-space"))
      input(type="hidden" name="guild_id" value=guild.id)
      label.s-label.fl-grow1
        | Cancel
        p.s-description Don't want to link this server after all? Here's the button for you.
      button.s-btn.s-btn__icon.s-btn__muted.s-btn__outlined(cx-prevent-default hx-post=rel("/api/unlink-space") hx-indicator="this" hx-disabled-elt="this")
        != icons.Icons.IconUnsync
        span.ml4= ` Unlink`