about summary refs log tree commit diff
path: root/app/javascript/flavours/glitch/features/composer/upload_form/progress/index.js
blob: 8c4b0eea659241f615d473af53732017416c1d64 (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
//  Package imports.
import PropTypes from 'prop-types';
import React from 'react';
import {
  defineMessages,
  FormattedMessage,
} from 'react-intl';
import spring from 'react-motion/lib/spring';

//  Components.
import Icon from 'flavours/glitch/components/icon';

//  Utils.
import Motion from 'flavours/glitch/util/optional_motion';

//  Messages.
const messages = defineMessages({
  upload: {
    defaultMessage: 'Uploading...',
    id: 'upload_progress.label',
  },
});

//  The component.
export default function ComposerUploadFormProgress ({ progress }) {

  //  The result.
  return (
    <div className='composer--upload_form--progress'>
      <Icon icon='upload' />
      <div className='message'>
        <FormattedMessage {...messages.upload} />
        <div className='backdrop'>
          <Motion
            defaultStyle={{ width: 0 }}
            style={{ width: spring(progress) }}
          >
            {({ width }) =>
              (<div
                className='tracker'
                style={{ width: `${width}%` }}
              />)
            }
          </Motion>
        </div>
      </div>
    </div>
  );
}

//  Props.
ComposerUploadFormProgress.propTypes = { progress: PropTypes.number };