* Add i18n for E2E import and Export Dialogs Signed-off-by: MTRNord <mtrnord1@gmail.com> * Add various previous missing i18n strings Signed-off-by: MTRNord <mtrnord1@gmail.com> * Translate CreateRoomButton Signed-off-by: MTRNord <mtrnord1@gmail.com> * Add ChatInviteDialog and fix missing to. Signed-off-by: MTRNord <mtrnord1@gmail.com> * Add ConfitmRedactDialog translations Signed-off-by: MTRNord <mtrnord1@gmail.com> * Add DeactivateAccountDialog translations Signed-off-by: MTRNord <mtrnord1@gmail.com> * Add DeviceVerifyDialog translations Signed-off-by: MTRNord <mtrnord1@gmail.com> * Add SessionRestoreErrorDialog translations Signed-off-by: MTRNord <mtrnord1@gmail.com> * Add SetDisplayNameDialog translations Signed-off-by: MTRNord <mtrnord1@gmail.com> * Add UnknownDeviceDialog translations Signed-off-by: MTRNord <mtrnord1@gmail.com> * Add AddressTile translations Signed-off-by: MTRNord <mtrnord1@gmail.com> * Add DeviceVerifyButtons translations Signed-off-by: MTRNord <mtrnord1@gmail.com> * Add Dropdown translations Signed-off-by: MTRNord <mtrnord1@gmail.com> * Add UserSelector translations Signed-off-by: MTRNord <mtrnord1@gmail.com> * Add CaptchaForm translations Signed-off-by: MTRNord <mtrnord1@gmail.com> * Add CasLogin translations Signed-off-by: MTRNord <mtrnord1@gmail.com> * Add CustomServerDialog translations Signed-off-by: MTRNord <mtrnord1@gmail.com> * Add InteractiveAuthEntryComponents translations Signed-off-by: MTRNord <mtrnord1@gmail.com> * Add LoginFooter translations Signed-off-by: MTRNord <mtrnord1@gmail.com> * Add RegistrationForm translations Signed-off-by: MTRNord <mtrnord1@gmail.com> * Add ServerConfig translations Signed-off-by: MTRNord <mtrnord1@gmail.com> * Add MAudioBody translations Signed-off-by: MTRNord <mtrnord1@gmail.com> * Add MImageBody translations Signed-off-by: MTRNord <mtrnord1@gmail.com> * Add MVideoBody translations Signed-off-by: MTRNord <mtrnord1@gmail.com> * Add TextualBody translations Signed-off-by: MTRNord <mtrnord1@gmail.com> * Add UnknownBody translations Signed-off-by: MTRNord <mtrnord1@gmail.com> * Add UrlPreviewSettings translations Signed-off-by: MTRNord <mtrnord1@gmail.com> * Add AuxPanel translations Signed-off-by: MTRNord <mtrnord1@gmail.com> * Add PresenceLabel translations Signed-off-by: MTRNord <mtrnord1@gmail.com> * fix syntax error * weird space :P * missing ',' * fix missing value * fix json fail * remove acidential added file * fix another json fail
97 lines
2.8 KiB
JavaScript
97 lines
2.8 KiB
JavaScript
/*
|
|
Copyright 2015, 2016 OpenMarket Ltd
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
import React from 'react';
|
|
|
|
import MatrixClientPeg from '../../../MatrixClientPeg';
|
|
import sdk from '../../../index';
|
|
import { _t } from '../../../languageHandler';
|
|
|
|
|
|
module.exports = React.createClass({
|
|
displayName: 'PresenceLabel',
|
|
|
|
propTypes: {
|
|
// number of milliseconds ago this user was last active.
|
|
// zero = unknown
|
|
activeAgo: React.PropTypes.number,
|
|
|
|
// if true, activeAgo is an approximation and "Now" should
|
|
// be shown instead
|
|
currentlyActive: React.PropTypes.bool,
|
|
|
|
// offline, online, etc
|
|
presenceState: React.PropTypes.string
|
|
},
|
|
|
|
getDefaultProps: function() {
|
|
return {
|
|
ago: -1,
|
|
presenceState: null
|
|
};
|
|
},
|
|
|
|
getDuration: function(time) {
|
|
if (!time) return;
|
|
var t = parseInt(time / 1000);
|
|
var s = t % 60;
|
|
var m = parseInt(t / 60) % 60;
|
|
var h = parseInt(t / (60 * 60)) % 24;
|
|
var d = parseInt(t / (60 * 60 * 24));
|
|
if (t < 60) {
|
|
if (t < 0) {
|
|
return "0s";
|
|
}
|
|
return s + "s";
|
|
}
|
|
if (t < 60 * 60) {
|
|
return m + "m";
|
|
}
|
|
if (t < 24 * 60 * 60) {
|
|
return h + "h";
|
|
}
|
|
return d + "d ";
|
|
},
|
|
|
|
getPrettyPresence: function(presence) {
|
|
if (presence === "online") return _t("Online");
|
|
if (presence === "unavailable") return _t("Idle"); // XXX: is this actually right?
|
|
if (presence === "offline") return _t("Offline");
|
|
return "Unknown";
|
|
},
|
|
|
|
render: function() {
|
|
if (this.props.activeAgo >= 0) {
|
|
var ago = this.props.currentlyActive ? "" : "for " + (this.getDuration(this.props.activeAgo));
|
|
// var ago = this.getDuration(this.props.activeAgo) + " ago";
|
|
// if (this.props.currentlyActive) ago += " (now?)";
|
|
return (
|
|
<div className="mx_PresenceLabel">
|
|
{ this.getPrettyPresence(this.props.presenceState) } { ago }
|
|
</div>
|
|
);
|
|
}
|
|
else {
|
|
return (
|
|
<div className="mx_PresenceLabel">
|
|
{ this.getPrettyPresence(this.props.presenceState) }
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
});
|