Merge branch 'develop' into activitypub

This commit is contained in:
Barış Soner Uşaklı
2024-09-13 12:47:14 -04:00
10 changed files with 59 additions and 20 deletions

View File

@@ -35,6 +35,9 @@
"@isaacs/ttlcache": "1.4.1",
"@nodebb/spider-detector": "2.0.3",
"@popperjs/core": "2.11.8",
"@textcomplete/contenteditable": "0.1.13",
"@textcomplete/core": "0.1.13",
"@textcomplete/textarea": "0.1.13",
"ace-builds": "1.36.2",
"archiver": "7.0.1",
"async": "3.2.6",
@@ -96,7 +99,7 @@
"multiparty": "4.2.3",
"nconf": "0.12.1",
"nodebb-plugin-2factor": "7.5.4",
"nodebb-plugin-composer-default": "10.2.38",
"nodebb-plugin-composer-default": "10.2.39",
"nodebb-plugin-dbsearch": "6.2.5",
"nodebb-plugin-emoji": "5.1.15",
"nodebb-plugin-emoji-android": "4.0.0",

View File

@@ -12,8 +12,8 @@
"container.card": "Карта",
"container.card-header": "Заглавна част на карта",
"container.card-body": "Основна част на карта",
"container.title": "Title",
"container.body": "Body",
"container.title": "Заглавие",
"container.body": "Съдържание",
"container.alert": "Предупреждение",
"alert.confirm-delete": "Наистина ли искате да изтриете джаджата?",

View File

@@ -1,6 +1,6 @@
{
"all-users": "Всички потребители",
"followed-users": "Followed Users",
"followed-users": "Следвани потребители",
"latest-users": "Последни потребители",
"top-posters": "С най-много публикации",
"most-reputation": "С най-много репутация",

View File

@@ -12,8 +12,8 @@
"container.card": "Scheda",
"container.card-header": "Intestazione della scheda",
"container.card-body": "Corpo della scheda",
"container.title": "Title",
"container.body": "Body",
"container.title": "Titolo",
"container.body": "Corpo",
"container.alert": "Avviso",
"alert.confirm-delete": "Sei sicuro di voler eliminare questo widget?",

View File

@@ -1,6 +1,6 @@
{
"all-users": "Tutti gli utenti",
"followed-users": "Followed Users",
"followed-users": "Utenti seguiti",
"latest-users": "Ultimi Utenti",
"top-posters": "Utenti più attivi",
"most-reputation": "Reputazione più alta",

View File

@@ -12,8 +12,8 @@
"container.card": "การ์ด",
"container.card-header": "ส่วนหัวของการ์ด",
"container.card-body": "ข้างในการ์ด",
"container.title": "Title",
"container.body": "Body",
"container.title": "ชื่อ",
"container.body": "เนื้อหา",
"container.alert": "แจ้งเตือน",
"alert.confirm-delete": "คุณต้องการจะลบวิดเจ็ตนี้หรือไม่?",

View File

@@ -1,6 +1,6 @@
{
"all-users": "ผู้ใช้งานทั้งหมด",
"followed-users": "Followed Users",
"followed-users": "ผู้ใช้งานที่ติดตาม",
"latest-users": "ผู้ใช้งานล่าสุด",
"top-posters": "ผู้ที่โพสต์มากที่สุด",
"most-reputation": "ผู้ที่มีชื่อเสียงมากที่สุด",

View File

@@ -11,7 +11,7 @@ define('forum/chats', [
'forum/chats/user-list',
'forum/chats/message-search',
'forum/chats/pinned-messages',
'composer/autocomplete',
'autocomplete',
'hooks',
'bootbox',
'alerts',

View File

@@ -1,6 +1,8 @@
'use strict';
define('autocomplete', ['api', 'alerts'], function (api, alerts) {
define('autocomplete', [
'api', 'alerts', '@textcomplete/core', '@textcomplete/textarea', '@textcomplete/contenteditable',
], function (api, alerts, { Textcomplete }, { TextareaEditor }, { ContenteditableEditor }) {
const autocomplete = {};
const _default = {
delay: 200,
@@ -129,5 +131,37 @@ define('autocomplete', ['api', 'alerts'], function (api, alerts) {
onselect(event, ui);
}
// This is a generic method that is also used by the chat
autocomplete.setup = function ({ element, strategies, options }) {
const targetEl = element.get(0);
if (!targetEl) {
return;
}
var editor;
if (targetEl.nodeName === 'TEXTAREA' || targetEl.nodeName === 'INPUT') {
editor = new TextareaEditor(targetEl);
} else if (targetEl.nodeName === 'DIV' && targetEl.getAttribute('contenteditable') === 'true') {
editor = new ContenteditableEditor(targetEl);
}
if (!editor) {
throw new Error('unknown target element type');
}
// yuku-t/textcomplete inherits directionality from target element itself
targetEl.setAttribute('dir', document.querySelector('html').getAttribute('data-dir'));
var textcomplete = new Textcomplete(editor, strategies, {
dropdown: options,
});
textcomplete.on('rendered', function () {
if (textcomplete.dropdown.items.length) {
// Activate the first item by default.
textcomplete.dropdown.items[0].activate();
}
});
return textcomplete;
};
return autocomplete;
});

View File

@@ -1,13 +1,15 @@
'use strict';
define('quickreply', [
'components', 'composer', 'composer/autocomplete', 'api',
'components', 'autocomplete', 'api',
'alerts', 'uploadHelpers', 'mousetrap', 'storage', 'hooks',
], function (
components, composer, autocomplete, api,
components, autocomplete, api,
alerts, uploadHelpers, mousetrap, storage, hooks
) {
const QuickReply = {};
const QuickReply = {
_active: {},
};
QuickReply.init = function () {
const element = components.get('topic/quickreply/text');
@@ -27,7 +29,7 @@ define('quickreply', [
destroyAutoComplete();
});
$(window).trigger('composer:autocomplete:init', data);
autocomplete._active.core_qr = autocomplete.setup(data);
QuickReply._active.core_qr = autocomplete.setup(data);
mousetrap.bind('ctrl+return', (e) => {
if (e.target === element.get(0)) {
@@ -113,7 +115,7 @@ define('quickreply', [
e.preventDefault();
storage.removeItem(qrDraftId);
const textEl = components.get('topic/quickreply/text');
composer.newReply({
hooks.fire('action:composer.post.new', {
tid: ajaxify.data.tid,
title: ajaxify.data.titleRaw,
body: textEl.val(),
@@ -123,9 +125,9 @@ define('quickreply', [
};
function destroyAutoComplete() {
if (autocomplete._active.core_qr) {
autocomplete._active.core_qr.destroy();
autocomplete._active.core_qr = null;
if (QuickReply._active.core_qr) {
QuickReply._active.core_qr.destroy();
QuickReply._active.core_qr = null;
}
}