~cytrogen/masto-fe

ref: 96ba9cbc15c562529b2eba4892226dfe6455a349 masto-fe/app/javascript/flavours/glitch/components/media_attachments.jsx -rw-r--r-- 3.8 KiB
96ba9cbc — Cytrogen Merge PR #64: Bookmark folders 15 days ago
                                                                                
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
import PropTypes from "prop-types";

import ImmutablePropTypes from "react-immutable-proptypes";
import ImmutablePureComponent from "react-immutable-pure-component";

import noop from "lodash/noop";

import Bundle from "flavours/glitch/features/ui/components/bundle";
import { MediaGallery, Video, Audio } from "flavours/glitch/features/ui/util/async-components";

export default class MediaAttachments extends ImmutablePureComponent {

  static propTypes = {
    status: ImmutablePropTypes.map.isRequired,
    lang: PropTypes.string,
    height: PropTypes.number,
    width: PropTypes.number,
    revealed: PropTypes.bool,
  };

  static defaultProps = {
    height: 110,
    width: 239,
  };

  updateOnProps = [
    "status",
  ];

  renderLoadingMediaGallery = () => {
    const { height, width } = this.props;

    return (
      <div className='media-gallery' style={{ height, width }} />
    );
  };

  renderLoadingVideoPlayer = () => {
    const { height, width } = this.props;

    return (
      <div className='video-player' style={{ height, width }} />
    );
  };

  renderLoadingAudioPlayer = () => {
    const { height, width } = this.props;

    return (
      <div className='audio-player' style={{ height, width }} />
    );
  };

  render () {
    const { status, width, height, revealed } = this.props;
    const mediaAttachments = status.get("media_attachments");
    const language = status.getIn(["language", "translation"]) || status.get("language") || this.props.lang;

    if (mediaAttachments.size === 0) {
      return null;
    }

    if (mediaAttachments.getIn([0, "type"]) === "audio") {
      const audio = mediaAttachments.get(0);
      const description = audio.getIn(["translation", "description"]) || audio.get("description");

      return (
        <Bundle fetchComponent={Audio} loading={this.renderLoadingAudioPlayer} >
          {Component => (
            <Component
              src={audio.get("url")}
              alt={description}
              lang={language}
              width={width}
              height={height}
              poster={audio.get("preview_url") || status.getIn(["account", "avatar_static"])}
              backgroundColor={audio.getIn(["meta", "colors", "background"])}
              foregroundColor={audio.getIn(["meta", "colors", "foreground"])}
              accentColor={audio.getIn(["meta", "colors", "accent"])}
              duration={audio.getIn(["meta", "original", "duration"], 0)}
            />
          )}
        </Bundle>
      );
    } else if (mediaAttachments.getIn([0, "type"]) === "video") {
      const video = mediaAttachments.get(0);
      const description = video.getIn(["translation", "description"]) || video.get("description");

      return (
        <Bundle fetchComponent={Video} loading={this.renderLoadingVideoPlayer} >
          {Component => (
            <Component
              preview={video.get("preview_url")}
              frameRate={video.getIn(["meta", "original", "frame_rate"])}
              blurhash={video.get("blurhash")}
              src={video.get("url")}
              alt={description}
              lang={language}
              width={width}
              height={height}
              inline
              sensitive={status.get("sensitive")}
              revealed={revealed}
              onOpenVideo={noop}
            />
          )}
        </Bundle>
      );
    } else {
      return (
        <Bundle fetchComponent={MediaGallery} loading={this.renderLoadingMediaGallery} >
          {Component => (
            <Component
              media={mediaAttachments}
              lang={language}
              sensitive={status.get("sensitive")}
              defaultWidth={width}
              revealed={revealed}
              height={height}
              onOpenMedia={noop}
            />
          )}
        </Bundle>
      );
    }
  }

}