Some changes

This commit is contained in:
Thomas 2020-05-01 18:29:02 +02:00
parent af3a7323ce
commit 65acc0295a
5 changed files with 38 additions and 13 deletions

View file

@ -27,9 +27,5 @@ See: [Download Composer](https://getcomposer.org/download/)
Your site needs to target /path/to/FediPlan/public Your site needs to target /path/to/FediPlan/public
#### TODO:
1. Polls
2. Autocompletion for mentions, tags and emojis
3. Check and edit scheduled statuses.
#### Support My work at [fedilab.app](https://fedilab.app/page/donations/) #### Support My work at [fedilab.app](https://fedilab.app/page/donations/)

View file

@ -8,3 +8,12 @@ files:
zh-CN: zh-CN zh-CN: zh-CN
pt-PT: pt-PT pt-PT: pt-PT
pt-BR: pt-BR pt-BR: pt-BR
- source: /translations/fediplan+intl-icu.en.yaml
translation: /%original_path%/fediplan+intl-icu.%two_letters_code%.%file_extension%
update_option: update_without_changes
languages_mapping:
two_letters_code:
zh-TW: zh-TW
zh-CN: zh-CN
pt-PT: pt-PT
pt-BR: pt-BR

View file

@ -1430,7 +1430,7 @@ document = window.document || {};
editor.textcomplete([ editor.textcomplete([
{ {
id: css_class, id: css_class,
match: /\B((:[\-+\w]*)|(@[\-+\w]*))$/, match: /\B((:[\-+\w]*)|(@[\-+\w]*)|(#[\-+\w]*))$/,
search: function (term, callback) { search: function (term, callback) {
if (term.startsWith(":")) { if (term.startsWith(":")) {
@ -1443,27 +1443,41 @@ document = window.document || {};
headers: {"Authorization": $('#data_api').attr('data-token')}, headers: {"Authorization": $('#data_api').attr('data-token')},
context: document.body context: document.body
}).done(function(value) { }).done(function(value) {
// value = eval("(" + value + ")");
callback($.map(value.accounts, function (value) { callback($.map(value.accounts, function (value) {
return value; return value;
})); }));
}); });
}else if (term.startsWith("#")){
$.ajax({
url: "https://"+$('#data_api').attr('data-instance')+"/api/v2/search?type=hashtags&q="+term.substring(1),
headers: {"Authorization": $('#data_api').attr('data-token')},
context: document.body
}).done(function(value) {
callback($.map(value.hashtags, function (value) {
return value;
}));
});
} }
}, },
template: function (value) { template: function (value) {
if (typeof value.acct == 'undefined') { if (typeof value.acct != 'undefined') {
return shortnameTo(value, self.emojiTemplate) + " " + value.replace(/:/g, '');
} else {
return '<img src="'+value.avatar+'" width="20"/>&nbsp;@'+value.acct; return '<img src="'+value.avatar+'" width="20"/>&nbsp;@'+value.acct;
} else if (typeof value.name != 'undefined') {
return '#'+value.name;
} else {
return shortnameTo(value, self.emojiTemplate) + " " + value.replace(/:/g, '');
} }
}, },
replace: function (value) { replace: function (value) {
if (typeof value.acct == 'undefined') { if (typeof value.acct != 'undefined') {
return shortnameTo(value, self.emojiTemplate);
}else{
return "@"+value.acct+ "&nbsp;"; return "@"+value.acct+ "&nbsp;";
}else if (typeof value.name != 'undefined') {
return "#"+value.name+ "&nbsp;";
}else{
return shortnameTo(value, self.emojiTemplate);
} }
}, },
cache: true, cache: true,

View file

@ -247,6 +247,12 @@ class FediPlanController extends AbstractController
unset($compose); unset($compose);
unset($form); unset($form);
$compose = new Compose(); $compose = new Compose();
$pollOption1 = new PollOption();
$pollOption1->setTitle("");
$compose->getPollOptions()->add($pollOption1);
$pollOption2 = new PollOption();
$pollOption2->setTitle("");
$compose->getPollOptions()->add($pollOption2);
$session->getFlashBag()->add( $session->getFlashBag()->add(
'Success', 'Success',
'The message has been scheduled' 'The message has been scheduled'

View file

@ -75,7 +75,7 @@
<blockquote class="blockquote text-center" style="margin-top: 50px;"> <blockquote class="blockquote text-center" style="margin-top: 50px;">
<p class="mb-0">{{ 'page.index.about'|trans |raw}}</p> <p class="mb-0">{{ 'page.index.about'|trans |raw}}</p>
<p>{{ 'page.index.data'|trans |raw}}</p> <p>{{ 'page.index.data'|trans |raw}}</p>
<footer class="blockquote-footer">FediPlan 1.0.0</footer> <footer class="blockquote-footer">FediPlan 1.1.0</footer>
</blockquote> </blockquote>
{{ form_end(form) }} {{ form_end(form) }}