summaryrefslogtreecommitdiffstats
path: root/ui/src/components/cake-day.tsx
blob: 67ac7f8bf62c6ab1f98fe055daa5a57c552cf6c9 (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
import { Component } from 'inferno';
import moment from 'moment';
import { i18n } from '../i18next';

interface CakeDayProps {
  creator_name: string;
  creator_published: string;
}

export class CakeDay extends Component<CakeDayProps, any> {
  render() {
    const { creator_name, creator_published } = this.props;

    return (
      this.isCakeDay(creator_published) && (
        <div
          className="mr-lg-2 d-inline-block unselectable pointer mx-2"
          data-tippy-content={this.cakeDayTippy(creator_name)}
        >
          <svg class="icon icon-inline">
            <use xlinkHref="#icon-cake"></use>
          </svg>
        </div>
      )
    );
  }

  isCakeDay(input: string): boolean {
    const userCreationDate = moment.utc(input).local();
    const currentDate = moment(new Date());

    return (
      userCreationDate.date() === currentDate.date() &&
      userCreationDate.month() === currentDate.month()
    );
  }

  cakeDayTippy(creator_name: string): string {
    return i18n.t('cake_day_info', { creator_name });
  }
}