diff --git a/public/js/emojionearea.js b/public/js/emojionearea.js index 99835bf..c6d9fdb 100644 --- a/public/js/emojionearea.js +++ b/public/js/emojionearea.js @@ -1400,13 +1400,14 @@ document = window.document || {}; self.editor.html(self.content = ''); } source[sourceValFunc](self.getText()); - let inputText; - inputText = self.getText(); - inputText = inputText - .replace(/(^|[^\/\w])@(([a-z0-9_]+)@[a-z0-9.-]+[a-z0-9]+)/ig, '$1@$3') - .replace(/(http(s)?:\/\/.)?(www\.)?[-a-zA-Z0-9@:%._+~#=]{2,256}\.[a-z]{2,6}\b([-a-zA-Z0-9@:%_+.~#?&/=]*)/g, 'xxxxxxxxxxxxxxxxxxxxxxx'); - - $("#count").text(inputText.length); + var count = 0; + $('.emojionearea-editor').each(function() { + var currentElement = $(this); + count += currentElement.text() + .replace(/(^|[^\/\w])@(([a-z0-9_]+)@[a-z0-9.-]+[a-z0-9]+)/ig, '$1@$3') + .replace(/(http(s)?:\/\/.)?(www\.)?[-a-zA-Z0-9@:%._+~#=]{2,256}\.[a-z]{2,6}\b([-a-zA-Z0-9@:%_+.~#?&/=]*)/g, 'xxxxxxxxxxxxxxxxxxxxxxx').length; + }); + $("#count").text(count); }); if (options.shortcuts) { self.on("@keydown", function(_, e) { @@ -1461,17 +1462,18 @@ document = window.document || {}; callback($.map(map, function (emoji) { return emoji.indexOf(term) === 0 ? emoji : null; })); - } else if (term.startsWith("@")){ + } else if (term.startsWith("@") && term.substring(1).length > 2){ $.ajax({ url: "https://"+$('#data_api').attr('data-instance')+"/api/v2/search?type=accounts&q="+term.substring(1), headers: {"Authorization": $('#data_api').attr('data-token')}, context: document.body }).done(function(value) { + alert(value); callback($.map(value.accounts, function (value) { return value; })); }); - }else if (term.startsWith("#")){ + }else if (term.startsWith("#") && term.substring(1).length > 2){ $.ajax({ url: "https://"+$('#data_api').attr('data-instance')+"/api/v2/search?type=hashtags&q="+term.substring(1), headers: {"Authorization": $('#data_api').attr('data-token')}, diff --git a/src/SocialEntity/Instance.php b/src/SocialEntity/Instance.php index ef743c6..f013445 100644 --- a/src/SocialEntity/Instance.php +++ b/src/SocialEntity/Instance.php @@ -54,6 +54,20 @@ class MediaAttachments { $this->supported_mime_types = $supported_mime_types; } + public function getSupportedFiles() : string { + $values = "/(\.|\/)(gif|jpe?g|apng|png|mp4|mp3|avi|mov|webm|wmv|flv|wav|ogg)$/i"; + if(isset($this->supported_mime_types) && count($this->supported_mime_types) >0) { + $values = "/(\.|\/)("; + foreach ($this->supported_mime_types as $value) { + $cleanedValue = preg_replace("#(image/)|(video/)|(audio/)#","",$value,); + if(!str_contains($cleanedValue, '.') && !str_contains($cleanedValue, '-')) { + $values .= $cleanedValue.'|'; + } + } + $values .= "jpg)$/i"; + } + return $values; + } public function getImageSizeLimit(): int { return $this->image_size_limit; diff --git a/templates/fediplan/schedule.html.twig b/templates/fediplan/schedule.html.twig index fcd1498..4cbf4e6 100644 --- a/templates/fediplan/schedule.html.twig +++ b/templates/fediplan/schedule.html.twig @@ -56,7 +56,7 @@
-   0 +   0  /{{ instanceConfiguration.statuses.maxCharacters }}
@@ -437,7 +437,7 @@ $('#media_container').append($(content)); }, - acceptFileTypes: /(\.|\/)(gif|jpe?g|apng|png|mp4|mp3|avi|mov|webm|wmv|flv|wav|ogg)$/i + acceptFileTypes: {{ app.session.get("instance").getConfiguration().getMediaAttachments().getSupportedFiles() }} }); // Enable iframe cross-domain access via redirect option: