mirror of
https://framagit.org/tom79/fediplan.git
synced 2025-04-05 21:51:50 +02:00
Add counters
This commit is contained in:
parent
f110074d69
commit
3f0028cecc
3 changed files with 48 additions and 60 deletions
|
@ -182,7 +182,7 @@
|
||||||
deferred;
|
deferred;
|
||||||
if (data.context) {
|
if (data.context) {
|
||||||
data.context.each(function(index) {
|
data.context.each(function(index) {
|
||||||
var file = files[index] || { error: 'Empty file upload result' };
|
var file = files[index];
|
||||||
deferred = that._addFinishedDeferreds();
|
deferred = that._addFinishedDeferreds();
|
||||||
that._transition($(this)).done(function() {
|
that._transition($(this)).done(function() {
|
||||||
var node = $(this);
|
var node = $(this);
|
||||||
|
|
|
@ -13,6 +13,7 @@ use App\SocialEntity\Compose;
|
||||||
use Symfony\Component\Form\AbstractType;
|
use Symfony\Component\Form\AbstractType;
|
||||||
use Symfony\Component\Form\Extension\Core\Type\CollectionType;
|
use Symfony\Component\Form\Extension\Core\Type\CollectionType;
|
||||||
use Symfony\Component\Form\Extension\Core\Type\FileType;
|
use Symfony\Component\Form\Extension\Core\Type\FileType;
|
||||||
|
use Symfony\Component\Form\Extension\Core\Type\TextareaType;
|
||||||
use Symfony\Component\Form\FormBuilderInterface;
|
use Symfony\Component\Form\FormBuilderInterface;
|
||||||
use Symfony\Component\HttpFoundation\File\File;
|
use Symfony\Component\HttpFoundation\File\File;
|
||||||
use Symfony\Component\OptionsResolver\OptionsResolver;
|
use Symfony\Component\OptionsResolver\OptionsResolver;
|
||||||
|
@ -33,7 +34,7 @@ class ComposeType extends AbstractType {
|
||||||
{
|
{
|
||||||
|
|
||||||
$builder->add('content_warning');
|
$builder->add('content_warning');
|
||||||
$builder->add('content');
|
$builder->add('content', TextareaType::class);
|
||||||
$builder->add('visibility', ChoiceType::class,
|
$builder->add('visibility', ChoiceType::class,
|
||||||
[
|
[
|
||||||
'choices' => [
|
'choices' => [
|
||||||
|
|
|
@ -41,6 +41,13 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class=" col-md-6">
|
||||||
|
<div class="form-group has-feedback">
|
||||||
|
Counter: <span id="count"></span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class=" col-md-3">
|
<div class=" col-md-3">
|
||||||
<div class="form-group has-feedback">
|
<div class="form-group has-feedback">
|
||||||
|
@ -106,15 +113,6 @@
|
||||||
<i class="glyphicon glyphicon-upload"></i>
|
<i class="glyphicon glyphicon-upload"></i>
|
||||||
<span>Start upload</span>
|
<span>Start upload</span>
|
||||||
</button>
|
</button>
|
||||||
<button type="reset" class="btn btn-warning cancel">
|
|
||||||
<i class="glyphicon glyphicon-ban-circle"></i>
|
|
||||||
<span>Cancel upload</span>
|
|
||||||
</button>
|
|
||||||
<button type="button" class="btn btn-danger delete">
|
|
||||||
<i class="glyphicon glyphicon-trash"></i>
|
|
||||||
<span>Delete selected</span>
|
|
||||||
</button>
|
|
||||||
<input type="checkbox" class="toggle" />
|
|
||||||
<!-- The global file processing state -->
|
<!-- The global file processing state -->
|
||||||
<span class="fileupload-process"></span>
|
<span class="fileupload-process"></span>
|
||||||
</div>
|
</div>
|
||||||
|
@ -202,12 +200,6 @@
|
||||||
<span>Start</span>
|
<span>Start</span>
|
||||||
</button>
|
</button>
|
||||||
{% } %}
|
{% } %}
|
||||||
{% if (!i) { %}
|
|
||||||
<button class="btn btn-warning cancel">
|
|
||||||
<i class="glyphicon glyphicon-ban-circle"></i>
|
|
||||||
<span>Cancel</span>
|
|
||||||
</button>
|
|
||||||
{% } %}
|
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
{% } %}
|
{% } %}
|
||||||
|
@ -314,8 +306,19 @@
|
||||||
$('#fileupload').fileupload({
|
$('#fileupload').fileupload({
|
||||||
// Uncomment the following to send cross-domain cookies:
|
// Uncomment the following to send cross-domain cookies:
|
||||||
//xhrFields: {withCredentials: true},
|
//xhrFields: {withCredentials: true},
|
||||||
|
doka: Doka.create({ utils: ['crop', 'filter', 'color', 'resize'] }),
|
||||||
|
edit:
|
||||||
|
Doka.supported() &&
|
||||||
|
function(file) {
|
||||||
|
return this.doka.edit(file).then(function(output) {
|
||||||
|
return output && output.file;
|
||||||
|
});
|
||||||
|
},
|
||||||
beforeSend: function ( xhr ) {
|
beforeSend: function ( xhr ) {
|
||||||
setHeader(xhr);
|
setHeader(xhr);
|
||||||
|
},
|
||||||
|
success: function (data) {
|
||||||
|
|
||||||
},
|
},
|
||||||
url: 'https://{{ instance }}/api/v1/media'
|
url: 'https://{{ instance }}/api/v1/media'
|
||||||
});
|
});
|
||||||
|
@ -327,53 +330,37 @@
|
||||||
window.location.href.replace(/\/[^/]*$/, '/cors/result.html?%s')
|
window.location.href.replace(/\/[^/]*$/, '/cors/result.html?%s')
|
||||||
);
|
);
|
||||||
|
|
||||||
if (window.location.hostname === 'blueimp.github.io') {
|
// Load existing files:
|
||||||
// Demo settings:
|
$('#fileupload').addClass('fileupload-processing');
|
||||||
$('#fileupload').fileupload('option', {
|
$.ajax({
|
||||||
url: '//jquery-file-upload.appspot.com/',
|
// Uncomment the following to send cross-domain cookies:
|
||||||
// Enable image resizing, except for Android and Opera,
|
//xhrFields: {withCredentials: true},
|
||||||
// which actually support image resizing, but fail to
|
url: $('#fileupload').fileupload('option', 'url'),
|
||||||
// send Blob objects via XHR requests:
|
dataType: 'json',
|
||||||
disableImageResize: /Android(?!.*Chrome)|Opera/.test(
|
context: $('#fileupload')[0]
|
||||||
window.navigator.userAgent
|
})
|
||||||
),
|
.always(function() {
|
||||||
maxFileSize: 999000,
|
$(this).removeClass('fileupload-processing');
|
||||||
acceptFileTypes: /(\.|\/)(gif|jpe?g|png)$/i
|
|
||||||
});
|
|
||||||
// Upload server status check for browsers with CORS support:
|
|
||||||
if ($.support.cors) {
|
|
||||||
$.ajax({
|
|
||||||
url: '//jquery-file-upload.appspot.com/',
|
|
||||||
type: 'HEAD'
|
|
||||||
}).fail(function() {
|
|
||||||
$('<div class="alert alert-danger"/>')
|
|
||||||
.text('Upload server currently unavailable - ' + new Date())
|
|
||||||
.appendTo('#fileupload');
|
|
||||||
});
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
// Load existing files:
|
|
||||||
$('#fileupload').addClass('fileupload-processing');
|
|
||||||
$.ajax({
|
|
||||||
// Uncomment the following to send cross-domain cookies:
|
|
||||||
//xhrFields: {withCredentials: true},
|
|
||||||
url: $('#fileupload').fileupload('option', 'url'),
|
|
||||||
dataType: 'json',
|
|
||||||
context: $('#fileupload')[0]
|
|
||||||
})
|
})
|
||||||
.always(function() {
|
.done(function(result) {
|
||||||
$(this).removeClass('fileupload-processing');
|
$(this)
|
||||||
})
|
.fileupload('option', 'done')
|
||||||
.done(function(result) {
|
// eslint-disable-next-line new-cap
|
||||||
$(this)
|
.call(this, $.Event('done'), { result: result });
|
||||||
.fileupload('option', 'done')
|
});
|
||||||
// eslint-disable-next-line new-cap
|
|
||||||
.call(this, $.Event('done'), { result: result });
|
|
||||||
});
|
|
||||||
}
|
|
||||||
});
|
});
|
||||||
var setHeader = function (xhr) {
|
var setHeader = function (xhr) {
|
||||||
xhr.setRequestHeader('Authorization', '{{ token }}');
|
xhr.setRequestHeader('Authorization', '{{ token }}');
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
$("#compose_content").keyup(function(){
|
||||||
|
inputText = $(this).val();
|
||||||
|
inputText = inputText
|
||||||
|
.replace(/(http(s)?:\/\/.)?(www\.)?[-a-zA-Z0-9@:%._\+~#=]{2,256}\.[a-z]{2,6}\b([-a-zA-Z0-9@:%_\+.~#?&//=]*)/g, 'xxxxxxxxxxxxxxxxxxxxxxx')
|
||||||
|
.replace(/(^|[^\/\w])@(([a-z0-9_]+)@[a-z0-9\.\-]+[a-z0-9]+)/ig, '$1@$3');
|
||||||
|
$("#count").text(inputText.length);
|
||||||
|
});
|
||||||
|
</script>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
Loading…
Add table
Reference in a new issue