summaryrefslogtreecommitdiffstats
path: root/ui/src/components/moment-time.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'ui/src/components/moment-time.tsx')
-rw-r--r--ui/src/components/moment-time.tsx31
1 files changed, 27 insertions, 4 deletions
diff --git a/ui/src/components/moment-time.tsx b/ui/src/components/moment-time.tsx
index fd2a7efa..e3fa0de3 100644
--- a/ui/src/components/moment-time.tsx
+++ b/ui/src/components/moment-time.tsx
@@ -1,6 +1,6 @@
import { Component } from 'inferno';
import moment from 'moment';
-import { getMomentLanguage } from '../utils';
+import { getMomentLanguage, capitalizeFirstLetter } from '../utils';
import { i18n } from '../i18next';
interface MomentTimeProps {
@@ -9,6 +9,7 @@ interface MomentTimeProps {
when_?: string;
updated?: string;
};
+ showAgo?: boolean;
}
export class MomentTime extends Component<MomentTimeProps, any> {
@@ -23,13 +24,35 @@ export class MomentTime extends Component<MomentTimeProps, any> {
render() {
if (this.props.data.updated) {
return (
- <span title={this.props.data.updated} className="font-italics">
- {i18n.t('modified')} {moment.utc(this.props.data.updated).fromNow()}
+ <span
+ data-tippy-content={`${capitalizeFirstLetter(
+ i18n.t('modified')
+ )} ${this.format(this.props.data.updated)}`}
+ className="font-italics pointer unselectable"
+ >
+ <svg class="icon icon-inline mr-1">
+ <use xlinkHref="#icon-edit-2"></use>
+ </svg>
+ {moment.utc(this.props.data.updated).fromNow(!this.props.showAgo)}
</span>
);
} else {
let str = this.props.data.published || this.props.data.when_;
- return <span title={str}>{moment.utc(str).fromNow()}</span>;
+ return (
+ <span
+ className="pointer unselectable"
+ data-tippy-content={this.format(str)}
+ >
+ {moment.utc(str).fromNow(!this.props.showAgo)}
+ </span>
+ );
}
}
+
+ format(input: string): string {
+ return moment
+ .utc(input)
+ .local()
+ .format('LLLL');
+ }
}