mue/src/features/greeting/Greeting.jsx

166 lines
4.7 KiB
React
Raw Normal View History

import variables from 'config/variables';
import { PureComponent, createRef } from 'react';
import { nth, convertTimezone } from 'utils/date';
import EventBus from 'utils/eventbus';
2020-11-29 14:32:08 +00:00
import './greeting.scss';
const isEventsEnabled = localStorage.getItem('events') !== 'false';
2021-08-14 19:10:48 +00:00
export default class Greeting extends PureComponent {
2021-03-23 13:10:34 +00:00
constructor() {
super();
2019-10-20 12:39:01 +00:00
this.state = {
greeting: '',
2019-10-20 12:39:01 +00:00
};
this.timer = undefined;
2021-08-27 22:08:32 +00:00
this.greeting = createRef();
2020-10-13 14:30:53 +00:00
}
2019-10-20 12:39:01 +00:00
2023-03-16 11:11:18 +00:00
/**
* Change the greeting message for the events of Christmas, New Year and Halloween.
* If the events setting is disabled, then the greeting message will not be changed.
* @param {Date} time The current time.
* @param {String} message The current greeting message.
* @returns The message variable is being returned.
*/
doEvents(time, message) {
if (!isEventsEnabled) {
2021-01-16 22:43:46 +00:00
return message;
}
// Get current month & day
2021-01-17 16:25:21 +00:00
const month = time.getMonth();
const date = time.getDate();
// Parse the customEvents from localStorage
const customEvents = JSON.parse(localStorage.getItem('customEvents') || '[]');
const event = customEvents.find((e) => e.month - 1 === month && e.date === date);
if (event) {
message = variables.getMessage(event.id);
2021-01-16 22:43:46 +00:00
}
2020-07-20 21:39:31 +00:00
return message;
}
2023-03-16 11:11:18 +00:00
/**
* It takes a date object and returns the age of the person in years.
* @param {Date} date The date of birth.
* @returns The age of the person.
*/
calculateAge(date) {
const diff = Date.now() - date.getTime();
const birthday = new Date(diff);
return Math.abs(birthday.getUTCFullYear() - 1970);
}
getGreeting(time = 60000 - (Date.now() % 60000)) {
this.timer = setTimeout(() => {
let now = new Date();
const timezone = localStorage.getItem('timezone');
if (timezone && timezone !== 'auto') {
now = convertTimezone(now, timezone);
}
const hour = now.getHours();
let message;
switch (true) {
case hour < 12:
message = variables.getMessage('widgets.greeting.morning');
break;
case hour < 18:
message = variables.getMessage('widgets.greeting.afternoon');
break;
default:
message = variables.getMessage('widgets.greeting.evening');
break;
}
2019-11-06 19:03:17 +00:00
2021-08-15 19:33:06 +00:00
// Events and custom
const custom = localStorage.getItem('defaultGreetingMessage');
if (custom === 'false') {
message = '';
2021-08-15 19:33:06 +00:00
} else {
message = this.doEvents(now, message);
}
// Name
let name = '';
const data = localStorage.getItem('greetingName');
if (typeof data === 'string') {
if (data.replace(/\s/g, '').length > 0) {
name = `, ${data.trim()}`;
}
2021-02-08 17:29:07 +00:00
}
2019-12-01 13:29:07 +00:00
const birthday = localStorage.getItem('birthdayenabled');
if (custom === 'false' && birthday !== 'true') {
name = name.replace(',', '');
}
2020-07-21 10:02:22 +00:00
// Birthday
if (birthday === 'true') {
2021-08-11 15:21:35 +00:00
const birth = new Date(localStorage.getItem('birthday'));
if (birth.getDate() === now.getDate() && birth.getMonth() === now.getMonth()) {
2022-11-06 11:59:59 +00:00
if (localStorage.getItem('birthdayage') === 'true' && this.calculateAge(birth) !== 0) {
const text = variables.getMessage('widgets.greeting.birthday').split(' ');
message = `${text[0]} ${nth(this.calculateAge(birth))} ${text[1]}`;
2021-08-11 15:21:35 +00:00
} else {
message = variables.getMessage('widgets.greeting.birthday');
2021-08-11 15:21:35 +00:00
}
}
}
2020-11-30 16:47:22 +00:00
// Set the state to the greeting string
this.setState({
greeting: `${message}${name}`,
});
this.getGreeting();
}, time);
2019-10-20 12:39:01 +00:00
}
componentDidMount() {
EventBus.on('refresh', (data) => {
if (data === 'greeting' || data === 'timezone') {
if (localStorage.getItem('greeting') === 'false') {
return (this.greeting.current.style.display = 'none');
}
this.timer = null;
this.getGreeting(0);
2021-08-27 22:08:32 +00:00
this.greeting.current.style.display = 'block';
this.greeting.current.style.fontSize = `${
1.6 * Number((localStorage.getItem('zoomGreeting') || 100) / 100)
}em`;
}
});
// this comment can apply to all widget zoom features apart from the general one in the Accessibility section
// in a nutshell: 1.6 is the current font size, and we do "localstorage || 100" so we don't have to try that 4.0 -> 5.0 thing again
this.greeting.current.style.fontSize = `${
1.6 * Number((localStorage.getItem('zoomGreeting') || 100) / 100)
}em`;
this.getGreeting(0);
2019-10-20 12:39:01 +00:00
}
2020-07-20 21:39:31 +00:00
componentWillUnmount() {
EventBus.off('refresh');
}
2019-10-20 12:39:01 +00:00
render() {
2021-08-27 22:08:32 +00:00
return (
<span className="greeting" ref={this.greeting}>
2021-08-27 22:08:32 +00:00
{this.state.greeting}
</span>
2021-08-27 22:08:32 +00:00
);
2019-10-20 12:39:01 +00:00
}
2019-11-29 12:04:12 +00:00
}