about summary refs log tree commit diff
path: root/app/javascript/flavours/glitch/components/timeline_hint.js
diff options
context:
space:
mode:
authorThibG <thib@sitedethib.com>2020-06-17 18:28:28 +0200
committerGitHub <noreply@github.com>2020-06-17 18:28:28 +0200
commitc7da2cc5a1821e589e7241aec21d8bb426722c2a (patch)
treee61b37ed8d8c5a8446cf656600c90c85ccdc983c /app/javascript/flavours/glitch/components/timeline_hint.js
parent0a5cf075cdddbbe40e79ebad8ee2b1abd62d3200 (diff)
parent9a641a5a0e7a8d45bf6d3b8e4bfdc269def2dc06 (diff)
Merge pull request #1358 from ThibG/glitch-soc/merge-upstream
Merge upstream changes
Diffstat (limited to 'app/javascript/flavours/glitch/components/timeline_hint.js')
-rw-r--r--app/javascript/flavours/glitch/components/timeline_hint.js18
1 files changed, 18 insertions, 0 deletions
diff --git a/app/javascript/flavours/glitch/components/timeline_hint.js b/app/javascript/flavours/glitch/components/timeline_hint.js
new file mode 100644
index 000000000..fb55a62cc
--- /dev/null
+++ b/app/javascript/flavours/glitch/components/timeline_hint.js
@@ -0,0 +1,18 @@
+import React from 'react';
+import PropTypes from 'prop-types';
+import { FormattedMessage } from 'react-intl';
+
+const TimelineHint = ({ resource, url }) => (
+  <div className='timeline-hint'>
+    <strong><FormattedMessage id='timeline_hint.remote_resource_not_displayed' defaultMessage='{resource} from other servers are not displayed.' values={{ resource }} /></strong>
+    <br />
+    <a href={url} target='_blank'><FormattedMessage id='account.browse_more_on_origin_server' defaultMessage='Browse more on the original profile' /></a>
+  </div>
+);
+
+TimelineHint.propTypes = {
+  resource: PropTypes.node.isRequired,
+  url: PropTypes.string.isRequired,
+};
+
+export default TimelineHint;