]> git.mxchange.org Git - friendica.git/blobdiff - view/templates/item/compose.tpl
Merge pull request #12954 from MrPetovan/bug/12555-domain-block-contact-search
[friendica.git] / view / templates / item / compose.tpl
index 226014ff9a5faa9d8ad5be1d2f04107bc6ca10df..60c27da35f2a3b93d447ac9629817b956f60292c 100644 (file)
@@ -1,10 +1,10 @@
-<div class="generic-page-wrapper"css>
+<div class="generic-page-wrapper">
        <h2>{{$l10n.compose_title}}</h2>
        {{if $l10n.always_open_compose}}
        <p>{{$l10n.always_open_compose nofilter}}</p>
        {{/if}}
        <div id="profile-jot-wrapper">
-               <form class="comment-edit-form dropzone" data-item-id="{{$id}}" id="comment-edit-form-{{$id}}" action="compose/{{$type}}" method="post">
+               <form class="comment-edit-form" data-item-id="{{$id}}" id="comment-edit-form-{{$id}}" action="compose/{{$type}}" method="post">
                        {{*<!--<input type="hidden" name="return" value="{{$return_path}}" />-->*}}
                        <input type="hidden" name="post_id_random" value="{{$rand_num}}" />
                        <input type="hidden" name="post_type" value="{{$posttype}}" />
                                        </button>
                                </span>
                        </p>
-                       <p>
-                               <textarea id="comment-edit-text-{{$id}}" class="comment-edit-text form-control text-autosize" name="body" placeholder="{{$l10n.default}}" rows="7" tabindex="3" dir="auto" dir="auto">{{$body}}</textarea>
-                       </p>
-
+                       <div id="dropzone-{{$id}}" class="dropzone" style="overflow:scroll">
+                               <p>
+                                       <textarea id="comment-edit-text-{{$id}}" class="comment-edit-text form-control text-autosize" name="body" placeholder="{{$l10n.default}}" rows="7" tabindex="3" dir="auto" dir="auto">{{$body}}</textarea>
+                               </p>
+                       </div>
                        <p class="comment-edit-submit-wrapper">
 {{if $type == 'post'}}
                                <span role="presentation" class="form-inline">
@@ -69,9 +70,8 @@
                                        <img role="presentation" id="profile-rotator" src="images/rotator.gif" alt="{{$l10n.wait}}" title="{{$l10n.wait}}" style="display: none;" />
                                </span>
                                <span role="presentation" id="character-counter" class="grey text-info"></span>
-                               <button type="button" class="btn btn-defaul" onclick="preview_comment({{$id}});" id="comment-edit-preview-link-{{$id}}" tabindex="5"><i class="fa fa-eye"></i> {{$l10n.preview}}</button>
+                               <button type="button" class="btn btn-default" onclick="preview_comment({{$id}});" id="comment-edit-preview-link-{{$id}}" tabindex="5"><i class="fa fa-eye"></i> {{$l10n.preview}}</button>
                                <button type="submit" class="btn btn-primary" id="comment-edit-submit-{{$id}}" name="submit" tabindex="4"><i class="fa fa-envelope"></i> {{$l10n.submit}}</button>
-                               <div id="dz-previewsCompose" class="dropzone-previews"></div>
                        </p>
 
                        <div id="comment-edit-preview-{{$id}}" class="comment-edit-preview" style="display:none;"></div>
        </div>
 </div>
 <script>
-       // getMByte() is from view/theme/frio/js/dropzone-frio.js
-       // to workaround dysfunctional php Strings:getBytesFromShorthand
-       Dropzone.autoDiscover = false;
-       var dropzoneCompose = new Dropzone( '#comment-edit-form-{{$id}}',  { 
-               paramName: "userfile", // The name that will be used to transfer the file
-               maxFilesize: getMBytes('{{$max_imagesize}}'), // MB
-               previewsContainer: '#dz-previewsCompose',
-               preventDuplicates: true,
-               clickable: true,
-               url: "/media/photo/upload?response=url&album=",
-               accept: function(file, done) {
-                       done();
-               },
-               init: function() {
-                       this.on("success", function(file, serverResponse) {
-                               var target = $('#comment-edit-text-{{$id}}')
-                               var resp = $(serverResponse).find('div#content').text()
-                               if (target.setRangeText) {
-                                       //if setRangeText function is supported by current browser
-                                       target.setRangeText(" " + $.trim(resp) + " ")
-                               } else {
-                                       target.focus()
-                                       document.execCommand('insertText', false /*no UI*/, $.trim(resp));
-                               }
-                       });
-               },
-       });
-       
-       $('#comment-edit-form-{{$id}}').on('paste', function(event){
-               const items = (event.clipboardData || event.originalEvent.clipboardData).items;
-               items.forEach((item) => {
-                       if (item.kind === 'file') {
-                               // adds the file to your dropzone instance
-                               dropzoneCompose.addFile(item.getAsFile())
-                       }
-               })
-       });
+       dzFactory.setupDropzone('#dropzone-{{$id}}', 'comment-edit-text-{{$id}}'); 
 </script>