File size: 1,600 Bytes
1e92f2d |
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 |
import { recordTracksEvent } from '@automattic/calypso-analytics';
import { useEffect } from 'react';
import { useSelector } from 'react-redux';
import getUserSettings from 'calypso/state/selectors/get-user-settings';
import { isFetchingUserSettings } from 'calypso/state/user-settings/selectors';
const RESURRECTION_DAY_LIMIT = 373; // A user is considered resurrected if they have not been seen for at least these number of days.
const RESURRECTION_DAY_LIMIT_IN_SECONDS = RESURRECTION_DAY_LIMIT * 24 * 60 * 60;
const isResurrected = ( lastSeen ) => {
// Get the current timestamp in seconds
const nowInSeconds = Math.floor( Date.now() / 1000 );
// This constant defines the timestamp for a point in time beyond which a formally dormant user is considered resurrected.
const lastSeenThreshold = nowInSeconds - RESURRECTION_DAY_LIMIT_IN_SECONDS;
// Consider a user resurrected if they were last seen at a time later than the lastSeen threshold.
return lastSeen < lastSeenThreshold;
};
const TrackResurrections = () => {
const userSettings = useSelector( getUserSettings ) || {};
const lastSeen = userSettings.last_admin_activity_timestamp || Math.floor( Date.now() / 1000 );
const isFetching = useSelector( isFetchingUserSettings );
useEffect( () => {
if ( isFetching ) {
return;
}
if ( ! isResurrected( lastSeen ) ) {
return;
}
recordTracksEvent( 'calypso_user_resurrected', {
last_seen: lastSeen,
day_limit: RESURRECTION_DAY_LIMIT,
} );
}, [ lastSeen ] ); // Only run this when LastSeen value changes.
return null;
};
export default TrackResurrections;
|