summaryrefslogtreecommitdiff
path: root/src/client/app/common/scripts/can-hide-text.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/app/common/scripts/can-hide-text.ts')
-rw-r--r--src/client/app/common/scripts/can-hide-text.ts16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/client/app/common/scripts/can-hide-text.ts b/src/client/app/common/scripts/can-hide-text.ts
new file mode 100644
index 0000000000..4a4be8d9d0
--- /dev/null
+++ b/src/client/app/common/scripts/can-hide-text.ts
@@ -0,0 +1,16 @@
+export default function(note) {
+ if (note.text == null) return true;
+
+ let txt = note.text;
+
+ if (note.media) {
+ note.media.forEach(file => {
+ txt = txt.replace(file.url, '');
+ if (file.src) txt = txt.replace(file.src, '');
+ });
+
+ if (txt == '') return true;
+ }
+
+ return false;
+}