summaryrefslogtreecommitdiffstats
path: root/ui/src/components/iframely-card.tsx
blob: 0d3f43f69bdba13253a737153a94541487cf5b73 (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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
import { Component, linkEvent } from 'inferno';
import { Post } from '../interfaces';
import { mdToHtml } from '../utils';
import { i18n } from '../i18next';

interface FramelyCardProps {
  post: Post;
}

interface FramelyCardState {
  expanded: boolean;
}

export class IFramelyCard extends Component<
  FramelyCardProps,
  FramelyCardState
> {
  private emptyState: FramelyCardState = {
    expanded: false,
  };

  constructor(props: any, context: any) {
    super(props, context);
    this.state = this.emptyState;
  }

  render() {
    let post = this.props.post;
    return (
      <>
        {post.embed_title && !this.state.expanded && (
          <div class="card mt-3 mb-2">
            <div class="row">
              <div class="col-12">
                <div class="card-body">
                  <h5 class="card-title d-inline">
                    {post.embed_html ? (
                      <span
                        class="unselectable pointer"
                        onClick={linkEvent(this, this.handleIframeExpand)}
                        data-tippy-content={i18n.t('expand_here')}
                      >
                        {post.embed_title}
                      </span>
                    ) : (
                      <span>
                        <a
                          class="text-body"
                          target="_blank"
                          href={post.url}
                          rel="noopener"
                        >
                          {post.embed_title}
                        </a>
                      </span>
                    )}
                  </h5>
                  <span class="d-inline-block ml-2 mb-2 small text-muted">
                    <a
                      class="text-muted font-italic"
                      target="_blank"
                      href={post.url}
                      rel="noopener"
                    >
                      {new URL(post.url).hostname}
                      <svg class="ml-1 icon">
                        <use xlinkHref="#icon-external-link"></use>
                      </svg>
                    </a>
                    {post.embed_html && (
                      <span
                        class="ml-2 pointer text-monospace"
                        onClick={linkEvent(this, this.handleIframeExpand)}
                        data-tippy-content={i18n.t('expand_here')}
                      >
                        {this.state.expanded ? '[-]' : '[+]'}
                      </span>
                    )}
                  </span>
                  {post.embed_description && (
                    <div
                      className="card-text small text-muted md-div"
                      dangerouslySetInnerHTML={mdToHtml(post.embed_description)}
                    />
                  )}
                </div>
              </div>
            </div>
          </div>
        )}
        {this.state.expanded && (
          <div
            class="mt-3 mb-2"
            dangerouslySetInnerHTML={{ __html: post.embed_html }}
          />
        )}
      </>
    );
  }

  handleIframeExpand(i: IFramelyCard) {
    i.state.expanded = !i.state.expanded;
    i.setState(i.state);
  }
}