46 строки
1.2 KiB
JavaScript
46 строки
1.2 KiB
JavaScript
// Copyright (c) 2016 Mattermost, Inc. All Rights Reserved.
|
|
// See License.txt for license information.
|
|
|
|
import Constants from 'utils/constants.jsx';
|
|
|
|
import React from 'react';
|
|
import {FormattedDate} from 'react-intl';
|
|
|
|
export function isLicenseExpiring() {
|
|
if (window.mm_license.IsLicensed !== 'true') {
|
|
return false;
|
|
}
|
|
|
|
const timeDiff = parseInt(global.window.mm_license.ExpiresAt, 10) - Date.now();
|
|
return timeDiff <= Constants.LICENSE_EXPIRY_NOTIFICATION;
|
|
}
|
|
|
|
export function isLicenseExpired() {
|
|
if (window.mm_license.IsLicensed !== 'true') {
|
|
return false;
|
|
}
|
|
|
|
const timeDiff = parseInt(global.window.mm_license.ExpiresAt, 10) - Date.now();
|
|
return timeDiff < 0;
|
|
}
|
|
|
|
export function isLicensePastGracePeriod() {
|
|
if (window.mm_license.IsLicensed !== 'true') {
|
|
return false;
|
|
}
|
|
|
|
const timeDiff = Date.now() - parseInt(global.window.mm_license.ExpiresAt, 10);
|
|
return timeDiff > Constants.LICENSE_GRACE_PERIOD;
|
|
}
|
|
|
|
export function displayExpiryDate() {
|
|
return (
|
|
<FormattedDate
|
|
value={new Date(parseInt(global.window.mm_license.ExpiresAt, 10))}
|
|
day='2-digit'
|
|
month='long'
|
|
year='numeric'
|
|
/>
|
|
);
|
|
}
|