mirror of
https://github.com/LemmyNet/lemmy.git
synced 2025-01-09 19:53:54 +00:00
42 lines
1 KiB
TypeScript
42 lines
1 KiB
TypeScript
|
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 });
|
||
|
}
|
||
|
}
|