about summary refs log tree commit diff
path: root/app/javascript/flavours/glitch/features/composer/warning/index.js
blob: c225b50e869d620849f9e79cfa7dc290ddbb0ea4 (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
import React from 'react';
import Motion from 'flavours/glitch/util/optional_motion';
import spring from 'react-motion/lib/spring';
import { defineMessages, FormattedMessage } from 'react-intl';

//  This is the spring used with our motion.
const motionSpring = spring(1, { damping: 35, stiffness: 400 });

//  Messages.
const messages = defineMessages({
  disclaimer: {
    defaultMessage: 'Your account is not {locked}. Anyone can follow you to view your follower-only posts.',
    id: 'compose_form.lock_disclaimer',
  },
  locked: {
    defaultMessage: 'locked',
    id: 'compose_form.lock_disclaimer.lock',
  },
});

//  The component.
export default function ComposerWarning () {
  return (
    <Motion
      defaultStyle={{
        opacity: 0,
        scaleX: 0.85,
        scaleY: 0.75,
      }}
      style={{
        opacity: motionSpring,
        scaleX: motionSpring,
        scaleY: motionSpring,
      }}
    >
      {({ opacity, scaleX, scaleY }) => (
        <div
          className='composer--warning'
          style={{
            opacity: opacity,
            transform: `scale(${scaleX}, ${scaleY})`,
          }}
        >
          <FormattedMessage
            {...messages.disclaimer}
            values={{ locked: <a href='/settings/profile'><FormattedMessage {...messages.locked} /></a> }}
          />
        </div>
      )}
    </Motion>
  );
}

ComposerWarning.propTypes = {};