summaryrefslogtreecommitdiffstats
path: root/ui/src/components/moment-time.tsx
blob: 76e5fe289430e30e3cf2d53f59c578db536dc625 (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
import { Component } from 'inferno';
import moment from 'moment';
import { getMomentLanguage, setupTippy, capitalizeFirstLetter } from '../utils';
import { i18n } from '../i18next';

interface MomentTimeProps {
  data: {
    published?: string;
    when_?: string;
    updated?: string;
  };
}

export class MomentTime extends Component<MomentTimeProps, any> {
  constructor(props: any, context: any) {
    super(props, context);

    let lang = getMomentLanguage();

    moment.locale(lang);
  }

  componentDidMount() {
    setupTippy();
  }

  render() {
    if (this.props.data.updated) {
      return (
        <span
          data-tippy-content={`${capitalizeFirstLetter(
            i18n.t('modified')
          )} ${this.format(this.props.data.updated)}`}
          className="font-italics pointer unselectable"
        >
          <svg class="icon icon-inline mr-1">
            <use xlinkHref="#icon-edit-2"></use>
          </svg>
          {moment.utc(this.props.data.updated).fromNow()}
        </span>
      );
    } else {
      let str = this.props.data.published || this.props.data.when_;
      return (
        <span
          className="pointer unselectable"
          data-tippy-content={this.format(str)}
        >
          {moment.utc(str).fromNow()}
        </span>
      );
    }
  }

  format(input: string): string {
    return moment
      .utc(input)
      .local()
      .format('LLLL');
  }
}