avances en plantillas
This commit is contained in:
parent
0f84beacf1
commit
da0530d79b
2062 changed files with 598814 additions and 22 deletions
190
storage/public/dist/libs/dropzone/CHANGELOG.md
vendored
Normal file
190
storage/public/dist/libs/dropzone/CHANGELOG.md
vendored
Normal file
|
|
@ -0,0 +1,190 @@
|
|||
## 6.0.0-beta.2
|
||||
|
||||
- Add `binaryBody` support (thanks to @patrickbussmann and @meg1502).
|
||||
- This adds full support for AWS S3 Multipart Upload.
|
||||
- There is an example setup for this now in `test/test-sites/2-integrations`.
|
||||
|
||||
## 6.0.0-beta.1
|
||||
|
||||
### Breaking
|
||||
|
||||
- Dropzone is dropping IE support! If you still need to support IE, please use
|
||||
`5.9.3`. You can download it here:
|
||||
https://github.com/dropzone/dropzone/releases/download/v5.9.3/dist.zip
|
||||
- `Dropzone.autoDiscover` has been removed! If you want to auto discover your
|
||||
elements, invoke `Dropzone.discover()` after your HTML has loaded and it will
|
||||
do the same.
|
||||
- The `dropzone-amd-module` files have been removed. There is now a
|
||||
`dropzone.js` and a `dropzone.mjs` in the dist folder.
|
||||
- The `min/` folder has been removed. `dropzone.min.js` is now the only
|
||||
file that is minimized.
|
||||
- Remove `Dropzone.extend` and replace by the `just-extend` package.
|
||||
- There is no more `Dropzone.version`.
|
||||
|
||||
## 5.9.3
|
||||
|
||||
- Fix incorrect resize method used for creating thumbnails of existing files
|
||||
(thanks to @gplwhite)
|
||||
|
||||
## 5.9.2
|
||||
|
||||
- Handle `xhr.readyState` in the `submitRequest` function and don't attempt to
|
||||
send if it's not `1` (OPENED). (thanks to @bobbysmith007)
|
||||
|
||||
## 5.9.1
|
||||
|
||||
- Fix the way upload progress is calculated when using chunked uploads. (thanks
|
||||
to @ckovey)
|
||||
|
||||
## 5.9.0
|
||||
|
||||
- Properly handle when timeout is null or 0
|
||||
- Make the default of timeout null
|
||||
|
||||
## 5.8.1
|
||||
|
||||
- Fix custom event polyfill for IE11
|
||||
- Fix build to use ES5 instead of ES6, which was broken due to webpack upgrade.
|
||||
(thanks to @fukayatsu)
|
||||
|
||||
## 5.8.0
|
||||
|
||||
- Dropzone now also triggers custom events on the DOM element. The custom events
|
||||
are the same as the events you can listen on with Dropzone but start with
|
||||
`dropzone:`. (thanks to @1cg)
|
||||
- Moved the `./src/options.js` previewTemplate in its own
|
||||
`preview-template.html` file.
|
||||
- Switched to yarn as the primary package manager (shouldn't affect anybody that
|
||||
is not working Dropzone itself).
|
||||
|
||||
## 5.7.6
|
||||
|
||||
- Revert `dist/min/*.css` files to be named `dist/min/*.min.css`.
|
||||
- Setup bower releases.
|
||||
|
||||
## 5.7.5
|
||||
|
||||
- Rename `blacklistedBrowsers` to `blockedBrowsers` (but still accept
|
||||
`blacklistedBrowsers` for legacy).
|
||||
- Add automatic trigger for packagist deployment.
|
||||
- Fix links in `package.json`.
|
||||
|
||||
## 5.7.4
|
||||
|
||||
- Prevent hidden input field from getting focus (thanks to @sinedied)
|
||||
- Fix documentation of `maxFilesize` (thanks to @alxndr-w)
|
||||
- Fix build issues so the UMD module can be imported properly
|
||||
|
||||
## 5.7.3 (retracted)
|
||||
|
||||
- Add `disablePreviews` option.
|
||||
- Fix IE problems with Symbols.
|
||||
- **WARNING**: This release had issues because the .js files couldn't be
|
||||
imported as AMD/CommonJS packages properly. The standalone version worked fine
|
||||
though. I have retracted this version from npm but have left the release on
|
||||
GitHub.
|
||||
|
||||
## 5.7.2
|
||||
|
||||
- Base the calculation of the chunks to send on the transformed files
|
||||
- Properly display seconds (instead of ms) in error message when timeout is
|
||||
reached
|
||||
- Properly handle it when `options.method` is a function (there was a bug, which
|
||||
always assumed that it was a String) (thanks to @almdac)
|
||||
- Fix orientation on devices that already handle it properly (thanks to @nosegrind)
|
||||
- Handle additionalParams when they are an Array the way it's expected (thanks to @wiz78)
|
||||
- Check for `string` in error message type instead of `String` (thanks to @RuQuentin)
|
||||
|
||||
## 5.7.1
|
||||
|
||||
- Fix issue with IE (thanks to @Bjego)
|
||||
|
||||
## 5.7.0
|
||||
|
||||
- Cleanup the SVGs used to remove IDs and sketch attributes
|
||||
Since SVGs are duplicated this resulted in duplicate IDs being used.
|
||||
- Add a dedicated `displayExistingFile` method to make it easier to display
|
||||
server files.
|
||||
- Fix an error where chunked uploads don't work as expected when transforming
|
||||
files before uploading.
|
||||
- Make the default text a button so it's discoverable by keyboard.
|
||||
|
||||
## 5.6.1
|
||||
|
||||
- Re-released due to missing javascript files
|
||||
- Removes `npm` dependency that got added by mistake
|
||||
|
||||
## 5.6.0
|
||||
|
||||
- Timeout now generates an error (thanks to @mmollick)
|
||||
- Fix duplicate iteration of error processing (#159 thanks @darkland)
|
||||
- Fixed bootstrap example (@thanks to @polosatus)
|
||||
- The `addedfiles` event now triggers _after_ each individual `addedfile` event
|
||||
when dragging files into the dropzone, which is the same behavior as when
|
||||
clicking it.
|
||||
|
||||
## 5.5.0
|
||||
|
||||
- Correct photo orientation before uploading (if enabled) (thanks to @nosegrind)
|
||||
- Remove a potential memory leak in some browsers by keeping a reference to `xhr` inside the individual
|
||||
chunk objects (thanks to @clayton2)
|
||||
- Allow HTML in the remove links (thanks to @christianklemp)
|
||||
- `hiddenInputContainer` can now be an `HtmlElement` in addition to a selector String (thanks to @WAmeling)
|
||||
- Fix default values on website (since the last deployment, the default values all stated `null`)
|
||||
|
||||
## 5.4.0
|
||||
|
||||
- Fix IE11 issue when dropping files
|
||||
|
||||
## 5.3.1
|
||||
|
||||
- Fix broken npm release of 5.3.0
|
||||
|
||||
## 5.3.0
|
||||
|
||||
- Add `dictUploadCanceled` option (thanks to @Fohlen)
|
||||
- Fix issue with drag'n'drop on Safari and IE10 (thanks to @taylorryan)
|
||||
- Fix issues with resizing if SVG files are dropped (thanks to @saschagros)
|
||||
|
||||
## 5.2.0
|
||||
|
||||
- **Migrated from coffeescript to ES6!**
|
||||
- **Added chunked file uploading!** The highly requested chunked uploads are now available. Checkout the
|
||||
`chunking` option documentation for more information.
|
||||
- Fixed a faulty `console.warning` (should be `console.warn`)
|
||||
- If an input field doesn't have a name, don't include it when sending the form (thanks to @remyj38)
|
||||
- Opera on Windows Phone is now also blacklisted (thanks to @dracos1)
|
||||
- If a custom preview element is used, it is now properly handled when it doesn't have a parent (thanks to @uNmAnNeR)
|
||||
|
||||
## 5.1.1
|
||||
|
||||
- Fix issue where showing files already on the server fails, due to the missing `file.upload.filename`
|
||||
- Fix issue where `file.upload.filename` gets removed after the file uploaded completed
|
||||
- Properly handle `arraybuffer` and `blob` responses
|
||||
|
||||
## 5.1.0
|
||||
|
||||
- Add possibility to translate file sizes. (#16 thanks to @lerarybak for that)
|
||||
- Fix duplicate filenames in multiple file uploads (#15)
|
||||
- The `renameFilename` option has been **deprecated**. Use `renameFile` instead
|
||||
(which also has a slightly different function signature)
|
||||
- The `renameFile` option now stores the new name in `file.upload.filename` (#1)
|
||||
|
||||
## 5.0.1
|
||||
|
||||
- Add missing dist/ folder to npm.
|
||||
|
||||
## 5.0.0
|
||||
|
||||
- **Add support for browser image resizing!** Yes, really. The new options are: `resizeWidth`, `resizeHeight`, `resizeMimeType` and `resizeQuality`.
|
||||
Thanks a lot to [MD Systems](https://www.md-systems.ch/) for donating the money to make this a reality.
|
||||
- Fix IE11 issue with `options.timeout`
|
||||
- Resolve an issue that occurs in the iOS squashed image fix, where some transparent PNGs are stretched inaccurately
|
||||
|
||||
## 4.4.0
|
||||
|
||||
- Add `options.timeout`
|
||||
|
||||
## 4.3.0
|
||||
|
||||
Added Changelog. Sorry that this didn't happen sooner.
|
||||
76
storage/public/dist/libs/dropzone/CODE_OF_CONDUCT.md
vendored
Normal file
76
storage/public/dist/libs/dropzone/CODE_OF_CONDUCT.md
vendored
Normal file
|
|
@ -0,0 +1,76 @@
|
|||
# Contributor Covenant Code of Conduct
|
||||
|
||||
## Our Pledge
|
||||
|
||||
In the interest of fostering an open and welcoming environment, we as
|
||||
contributors and maintainers pledge to making participation in our project and
|
||||
our community a harassment-free experience for everyone, regardless of age, body
|
||||
size, disability, ethnicity, sex characteristics, gender identity and expression,
|
||||
level of experience, education, socio-economic status, nationality, personal
|
||||
appearance, race, religion, or sexual identity and orientation.
|
||||
|
||||
## Our Standards
|
||||
|
||||
Examples of behavior that contributes to creating a positive environment
|
||||
include:
|
||||
|
||||
* Using welcoming and inclusive language
|
||||
* Being respectful of differing viewpoints and experiences
|
||||
* Gracefully accepting constructive criticism
|
||||
* Focusing on what is best for the community
|
||||
* Showing empathy towards other community members
|
||||
|
||||
Examples of unacceptable behavior by participants include:
|
||||
|
||||
* The use of sexualized language or imagery and unwelcome sexual attention or
|
||||
advances
|
||||
* Trolling, insulting/derogatory comments, and personal or political attacks
|
||||
* Public or private harassment
|
||||
* Publishing others' private information, such as a physical or electronic
|
||||
address, without explicit permission
|
||||
* Other conduct which could reasonably be considered inappropriate in a
|
||||
professional setting
|
||||
|
||||
## Our Responsibilities
|
||||
|
||||
Project maintainers are responsible for clarifying the standards of acceptable
|
||||
behavior and are expected to take appropriate and fair corrective action in
|
||||
response to any instances of unacceptable behavior.
|
||||
|
||||
Project maintainers have the right and responsibility to remove, edit, or
|
||||
reject comments, commits, code, wiki edits, issues, and other contributions
|
||||
that are not aligned to this Code of Conduct, or to ban temporarily or
|
||||
permanently any contributor for other behaviors that they deem inappropriate,
|
||||
threatening, offensive, or harmful.
|
||||
|
||||
## Scope
|
||||
|
||||
This Code of Conduct applies both within project spaces and in public spaces
|
||||
when an individual is representing the project or its community. Examples of
|
||||
representing a project or community include using an official project e-mail
|
||||
address, posting via an official social media account, or acting as an appointed
|
||||
representative at an online or offline event. Representation of a project may be
|
||||
further defined and clarified by project maintainers.
|
||||
|
||||
## Enforcement
|
||||
|
||||
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
||||
reported by contacting the project team at m@tias.me. All
|
||||
complaints will be reviewed and investigated and will result in a response that
|
||||
is deemed necessary and appropriate to the circumstances. The project team is
|
||||
obligated to maintain confidentiality with regard to the reporter of an incident.
|
||||
Further details of specific enforcement policies may be posted separately.
|
||||
|
||||
Project maintainers who do not follow or enforce the Code of Conduct in good
|
||||
faith may face temporary or permanent repercussions as determined by other
|
||||
members of the project's leadership.
|
||||
|
||||
## Attribution
|
||||
|
||||
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
|
||||
available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html
|
||||
|
||||
[homepage]: https://www.contributor-covenant.org
|
||||
|
||||
For answers to common questions about this code of conduct, see
|
||||
https://www.contributor-covenant.org/faq
|
||||
23
storage/public/dist/libs/dropzone/LICENSE
vendored
Normal file
23
storage/public/dist/libs/dropzone/LICENSE
vendored
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
LICENSE
|
||||
|
||||
(The MIT License)
|
||||
|
||||
Copyright (c) 2021 Matias Meno <m@tias.me>
|
||||
Logo (c) 2015 "1910" www.weare1910.com
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
||||
this software and associated documentation files (the "Software"), to deal in
|
||||
the Software without restriction, including without limitation the rights to
|
||||
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
||||
the Software, and to permit persons to whom the Software is furnished to do so,
|
||||
subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
||||
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
||||
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
||||
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
||||
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
112
storage/public/dist/libs/dropzone/README.md
vendored
Normal file
112
storage/public/dist/libs/dropzone/README.md
vendored
Normal file
|
|
@ -0,0 +1,112 @@
|
|||
<img alt="Dropzone.js" src="https://raw.githubusercontent.com/dropzone/dropzone/assets/github-logo.svg" />
|
||||
|
||||
[](https://github.com/dropzone/dropzone/actions/workflows/test-and-release.yml)
|
||||
|
||||
Dropzone is a JavaScript library that turns any HTML element into a dropzone.
|
||||
This means that a user can drag and drop a file onto it, and Dropzone will
|
||||
display file previews and upload progress, and handle the upload for you via
|
||||
XHR.
|
||||
|
||||
It's fully configurable, can be styled according to your needs and is trusted by
|
||||
thousands.
|
||||
|
||||
<div align="center">
|
||||
<img width="674" alt="Dropzone Screenshot" src="https://user-images.githubusercontent.com/133277/138495095-b026cc5c-9458-4e0b-8066-d8a9d0f7e72a.png">
|
||||
</div>
|
||||
|
||||
## Quickstart
|
||||
|
||||
Install:
|
||||
|
||||
```bash
|
||||
$ npm install --save dropzone
|
||||
# or with yarn:
|
||||
$ yarn add dropzone
|
||||
```
|
||||
|
||||
Use as **ES6 module** (recommended):
|
||||
|
||||
```js
|
||||
import { Dropzone } from "dropzone";
|
||||
const dropzone = new Dropzone("div#myId", { url: "/file/post" });
|
||||
```
|
||||
|
||||
or use as **CommonJS module**:
|
||||
|
||||
```js
|
||||
const { Dropzone } = require("dropzone");
|
||||
const dropzone = new Dropzone("div#myId", { url: "/file/post" });
|
||||
```
|
||||
|
||||
[👉 Checkout our example implementations for different
|
||||
bundlers](https://github.com/dropzone/dropzone-examples)
|
||||
|
||||
## Not using a package manager or bundler?
|
||||
|
||||
Use the standalone files like this:
|
||||
|
||||
```html
|
||||
<script src="https://unpkg.com/dropzone@5/dist/min/dropzone.min.js"></script>
|
||||
<link
|
||||
rel="stylesheet"
|
||||
href="https://unpkg.com/dropzone@5/dist/min/dropzone.min.css"
|
||||
type="text/css"
|
||||
/>
|
||||
|
||||
<div class="my-dropzone"></div>
|
||||
|
||||
<script>
|
||||
// Dropzone has been added as a global variable.
|
||||
const dropzone = new Dropzone("div.my-dropzone", { url: "/file/post" });
|
||||
</script>
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
- [📚 Full documentation](https://docs.dropzone.dev)
|
||||
- [⚙️ `src/options.js`](https://github.com/dropzone/dropzone/blob/main/src/options.js)
|
||||
for all available options
|
||||
|
||||
---
|
||||
|
||||
> ⚠️ **NOTE**: We are currently moving away from IE support to make the library
|
||||
> more lightweight. If you don't care about IE but about size, you can already
|
||||
> opt into `6.0.0-beta.1`. Please make sure to pin the specific version since
|
||||
> parts of the API might change slightly. You can always read about the changes
|
||||
> in the [`CHANGELOG`](./CHANGELOG.md) file.
|
||||
|
||||
## Community
|
||||
|
||||
If you need support please use the [discussions section][discussions] or
|
||||
[stackoverflow][so] with the `dropzone.js` tag and **not** the GitHub issues
|
||||
tracker. Only post an issue here if you think you discovered a bug.
|
||||
|
||||
If you have a feature request or want to discuss something, please use the
|
||||
[discussions][] as well.
|
||||
|
||||
[discussions]: https://github.com/dropzone/dropzone/discussions
|
||||
[so]: https://stackoverflow.com/questions/tagged/dropzone.js
|
||||
|
||||
> ⚠️ **Please read the [contributing guidelines](CONTRIBUTING.md) before you
|
||||
> start working on Dropzone!**
|
||||
|
||||
## Main features ✅
|
||||
|
||||
- Beautiful by default
|
||||
- Image thumbnail previews. Simply register the callback `thumbnail(file, data)`
|
||||
and display the image wherever you like
|
||||
- High-DPI screen support
|
||||
- Multiple files and synchronous uploads
|
||||
- Progress updates
|
||||
- Support for large files
|
||||
- Chunked uploads (upload large files in smaller chunks)
|
||||
- Support for Amazon S3 Multipart upload
|
||||
- Complete theming. The look and feel of Dropzone is just the default theme. You
|
||||
can define everything yourself by overwriting the default event listeners.
|
||||
- Browser image resizing (resize the images before you upload them to your
|
||||
server)
|
||||
- Well tested
|
||||
|
||||
# MIT License
|
||||
|
||||
See LICENSE file
|
||||
20
storage/public/dist/libs/dropzone/composer.json
vendored
Normal file
20
storage/public/dist/libs/dropzone/composer.json
vendored
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
{
|
||||
"name": "enyo/dropzone",
|
||||
"description": "Handles drag and drop of files for you.",
|
||||
"homepage": "https://www.dropzone.dev/js",
|
||||
"keywords": [
|
||||
"dragndrop",
|
||||
"drag and drop",
|
||||
"file upload",
|
||||
"upload"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Matias Meno",
|
||||
"email": "m@tias.me",
|
||||
"homepage": "http://www.matiasmeno.com"
|
||||
}
|
||||
],
|
||||
"license": "MIT",
|
||||
"minimum-stability": "dev"
|
||||
}
|
||||
1
storage/public/dist/libs/dropzone/dist/basic.css
vendored
Normal file
1
storage/public/dist/libs/dropzone/dist/basic.css
vendored
Normal file
|
|
@ -0,0 +1 @@
|
|||
.dropzone,.dropzone *{box-sizing:border-box}.dropzone{position:relative}.dropzone .dz-preview{position:relative;display:inline-block;width:120px;margin:.5em}.dropzone .dz-preview .dz-progress{display:block;height:15px;border:1px solid #aaa}.dropzone .dz-preview .dz-progress .dz-upload{display:block;height:100%;width:0;background:green}.dropzone .dz-preview .dz-error-message{color:red;display:none}.dropzone .dz-preview.dz-error .dz-error-message,.dropzone .dz-preview.dz-error .dz-error-mark{display:block}.dropzone .dz-preview.dz-success .dz-success-mark{display:block}.dropzone .dz-preview .dz-error-mark,.dropzone .dz-preview .dz-success-mark{position:absolute;display:none;left:30px;top:30px;width:54px;height:58px;left:50%;margin-left:-27px}/*# sourceMappingURL=basic.css.map */
|
||||
1
storage/public/dist/libs/dropzone/dist/basic.css.map
vendored
Normal file
1
storage/public/dist/libs/dropzone/dist/basic.css.map
vendored
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"version":3,"sourceRoot":"","sources":["../src/basic.scss"],"names":[],"mappings":"AAEA,sBACE,sBAEF,UAEE,kBAEA,sBACE,kBACA,qBACA,YACA,YAEA,mCACE,cACA,YACA,sBACA,8CACE,cACA,YACA,QACA,iBAIJ,wCACE,UACA,aAGA,+FACE,cAIF,kDACE,cAIJ,4EACE,kBACA,aACA,UACA,SACA,WACA,YACA,SACA","file":"basic.css"}
|
||||
2
storage/public/dist/libs/dropzone/dist/dropzone-min.js
vendored
Normal file
2
storage/public/dist/libs/dropzone/dist/dropzone-min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
1
storage/public/dist/libs/dropzone/dist/dropzone-min.js.map
vendored
Normal file
1
storage/public/dist/libs/dropzone/dist/dropzone-min.js.map
vendored
Normal file
File diff suppressed because one or more lines are too long
1
storage/public/dist/libs/dropzone/dist/dropzone.css
vendored
Normal file
1
storage/public/dist/libs/dropzone/dist/dropzone.css
vendored
Normal file
|
|
@ -0,0 +1 @@
|
|||
@keyframes passing-through{0%{opacity:0;transform:translateY(40px)}30%,70%{opacity:1;transform:translateY(0px)}100%{opacity:0;transform:translateY(-40px)}}@keyframes slide-in{0%{opacity:0;transform:translateY(40px)}30%{opacity:1;transform:translateY(0px)}}@keyframes pulse{0%{transform:scale(1)}10%{transform:scale(1.1)}20%{transform:scale(1)}}.dropzone,.dropzone *{box-sizing:border-box}.dropzone{min-height:150px;border:1px solid rgba(0,0,0,.8);border-radius:5px;padding:20px 20px}.dropzone.dz-clickable{cursor:pointer}.dropzone.dz-clickable *{cursor:default}.dropzone.dz-clickable .dz-message,.dropzone.dz-clickable .dz-message *{cursor:pointer}.dropzone.dz-started .dz-message{display:none}.dropzone.dz-drag-hover{border-style:solid}.dropzone.dz-drag-hover .dz-message{opacity:.5}.dropzone .dz-message{text-align:center;margin:3em 0}.dropzone .dz-message .dz-button{background:none;color:inherit;border:none;padding:0;font:inherit;cursor:pointer;outline:inherit}.dropzone .dz-preview{position:relative;display:inline-block;vertical-align:top;margin:16px;min-height:100px}.dropzone .dz-preview:hover{z-index:1000}.dropzone .dz-preview:hover .dz-details{opacity:1}.dropzone .dz-preview.dz-file-preview .dz-image{border-radius:20px;background:#999;background:linear-gradient(to bottom, #eee, #ddd)}.dropzone .dz-preview.dz-file-preview .dz-details{opacity:1}.dropzone .dz-preview.dz-image-preview{background:#fff}.dropzone .dz-preview.dz-image-preview .dz-details{transition:opacity .2s linear}.dropzone .dz-preview .dz-remove{font-size:14px;text-align:center;display:block;cursor:pointer;border:none}.dropzone .dz-preview .dz-remove:hover{text-decoration:underline}.dropzone .dz-preview:hover .dz-details{opacity:1}.dropzone .dz-preview .dz-details{z-index:20;position:absolute;top:0;left:0;opacity:0;font-size:13px;min-width:100%;max-width:100%;padding:2em 1em;text-align:center;color:rgba(0,0,0,.9);line-height:150%}.dropzone .dz-preview .dz-details .dz-size{margin-bottom:1em;font-size:16px}.dropzone .dz-preview .dz-details .dz-filename{white-space:nowrap}.dropzone .dz-preview .dz-details .dz-filename:hover span{border:1px solid rgba(200,200,200,.8);background-color:rgba(255,255,255,.8)}.dropzone .dz-preview .dz-details .dz-filename:not(:hover){overflow:hidden;text-overflow:ellipsis}.dropzone .dz-preview .dz-details .dz-filename:not(:hover) span{border:1px solid transparent}.dropzone .dz-preview .dz-details .dz-filename span,.dropzone .dz-preview .dz-details .dz-size span{background-color:rgba(255,255,255,.4);padding:0 .4em;border-radius:3px}.dropzone .dz-preview:hover .dz-image img{transform:scale(1.05, 1.05);filter:blur(8px)}.dropzone .dz-preview .dz-image{border-radius:20px;overflow:hidden;width:120px;height:120px;position:relative;display:block;z-index:10}.dropzone .dz-preview .dz-image img{display:block}.dropzone .dz-preview.dz-success .dz-success-mark{animation:passing-through 3s cubic-bezier(0.77, 0, 0.175, 1)}.dropzone .dz-preview.dz-error .dz-error-mark{opacity:1;animation:slide-in 3s cubic-bezier(0.77, 0, 0.175, 1)}.dropzone .dz-preview .dz-success-mark,.dropzone .dz-preview .dz-error-mark{pointer-events:none;opacity:0;z-index:500;position:absolute;display:block;top:50%;left:50%;margin-left:-27px;margin-top:-27px;background:rgba(0,0,0,.8);border-radius:50%}.dropzone .dz-preview .dz-success-mark svg,.dropzone .dz-preview .dz-error-mark svg{display:block;width:54px;height:54px;fill:#fff}.dropzone .dz-preview.dz-processing .dz-progress{opacity:1;transition:all .2s linear}.dropzone .dz-preview.dz-complete .dz-progress{opacity:0;transition:opacity .4s ease-in}.dropzone .dz-preview:not(.dz-processing) .dz-progress{animation:pulse 6s ease infinite}.dropzone .dz-preview .dz-progress{opacity:1;z-index:1000;pointer-events:none;position:absolute;height:20px;top:50%;margin-top:-10px;left:15%;right:15%;border:3px solid rgba(0,0,0,.8);background:rgba(0,0,0,.8);border-radius:10px;overflow:hidden}.dropzone .dz-preview .dz-progress .dz-upload{background:#fff;display:block;position:relative;height:100%;width:0;transition:width 300ms ease-in-out;border-radius:17px}.dropzone .dz-preview.dz-error .dz-error-message{display:block}.dropzone .dz-preview.dz-error:hover .dz-error-message{opacity:1;pointer-events:auto}.dropzone .dz-preview .dz-error-message{pointer-events:none;z-index:1000;position:absolute;display:block;display:none;opacity:0;transition:opacity .3s ease;border-radius:8px;font-size:13px;top:130px;left:-10px;width:140px;background:#b10606;padding:.5em 1em;color:#fff}.dropzone .dz-preview .dz-error-message:after{content:"";position:absolute;top:-6px;left:64px;width:0;height:0;border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:6px solid #b10606}/*# sourceMappingURL=dropzone.css.map */
|
||||
1
storage/public/dist/libs/dropzone/dist/dropzone.css.map
vendored
Normal file
1
storage/public/dist/libs/dropzone/dist/dropzone.css.map
vendored
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"version":3,"sourceRoot":"","sources":["../src/dropzone.scss"],"names":[],"mappings":"AAGA,2BACE,GACE,UACA,2BAGF,QACE,UACA,0BAGF,KACE,UACA,6BAKJ,oBACE,GACE,UACA,2BAEF,IACE,UACA,2BAMJ,iBACE,sBACA,yBACA,wBAKF,sBACE,sBAEF,UAmBE,iBACA,gCACA,kBACA,kBAhBA,uBACE,eAEA,yBACE,eAGA,wEACE,eAWJ,iCACE,aAIJ,wBACE,mBACA,oCACE,WAGJ,sBACE,kBACA,aAEA,iCACE,gBACA,cACA,YACA,UACA,aACA,eACA,gBAMJ,sBACE,kBACA,qBAEA,mBAEA,YACA,iBAEA,4BAEE,aACA,wCACE,UAMF,gDACE,cArEgB,KAsEhB,gBACA,kDAGF,kDACE,UAIJ,uCACE,gBACA,mDACE,8BAIJ,iCACE,eACA,kBACA,cACA,eACA,YACA,uCACE,0BAIJ,wCACE,UAEF,kCAGE,WAEA,kBACA,MACA,OAEA,UAEA,eACA,eACA,eACA,gBACA,kBACA,qBAIA,iBAEA,2CACE,kBACA,eAGF,+CAEE,mBAGE,0DACE,sCACA,sCAGJ,2DAIE,gBACA,uBAJA,gEACE,6BASJ,oGACE,sCACA,eACA,kBASF,0CACE,4BACA,iBAIN,gCACE,cAvKkB,KAwKlB,gBACA,MA3KS,MA4KT,OA5KS,MA6KT,kBACA,cACA,WAEA,oCACE,cAMF,kDACE,6DAIF,8CACE,UACA,sDASJ,4EAKE,oBAEA,UACA,YAEA,kBACA,cACA,QACA,SACA,kBACA,iBAEA,WApBiB,eAqBjB,kBAEA,oFACE,cACA,MAnBY,KAoBZ,OArBa,KAsBb,KA5BY,KAiChB,iDACE,UACA,0BAEF,+CACE,UACA,+BAIA,uDACE,iCAGJ,mCAIE,UACA,aAEA,oBACA,kBACA,YACA,QACA,iBACA,SACA,UAEA,gCACA,WA9DiB,eAgEjB,mBAEA,gBAEA,8CACE,WAtEY,KAwEZ,cACA,kBACA,YACA,QACA,mCAEA,mBAMF,iDACE,cAEF,uDACE,UACA,oBAIJ,wCAIE,oBACA,aACA,kBACA,cACA,aACA,UACA,4BACA,kBACA,eACA,UACA,WACA,MAdQ,MAeR,WAdQ,QAeR,iBACA,WAGA,8CACE,WACA,kBACA,SACA,UACA,QACA,SACA,kCACA,mCACA","file":"dropzone.css"}
|
||||
3068
storage/public/dist/libs/dropzone/dist/dropzone.js
vendored
Normal file
3068
storage/public/dist/libs/dropzone/dist/dropzone.js
vendored
Normal file
File diff suppressed because it is too large
Load diff
1
storage/public/dist/libs/dropzone/dist/dropzone.js.map
vendored
Normal file
1
storage/public/dist/libs/dropzone/dist/dropzone.js.map
vendored
Normal file
File diff suppressed because one or more lines are too long
2111
storage/public/dist/libs/dropzone/dist/dropzone.mjs
vendored
Normal file
2111
storage/public/dist/libs/dropzone/dist/dropzone.mjs
vendored
Normal file
File diff suppressed because it is too large
Load diff
1
storage/public/dist/libs/dropzone/dist/dropzone.mjs.map
vendored
Normal file
1
storage/public/dist/libs/dropzone/dist/dropzone.mjs.map
vendored
Normal file
File diff suppressed because one or more lines are too long
87
storage/public/dist/libs/dropzone/package.json
vendored
Normal file
87
storage/public/dist/libs/dropzone/package.json
vendored
Normal file
|
|
@ -0,0 +1,87 @@
|
|||
{
|
||||
"name": "dropzone",
|
||||
"version": "6.0.0-beta.2",
|
||||
"description": "Handles drag and drop of files for you.",
|
||||
"keywords": [
|
||||
"dragndrop",
|
||||
"drag and drop",
|
||||
"file upload",
|
||||
"upload"
|
||||
],
|
||||
"homepage": "https://www.dropzone.dev/js",
|
||||
"source": "src/dropzone.js",
|
||||
"main": "dist/dropzone.js",
|
||||
"module": "dist/dropzone.mjs",
|
||||
"standalone": "dist/dropzone-min.js",
|
||||
"browserslist": "defaults, > 0.25%",
|
||||
"targets": {
|
||||
"main": {
|
||||
"source": "src/dropzone.js"
|
||||
},
|
||||
"module": {
|
||||
"source": "src/dropzone.js"
|
||||
},
|
||||
"standalone": {
|
||||
"source": "tool/dropzone-global.js",
|
||||
"outputFormat": "global"
|
||||
},
|
||||
"built-test": {
|
||||
"source": "test/unit-tests.js",
|
||||
"distDir": "test/built/"
|
||||
}
|
||||
},
|
||||
"maintainers": [
|
||||
{
|
||||
"name": "Matias Meno",
|
||||
"email": "m@tias.me",
|
||||
"web": "https://www.yesmeno.com"
|
||||
}
|
||||
],
|
||||
"contributors": [
|
||||
{
|
||||
"name": "Matias Meno",
|
||||
"email": "m@tias.me",
|
||||
"web": "https://www.yesmeno.com"
|
||||
}
|
||||
],
|
||||
"scripts": {
|
||||
"watch": "parcel watch",
|
||||
"build": "parcel build && yarn run css",
|
||||
"css": "yarn sass src/:dist/ --style compressed",
|
||||
"watch-css": "yarn sass src/:dist/ --watch --style compressed",
|
||||
"test": "karma start test/karma.conf.js",
|
||||
"start-test-server": "node test/test-server.js"
|
||||
},
|
||||
"bugs": {
|
||||
"email": "m@tias.me",
|
||||
"url": "https://github.com/dropzone/dropzone/issues"
|
||||
},
|
||||
"license": "MIT",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/dropzone/dropzone.git"
|
||||
},
|
||||
"dependencies": {
|
||||
"@swc/helpers": "^0.2.13",
|
||||
"just-extend": "^5.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@parcel/transformer-inline-string": "^2.0.0",
|
||||
"@parcel/transformer-sass": "^2.0.0",
|
||||
"chai": "4.3.4",
|
||||
"cypress": "^8.7.0",
|
||||
"cypress-file-upload": "^5.0.8",
|
||||
"karma": "^6.1.0",
|
||||
"karma-chrome-launcher": "^3.1.0",
|
||||
"karma-mocha": "^2.0.1",
|
||||
"karma-sinon-chai": "^2.0.2",
|
||||
"karma-spec-reporter": "^0.0.32",
|
||||
"mocha": "^9.1.3",
|
||||
"mocha-headless-chrome": "^3.0.0",
|
||||
"node-static": "^0.7.11",
|
||||
"parcel": "^2.0.0",
|
||||
"sass": "^1.33.0",
|
||||
"sinon": "^11.1.2",
|
||||
"sinon-chai": "^3.5.0"
|
||||
}
|
||||
}
|
||||
57
storage/public/dist/libs/dropzone/src/basic.scss
vendored
Normal file
57
storage/public/dist/libs/dropzone/src/basic.scss
vendored
Normal file
|
|
@ -0,0 +1,57 @@
|
|||
@use "sass:math";
|
||||
|
||||
.dropzone, .dropzone * {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
.dropzone {
|
||||
|
||||
position: relative;
|
||||
|
||||
.dz-preview {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
width: 120px;
|
||||
margin: 0.5em;
|
||||
|
||||
.dz-progress {
|
||||
display: block;
|
||||
height: 15px;
|
||||
border: 1px solid #aaa;
|
||||
.dz-upload {
|
||||
display: block;
|
||||
height: 100%;
|
||||
width: 0;
|
||||
background: green;
|
||||
}
|
||||
}
|
||||
|
||||
.dz-error-message {
|
||||
color: red;
|
||||
display: none;
|
||||
}
|
||||
&.dz-error {
|
||||
.dz-error-message, .dz-error-mark {
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
&.dz-success {
|
||||
.dz-success-mark {
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
|
||||
.dz-error-mark, .dz-success-mark {
|
||||
position: absolute;
|
||||
display: none;
|
||||
left: 30px;
|
||||
top: 30px;
|
||||
width: 54px;
|
||||
height: 58px;
|
||||
left: 50%;
|
||||
margin-left: -(math.div(54px, 2));
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
2319
storage/public/dist/libs/dropzone/src/dropzone.js
vendored
Normal file
2319
storage/public/dist/libs/dropzone/src/dropzone.js
vendored
Normal file
File diff suppressed because it is too large
Load diff
374
storage/public/dist/libs/dropzone/src/dropzone.scss
vendored
Normal file
374
storage/public/dist/libs/dropzone/src/dropzone.scss
vendored
Normal file
|
|
@ -0,0 +1,374 @@
|
|||
@use "sass:math";
|
||||
|
||||
|
||||
@keyframes passing-through {
|
||||
0% {
|
||||
opacity: 0;
|
||||
transform: translateY(40px);
|
||||
}
|
||||
|
||||
30%, 70% {
|
||||
opacity: 1;
|
||||
transform: translateY(0px);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 0;
|
||||
transform: translateY(-40px);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@keyframes slide-in {
|
||||
0% {
|
||||
opacity: 0;
|
||||
transform: translateY(40px);
|
||||
}
|
||||
30% {
|
||||
opacity: 1;
|
||||
transform: translateY(0px);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
@keyframes pulse {
|
||||
0% { transform: scale(1); }
|
||||
10% { transform: scale(1.1); }
|
||||
20% { transform: scale(1); }
|
||||
}
|
||||
|
||||
|
||||
|
||||
.dropzone, .dropzone * {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
.dropzone {
|
||||
|
||||
$image-size: 120px;
|
||||
|
||||
$image-border-radius: 20px;
|
||||
|
||||
&.dz-clickable {
|
||||
cursor: pointer;
|
||||
|
||||
* {
|
||||
cursor: default;
|
||||
}
|
||||
.dz-message {
|
||||
&, * {
|
||||
cursor: pointer;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
min-height: 150px;
|
||||
border: 1px solid rgba(0, 0, 0, 0.8);
|
||||
border-radius: 5px;
|
||||
padding: 20px 20px;
|
||||
|
||||
&.dz-started {
|
||||
.dz-message {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
&.dz-drag-hover {
|
||||
border-style: solid;
|
||||
.dz-message {
|
||||
opacity: 0.5;
|
||||
}
|
||||
}
|
||||
.dz-message {
|
||||
text-align: center;
|
||||
margin: 3em 0;
|
||||
|
||||
.dz-button {
|
||||
background: none;
|
||||
color: inherit;
|
||||
border: none;
|
||||
padding: 0;
|
||||
font: inherit;
|
||||
cursor: pointer;
|
||||
outline: inherit;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
.dz-preview {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
|
||||
vertical-align: top;
|
||||
|
||||
margin: 16px;
|
||||
min-height: 100px;
|
||||
|
||||
&:hover {
|
||||
// Making sure that always the hovered preview element is on top
|
||||
z-index: 1000;
|
||||
.dz-details {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
&.dz-file-preview {
|
||||
|
||||
.dz-image {
|
||||
border-radius: $image-border-radius;
|
||||
background: #999;
|
||||
background: linear-gradient(to bottom, #eee, #ddd);
|
||||
}
|
||||
|
||||
.dz-details {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
&.dz-image-preview {
|
||||
background: white;
|
||||
.dz-details {
|
||||
transition: opacity 0.2s linear;
|
||||
}
|
||||
}
|
||||
|
||||
.dz-remove {
|
||||
font-size: 14px;
|
||||
text-align: center;
|
||||
display: block;
|
||||
cursor: pointer;
|
||||
border: none;
|
||||
&:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
}
|
||||
|
||||
&:hover .dz-details {
|
||||
opacity: 1;
|
||||
}
|
||||
.dz-details {
|
||||
$background-color: #444;
|
||||
|
||||
z-index: 20;
|
||||
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
|
||||
opacity: 0;
|
||||
|
||||
font-size: 13px;
|
||||
min-width: 100%;
|
||||
max-width: 100%;
|
||||
padding: 2em 1em;
|
||||
text-align: center;
|
||||
color: rgba(0, 0, 0, 0.9);
|
||||
|
||||
$width: 120px;
|
||||
|
||||
line-height: 150%;
|
||||
|
||||
.dz-size {
|
||||
margin-bottom: 1em;
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
.dz-filename {
|
||||
|
||||
white-space: nowrap;
|
||||
|
||||
&:hover {
|
||||
span {
|
||||
border: 1px solid rgba(200, 200, 200, 0.8);
|
||||
background-color: rgba(255, 255, 255, 0.8);
|
||||
}
|
||||
}
|
||||
&:not(:hover) {
|
||||
span {
|
||||
border: 1px solid transparent;
|
||||
}
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
.dz-filename, .dz-size {
|
||||
span {
|
||||
background-color: rgba(255, 255, 255, 0.4);
|
||||
padding: 0 0.4em;
|
||||
border-radius: 3px;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
&:hover {
|
||||
.dz-image {
|
||||
// opacity: 0.8;
|
||||
img {
|
||||
transform: scale(1.05, 1.05); // Getting rid of that white bleed-in
|
||||
filter: blur(8px); // Getting rid of that white bleed-in
|
||||
}
|
||||
}
|
||||
}
|
||||
.dz-image {
|
||||
border-radius: $image-border-radius;
|
||||
overflow: hidden;
|
||||
width: $image-size;
|
||||
height: $image-size;
|
||||
position: relative;
|
||||
display: block;
|
||||
z-index: 10;
|
||||
|
||||
img {
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
&.dz-success {
|
||||
.dz-success-mark {
|
||||
animation: passing-through 3s cubic-bezier(0.770, 0.000, 0.175, 1.000);
|
||||
}
|
||||
}
|
||||
&.dz-error {
|
||||
.dz-error-mark {
|
||||
opacity: 1;
|
||||
animation: slide-in 3s cubic-bezier(0.770, 0.000, 0.175, 1.000);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
$overlay-color: white;
|
||||
$overlay-bg-color: rgba(0, 0, 0, 0.8);
|
||||
|
||||
|
||||
.dz-success-mark, .dz-error-mark {
|
||||
|
||||
$image-height: 54px;
|
||||
$image-width: 54px;
|
||||
|
||||
pointer-events: none;
|
||||
|
||||
opacity: 0;
|
||||
z-index: 500;
|
||||
|
||||
position: absolute;
|
||||
display: block;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
margin-left: -(math.div($image-width, 2));
|
||||
margin-top: -(math.div($image-height, 2));
|
||||
|
||||
background: $overlay-bg-color;
|
||||
border-radius: 50%;
|
||||
|
||||
svg {
|
||||
display: block;
|
||||
width: $image-width;
|
||||
height: $image-height;
|
||||
fill: $overlay-color;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
&.dz-processing .dz-progress {
|
||||
opacity: 1;
|
||||
transition: all 0.2s linear;
|
||||
}
|
||||
&.dz-complete .dz-progress {
|
||||
opacity: 0;
|
||||
transition: opacity 0.4s ease-in;
|
||||
}
|
||||
|
||||
&:not(.dz-processing) {
|
||||
.dz-progress {
|
||||
animation: pulse 6s ease infinite;
|
||||
}
|
||||
}
|
||||
.dz-progress {
|
||||
$progress-height: 20px;
|
||||
$progress-border-width: 3px;
|
||||
|
||||
opacity: 1;
|
||||
z-index: 1000;
|
||||
|
||||
pointer-events: none;
|
||||
position: absolute;
|
||||
height: 20px;
|
||||
top: 50%;
|
||||
margin-top: -10px;
|
||||
left: 15%;
|
||||
right: 15%;
|
||||
|
||||
border: $progress-border-width solid $overlay-bg-color;
|
||||
background: $overlay-bg-color;
|
||||
|
||||
border-radius: 10px;
|
||||
|
||||
overflow: hidden;
|
||||
|
||||
.dz-upload {
|
||||
background: $overlay-color;
|
||||
|
||||
display: block;
|
||||
position: relative;
|
||||
height: 100%;
|
||||
width: 0;
|
||||
transition: width 300ms ease-in-out;
|
||||
|
||||
border-radius: $progress-height - $progress-border-width;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
&.dz-error {
|
||||
.dz-error-message {
|
||||
display: block;
|
||||
}
|
||||
&:hover .dz-error-message {
|
||||
opacity: 1;
|
||||
pointer-events: auto;
|
||||
}
|
||||
}
|
||||
|
||||
.dz-error-message {
|
||||
$width: $image-size + 20px;
|
||||
$color: rgb(177, 6, 6);
|
||||
|
||||
pointer-events: none;
|
||||
z-index: 1000;
|
||||
position: absolute;
|
||||
display: block;
|
||||
display: none;
|
||||
opacity: 0;
|
||||
transition: opacity 0.3s ease;
|
||||
border-radius: 8px;
|
||||
font-size: 13px;
|
||||
top: $image-size + 10px;
|
||||
left: -10px;
|
||||
width: $width;
|
||||
background: $color;
|
||||
padding: 0.5em 1em;
|
||||
color: white;
|
||||
|
||||
// The triangle pointing up
|
||||
&:after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: -6px;
|
||||
left: math.div($width, 2) - 6px;
|
||||
width: 0;
|
||||
height: 0;
|
||||
border-left: 6px solid transparent;
|
||||
border-right: 6px solid transparent;
|
||||
border-bottom: 6px solid $color;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
86
storage/public/dist/libs/dropzone/src/emitter.js
vendored
Normal file
86
storage/public/dist/libs/dropzone/src/emitter.js
vendored
Normal file
|
|
@ -0,0 +1,86 @@
|
|||
// The Emitter class provides the ability to call `.on()` on Dropzone to listen
|
||||
// to events.
|
||||
// It is strongly based on component's emitter class, and I removed the
|
||||
// functionality because of the dependency hell with different frameworks.
|
||||
export default class Emitter {
|
||||
// Add an event listener for given event
|
||||
on(event, fn) {
|
||||
this._callbacks = this._callbacks || {};
|
||||
// Create namespace for this event
|
||||
if (!this._callbacks[event]) {
|
||||
this._callbacks[event] = [];
|
||||
}
|
||||
this._callbacks[event].push(fn);
|
||||
return this;
|
||||
}
|
||||
|
||||
emit(event, ...args) {
|
||||
this._callbacks = this._callbacks || {};
|
||||
let callbacks = this._callbacks[event];
|
||||
|
||||
if (callbacks) {
|
||||
for (let callback of callbacks) {
|
||||
callback.apply(this, args);
|
||||
}
|
||||
}
|
||||
// trigger a corresponding DOM event
|
||||
if (this.element) {
|
||||
this.element.dispatchEvent(
|
||||
this.makeEvent("dropzone:" + event, { args: args })
|
||||
);
|
||||
}
|
||||
return this;
|
||||
}
|
||||
|
||||
makeEvent(eventName, detail) {
|
||||
let params = { bubbles: true, cancelable: true, detail: detail };
|
||||
|
||||
if (typeof window.CustomEvent === "function") {
|
||||
return new CustomEvent(eventName, params);
|
||||
} else {
|
||||
// IE 11 support
|
||||
// https://developer.mozilla.org/en-US/docs/Web/API/CustomEvent/CustomEvent
|
||||
var evt = document.createEvent("CustomEvent");
|
||||
evt.initCustomEvent(
|
||||
eventName,
|
||||
params.bubbles,
|
||||
params.cancelable,
|
||||
params.detail
|
||||
);
|
||||
return evt;
|
||||
}
|
||||
}
|
||||
|
||||
// Remove event listener for given event. If fn is not provided, all event
|
||||
// listeners for that event will be removed. If neither is provided, all
|
||||
// event listeners will be removed.
|
||||
off(event, fn) {
|
||||
if (!this._callbacks || arguments.length === 0) {
|
||||
this._callbacks = {};
|
||||
return this;
|
||||
}
|
||||
|
||||
// specific event
|
||||
let callbacks = this._callbacks[event];
|
||||
if (!callbacks) {
|
||||
return this;
|
||||
}
|
||||
|
||||
// remove all handlers
|
||||
if (arguments.length === 1) {
|
||||
delete this._callbacks[event];
|
||||
return this;
|
||||
}
|
||||
|
||||
// remove specific handler
|
||||
for (let i = 0; i < callbacks.length; i++) {
|
||||
let callback = callbacks[i];
|
||||
if (callback === fn) {
|
||||
callbacks.splice(i, 1);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
return this;
|
||||
}
|
||||
}
|
||||
789
storage/public/dist/libs/dropzone/src/options.js
vendored
Normal file
789
storage/public/dist/libs/dropzone/src/options.js
vendored
Normal file
|
|
@ -0,0 +1,789 @@
|
|||
import Dropzone from "./dropzone";
|
||||
import defaultPreviewTemplate from "bundle-text:./preview-template.html";
|
||||
|
||||
let defaultOptions = {
|
||||
/**
|
||||
* Has to be specified on elements other than form (or when the form doesn't
|
||||
* have an `action` attribute).
|
||||
*
|
||||
* You can also provide a function that will be called with `files` and
|
||||
* `dataBlocks` and must return the url as string.
|
||||
*/
|
||||
url: null,
|
||||
|
||||
/**
|
||||
* Can be changed to `"put"` if necessary. You can also provide a function
|
||||
* that will be called with `files` and must return the method (since `v3.12.0`).
|
||||
*/
|
||||
method: "post",
|
||||
|
||||
/**
|
||||
* Will be set on the XHRequest.
|
||||
*/
|
||||
withCredentials: false,
|
||||
|
||||
/**
|
||||
* The timeout for the XHR requests in milliseconds (since `v4.4.0`).
|
||||
* If set to null or 0, no timeout is going to be set.
|
||||
*/
|
||||
timeout: null,
|
||||
|
||||
/**
|
||||
* How many file uploads to process in parallel (See the
|
||||
* Enqueuing file uploads documentation section for more info)
|
||||
*/
|
||||
parallelUploads: 2,
|
||||
|
||||
/**
|
||||
* Whether to send multiple files in one request. If
|
||||
* this it set to true, then the fallback file input element will
|
||||
* have the `multiple` attribute as well. This option will
|
||||
* also trigger additional events (like `processingmultiple`). See the events
|
||||
* documentation section for more information.
|
||||
*/
|
||||
uploadMultiple: false,
|
||||
|
||||
/**
|
||||
* Whether you want files to be uploaded in chunks to your server. This can't be
|
||||
* used in combination with `uploadMultiple`.
|
||||
*
|
||||
* See [chunksUploaded](#config-chunksUploaded) for the callback to finalise an upload.
|
||||
*/
|
||||
chunking: false,
|
||||
|
||||
/**
|
||||
* If `chunking` is enabled, this defines whether **every** file should be chunked,
|
||||
* even if the file size is below chunkSize. This means, that the additional chunk
|
||||
* form data will be submitted and the `chunksUploaded` callback will be invoked.
|
||||
*/
|
||||
forceChunking: false,
|
||||
|
||||
/**
|
||||
* If `chunking` is `true`, then this defines the chunk size in bytes.
|
||||
*/
|
||||
chunkSize: 2 * 1024 * 1024,
|
||||
|
||||
/**
|
||||
* If `true`, the individual chunks of a file are being uploaded simultaneously.
|
||||
*/
|
||||
parallelChunkUploads: false,
|
||||
|
||||
/**
|
||||
* Whether a chunk should be retried if it fails.
|
||||
*/
|
||||
retryChunks: false,
|
||||
|
||||
/**
|
||||
* If `retryChunks` is true, how many times should it be retried.
|
||||
*/
|
||||
retryChunksLimit: 3,
|
||||
|
||||
/**
|
||||
* The maximum filesize (in MiB) that is allowed to be uploaded.
|
||||
*/
|
||||
maxFilesize: 256,
|
||||
|
||||
/**
|
||||
* The name of the file param that gets transferred.
|
||||
* **NOTE**: If you have the option `uploadMultiple` set to `true`, then
|
||||
* Dropzone will append `[]` to the name.
|
||||
*/
|
||||
paramName: "file",
|
||||
|
||||
/**
|
||||
* Whether thumbnails for images should be generated
|
||||
*/
|
||||
createImageThumbnails: true,
|
||||
|
||||
/**
|
||||
* In MB. When the filename exceeds this limit, the thumbnail will not be generated.
|
||||
*/
|
||||
maxThumbnailFilesize: 10,
|
||||
|
||||
/**
|
||||
* If `null`, the ratio of the image will be used to calculate it.
|
||||
*/
|
||||
thumbnailWidth: 120,
|
||||
|
||||
/**
|
||||
* The same as `thumbnailWidth`. If both are null, images will not be resized.
|
||||
*/
|
||||
thumbnailHeight: 120,
|
||||
|
||||
/**
|
||||
* How the images should be scaled down in case both, `thumbnailWidth` and `thumbnailHeight` are provided.
|
||||
* Can be either `contain` or `crop`.
|
||||
*/
|
||||
thumbnailMethod: "crop",
|
||||
|
||||
/**
|
||||
* If set, images will be resized to these dimensions before being **uploaded**.
|
||||
* If only one, `resizeWidth` **or** `resizeHeight` is provided, the original aspect
|
||||
* ratio of the file will be preserved.
|
||||
*
|
||||
* The `options.transformFile` function uses these options, so if the `transformFile` function
|
||||
* is overridden, these options don't do anything.
|
||||
*/
|
||||
resizeWidth: null,
|
||||
|
||||
/**
|
||||
* See `resizeWidth`.
|
||||
*/
|
||||
resizeHeight: null,
|
||||
|
||||
/**
|
||||
* The mime type of the resized image (before it gets uploaded to the server).
|
||||
* If `null` the original mime type will be used. To force jpeg, for example, use `image/jpeg`.
|
||||
* See `resizeWidth` for more information.
|
||||
*/
|
||||
resizeMimeType: null,
|
||||
|
||||
/**
|
||||
* The quality of the resized images. See `resizeWidth`.
|
||||
*/
|
||||
resizeQuality: 0.8,
|
||||
|
||||
/**
|
||||
* How the images should be scaled down in case both, `resizeWidth` and `resizeHeight` are provided.
|
||||
* Can be either `contain` or `crop`.
|
||||
*/
|
||||
resizeMethod: "contain",
|
||||
|
||||
/**
|
||||
* The base that is used to calculate the **displayed** filesize. You can
|
||||
* change this to 1024 if you would rather display kibibytes, mebibytes,
|
||||
* etc... 1024 is technically incorrect, because `1024 bytes` are `1 kibibyte`
|
||||
* not `1 kilobyte`. You can change this to `1024` if you don't care about
|
||||
* validity.
|
||||
*/
|
||||
filesizeBase: 1000,
|
||||
|
||||
/**
|
||||
* If not `null` defines how many files this Dropzone handles. If it exceeds,
|
||||
* the event `maxfilesexceeded` will be called. The dropzone element gets the
|
||||
* class `dz-max-files-reached` accordingly so you can provide visual
|
||||
* feedback.
|
||||
*/
|
||||
maxFiles: null,
|
||||
|
||||
/**
|
||||
* An optional object to send additional headers to the server. Eg:
|
||||
* `{ "My-Awesome-Header": "header value" }`
|
||||
*/
|
||||
headers: null,
|
||||
|
||||
/**
|
||||
* Should the default headers be set or not?
|
||||
* Accept: application/json <- for requesting json response
|
||||
* Cache-Control: no-cache <- Request shouldnt be cached
|
||||
* X-Requested-With: XMLHttpRequest <- We sent the request via XMLHttpRequest
|
||||
*/
|
||||
defaultHeaders: true,
|
||||
|
||||
/**
|
||||
* If `true`, the dropzone element itself will be clickable, if `false`
|
||||
* nothing will be clickable.
|
||||
*
|
||||
* You can also pass an HTML element, a CSS selector (for multiple elements)
|
||||
* or an array of those. In that case, all of those elements will trigger an
|
||||
* upload when clicked.
|
||||
*/
|
||||
clickable: true,
|
||||
|
||||
/**
|
||||
* Whether hidden files in directories should be ignored.
|
||||
*/
|
||||
ignoreHiddenFiles: true,
|
||||
|
||||
/**
|
||||
* The default implementation of `accept` checks the file's mime type or
|
||||
* extension against this list. This is a comma separated list of mime
|
||||
* types or file extensions.
|
||||
*
|
||||
* Eg.: `image/*,application/pdf,.psd`
|
||||
*
|
||||
* If the Dropzone is `clickable` this option will also be used as
|
||||
* [`accept`](https://developer.mozilla.org/en-US/docs/HTML/Element/input#attr-accept)
|
||||
* parameter on the hidden file input as well.
|
||||
*/
|
||||
acceptedFiles: null,
|
||||
|
||||
/**
|
||||
* **Deprecated!**
|
||||
* Use acceptedFiles instead.
|
||||
*/
|
||||
acceptedMimeTypes: null,
|
||||
|
||||
/**
|
||||
* If false, files will be added to the queue but the queue will not be
|
||||
* processed automatically.
|
||||
* This can be useful if you need some additional user input before sending
|
||||
* files (or if you want want all files sent at once).
|
||||
* If you're ready to send the file simply call `myDropzone.processQueue()`.
|
||||
*
|
||||
* See the [enqueuing file uploads](#enqueuing-file-uploads) documentation
|
||||
* section for more information.
|
||||
*/
|
||||
autoProcessQueue: true,
|
||||
|
||||
/**
|
||||
* If false, files added to the dropzone will not be queued by default.
|
||||
* You'll have to call `enqueueFile(file)` manually.
|
||||
*/
|
||||
autoQueue: true,
|
||||
|
||||
/**
|
||||
* If `true`, this will add a link to every file preview to remove or cancel (if
|
||||
* already uploading) the file. The `dictCancelUpload`, `dictCancelUploadConfirmation`
|
||||
* and `dictRemoveFile` options are used for the wording.
|
||||
*/
|
||||
addRemoveLinks: false,
|
||||
|
||||
/**
|
||||
* Defines where to display the file previews – if `null` the
|
||||
* Dropzone element itself is used. Can be a plain `HTMLElement` or a CSS
|
||||
* selector. The element should have the `dropzone-previews` class so
|
||||
* the previews are displayed properly.
|
||||
*/
|
||||
previewsContainer: null,
|
||||
|
||||
/**
|
||||
* Set this to `true` if you don't want previews to be shown.
|
||||
*/
|
||||
disablePreviews: false,
|
||||
|
||||
/**
|
||||
* This is the element the hidden input field (which is used when clicking on the
|
||||
* dropzone to trigger file selection) will be appended to. This might
|
||||
* be important in case you use frameworks to switch the content of your page.
|
||||
*
|
||||
* Can be a selector string, or an element directly.
|
||||
*/
|
||||
hiddenInputContainer: "body",
|
||||
|
||||
/**
|
||||
* If null, no capture type will be specified
|
||||
* If camera, mobile devices will skip the file selection and choose camera
|
||||
* If microphone, mobile devices will skip the file selection and choose the microphone
|
||||
* If camcorder, mobile devices will skip the file selection and choose the camera in video mode
|
||||
* On apple devices multiple must be set to false. AcceptedFiles may need to
|
||||
* be set to an appropriate mime type (e.g. "image/*", "audio/*", or "video/*").
|
||||
*/
|
||||
capture: null,
|
||||
|
||||
/**
|
||||
* **Deprecated**. Use `renameFile` instead.
|
||||
*/
|
||||
renameFilename: null,
|
||||
|
||||
/**
|
||||
* A function that is invoked before the file is uploaded to the server and renames the file.
|
||||
* This function gets the `File` as argument and can use the `file.name`. The actual name of the
|
||||
* file that gets used during the upload can be accessed through `file.upload.filename`.
|
||||
*/
|
||||
renameFile: null,
|
||||
|
||||
/**
|
||||
* If `true` the fallback will be forced. This is very useful to test your server
|
||||
* implementations first and make sure that everything works as
|
||||
* expected without dropzone if you experience problems, and to test
|
||||
* how your fallbacks will look.
|
||||
*/
|
||||
forceFallback: false,
|
||||
|
||||
/**
|
||||
* The text used before any files are dropped.
|
||||
*/
|
||||
dictDefaultMessage: "Drop files here to upload",
|
||||
|
||||
/**
|
||||
* The text that replaces the default message text it the browser is not supported.
|
||||
*/
|
||||
dictFallbackMessage:
|
||||
"Your browser does not support drag'n'drop file uploads.",
|
||||
|
||||
/**
|
||||
* The text that will be added before the fallback form.
|
||||
* If you provide a fallback element yourself, or if this option is `null` this will
|
||||
* be ignored.
|
||||
*/
|
||||
dictFallbackText:
|
||||
"Please use the fallback form below to upload your files like in the olden days.",
|
||||
|
||||
/**
|
||||
* If the filesize is too big.
|
||||
* `{{filesize}}` and `{{maxFilesize}}` will be replaced with the respective configuration values.
|
||||
*/
|
||||
dictFileTooBig:
|
||||
"File is too big ({{filesize}}MiB). Max filesize: {{maxFilesize}}MiB.",
|
||||
|
||||
/**
|
||||
* If the file doesn't match the file type.
|
||||
*/
|
||||
dictInvalidFileType: "You can't upload files of this type.",
|
||||
|
||||
/**
|
||||
* If the server response was invalid.
|
||||
* `{{statusCode}}` will be replaced with the servers status code.
|
||||
*/
|
||||
dictResponseError: "Server responded with {{statusCode}} code.",
|
||||
|
||||
/**
|
||||
* If `addRemoveLinks` is true, the text to be used for the cancel upload link.
|
||||
*/
|
||||
dictCancelUpload: "Cancel upload",
|
||||
|
||||
/**
|
||||
* The text that is displayed if an upload was manually canceled
|
||||
*/
|
||||
dictUploadCanceled: "Upload canceled.",
|
||||
|
||||
/**
|
||||
* If `addRemoveLinks` is true, the text to be used for confirmation when cancelling upload.
|
||||
*/
|
||||
dictCancelUploadConfirmation: "Are you sure you want to cancel this upload?",
|
||||
|
||||
/**
|
||||
* If `addRemoveLinks` is true, the text to be used to remove a file.
|
||||
*/
|
||||
dictRemoveFile: "Remove file",
|
||||
|
||||
/**
|
||||
* If this is not null, then the user will be prompted before removing a file.
|
||||
*/
|
||||
dictRemoveFileConfirmation: null,
|
||||
|
||||
/**
|
||||
* Displayed if `maxFiles` is st and exceeded.
|
||||
* The string `{{maxFiles}}` will be replaced by the configuration value.
|
||||
*/
|
||||
dictMaxFilesExceeded: "You can not upload any more files.",
|
||||
|
||||
/**
|
||||
* Allows you to translate the different units. Starting with `tb` for terabytes and going down to
|
||||
* `b` for bytes.
|
||||
*/
|
||||
dictFileSizeUnits: { tb: "TB", gb: "GB", mb: "MB", kb: "KB", b: "b" },
|
||||
/**
|
||||
* Called when dropzone initialized
|
||||
* You can add event listeners here
|
||||
*/
|
||||
init() {},
|
||||
|
||||
/**
|
||||
* Can be an **object** of additional parameters to transfer to the server, **or** a `Function`
|
||||
* that gets invoked with the `files`, `xhr` and, if it's a chunked upload, `chunk` arguments. In case
|
||||
* of a function, this needs to return a map.
|
||||
*
|
||||
* The default implementation does nothing for normal uploads, but adds relevant information for
|
||||
* chunked uploads.
|
||||
*
|
||||
* This is the same as adding hidden input fields in the form element.
|
||||
*/
|
||||
params(files, xhr, chunk) {
|
||||
if (chunk) {
|
||||
return {
|
||||
dzuuid: chunk.file.upload.uuid,
|
||||
dzchunkindex: chunk.index,
|
||||
dztotalfilesize: chunk.file.size,
|
||||
dzchunksize: this.options.chunkSize,
|
||||
dztotalchunkcount: chunk.file.upload.totalChunkCount,
|
||||
dzchunkbyteoffset: chunk.index * this.options.chunkSize,
|
||||
};
|
||||
}
|
||||
},
|
||||
|
||||
/**
|
||||
* A function that gets a [file](https://developer.mozilla.org/en-US/docs/DOM/File)
|
||||
* and a `done` function as parameters.
|
||||
*
|
||||
* If the done function is invoked without arguments, the file is "accepted" and will
|
||||
* be processed. If you pass an error message, the file is rejected, and the error
|
||||
* message will be displayed.
|
||||
* This function will not be called if the file is too big or doesn't match the mime types.
|
||||
*/
|
||||
accept(file, done) {
|
||||
return done();
|
||||
},
|
||||
|
||||
/**
|
||||
* The callback that will be invoked when all chunks have been uploaded for a file.
|
||||
* It gets the file for which the chunks have been uploaded as the first parameter,
|
||||
* and the `done` function as second. `done()` needs to be invoked when everything
|
||||
* needed to finish the upload process is done.
|
||||
*/
|
||||
chunksUploaded: function (file, done) {
|
||||
done();
|
||||
},
|
||||
|
||||
/**
|
||||
* Sends the file as binary blob in body instead of form data.
|
||||
* If this is set, the `params` option will be ignored.
|
||||
* It's an error to set this to `true` along with `uploadMultiple` since
|
||||
* multiple files cannot be in a single binary body.
|
||||
*/
|
||||
binaryBody: false,
|
||||
|
||||
/**
|
||||
* Gets called when the browser is not supported.
|
||||
* The default implementation shows the fallback input field and adds
|
||||
* a text.
|
||||
*/
|
||||
fallback() {
|
||||
// This code should pass in IE7... :(
|
||||
let messageElement;
|
||||
this.element.className = `${this.element.className} dz-browser-not-supported`;
|
||||
|
||||
for (let child of this.element.getElementsByTagName("div")) {
|
||||
if (/(^| )dz-message($| )/.test(child.className)) {
|
||||
messageElement = child;
|
||||
child.className = "dz-message"; // Removes the 'dz-default' class
|
||||
break;
|
||||
}
|
||||
}
|
||||
if (!messageElement) {
|
||||
messageElement = Dropzone.createElement(
|
||||
'<div class="dz-message"><span></span></div>'
|
||||
);
|
||||
this.element.appendChild(messageElement);
|
||||
}
|
||||
|
||||
let span = messageElement.getElementsByTagName("span")[0];
|
||||
if (span) {
|
||||
if (span.textContent != null) {
|
||||
span.textContent = this.options.dictFallbackMessage;
|
||||
} else if (span.innerText != null) {
|
||||
span.innerText = this.options.dictFallbackMessage;
|
||||
}
|
||||
}
|
||||
|
||||
return this.element.appendChild(this.getFallbackForm());
|
||||
},
|
||||
|
||||
/**
|
||||
* Gets called to calculate the thumbnail dimensions.
|
||||
*
|
||||
* It gets `file`, `width` and `height` (both may be `null`) as parameters and must return an object containing:
|
||||
*
|
||||
* - `srcWidth` & `srcHeight` (required)
|
||||
* - `trgWidth` & `trgHeight` (required)
|
||||
* - `srcX` & `srcY` (optional, default `0`)
|
||||
* - `trgX` & `trgY` (optional, default `0`)
|
||||
*
|
||||
* Those values are going to be used by `ctx.drawImage()`.
|
||||
*/
|
||||
resize(file, width, height, resizeMethod) {
|
||||
let info = {
|
||||
srcX: 0,
|
||||
srcY: 0,
|
||||
srcWidth: file.width,
|
||||
srcHeight: file.height,
|
||||
};
|
||||
|
||||
let srcRatio = file.width / file.height;
|
||||
|
||||
// Automatically calculate dimensions if not specified
|
||||
if (width == null && height == null) {
|
||||
width = info.srcWidth;
|
||||
height = info.srcHeight;
|
||||
} else if (width == null) {
|
||||
width = height * srcRatio;
|
||||
} else if (height == null) {
|
||||
height = width / srcRatio;
|
||||
}
|
||||
|
||||
// Make sure images aren't upscaled
|
||||
width = Math.min(width, info.srcWidth);
|
||||
height = Math.min(height, info.srcHeight);
|
||||
|
||||
let trgRatio = width / height;
|
||||
|
||||
if (info.srcWidth > width || info.srcHeight > height) {
|
||||
// Image is bigger and needs rescaling
|
||||
if (resizeMethod === "crop") {
|
||||
if (srcRatio > trgRatio) {
|
||||
info.srcHeight = file.height;
|
||||
info.srcWidth = info.srcHeight * trgRatio;
|
||||
} else {
|
||||
info.srcWidth = file.width;
|
||||
info.srcHeight = info.srcWidth / trgRatio;
|
||||
}
|
||||
} else if (resizeMethod === "contain") {
|
||||
// Method 'contain'
|
||||
if (srcRatio > trgRatio) {
|
||||
height = width / srcRatio;
|
||||
} else {
|
||||
width = height * srcRatio;
|
||||
}
|
||||
} else {
|
||||
throw new Error(`Unknown resizeMethod '${resizeMethod}'`);
|
||||
}
|
||||
}
|
||||
|
||||
info.srcX = (file.width - info.srcWidth) / 2;
|
||||
info.srcY = (file.height - info.srcHeight) / 2;
|
||||
|
||||
info.trgWidth = width;
|
||||
info.trgHeight = height;
|
||||
|
||||
return info;
|
||||
},
|
||||
|
||||
/**
|
||||
* Can be used to transform the file (for example, resize an image if necessary).
|
||||
*
|
||||
* The default implementation uses `resizeWidth` and `resizeHeight` (if provided) and resizes
|
||||
* images according to those dimensions.
|
||||
*
|
||||
* Gets the `file` as the first parameter, and a `done()` function as the second, that needs
|
||||
* to be invoked with the file when the transformation is done.
|
||||
*/
|
||||
transformFile(file, done) {
|
||||
if (
|
||||
(this.options.resizeWidth || this.options.resizeHeight) &&
|
||||
file.type.match(/image.*/)
|
||||
) {
|
||||
return this.resizeImage(
|
||||
file,
|
||||
this.options.resizeWidth,
|
||||
this.options.resizeHeight,
|
||||
this.options.resizeMethod,
|
||||
done
|
||||
);
|
||||
} else {
|
||||
return done(file);
|
||||
}
|
||||
},
|
||||
|
||||
/**
|
||||
* A string that contains the template used for each dropped
|
||||
* file. Change it to fulfill your needs but make sure to properly
|
||||
* provide all elements.
|
||||
*
|
||||
* If you want to use an actual HTML element instead of providing a String
|
||||
* as a config option, you could create a div with the id `tpl`,
|
||||
* put the template inside it and provide the element like this:
|
||||
*
|
||||
* document
|
||||
* .querySelector('#tpl')
|
||||
* .innerHTML
|
||||
*
|
||||
*/
|
||||
previewTemplate: defaultPreviewTemplate,
|
||||
|
||||
/*
|
||||
Those functions register themselves to the events on init and handle all
|
||||
the user interface specific stuff. Overwriting them won't break the upload
|
||||
but can break the way it's displayed.
|
||||
You can overwrite them if you don't like the default behavior. If you just
|
||||
want to add an additional event handler, register it on the dropzone object
|
||||
and don't overwrite those options.
|
||||
*/
|
||||
|
||||
// Those are self explanatory and simply concern the DragnDrop.
|
||||
drop(e) {
|
||||
return this.element.classList.remove("dz-drag-hover");
|
||||
},
|
||||
dragstart(e) {},
|
||||
dragend(e) {
|
||||
return this.element.classList.remove("dz-drag-hover");
|
||||
},
|
||||
dragenter(e) {
|
||||
return this.element.classList.add("dz-drag-hover");
|
||||
},
|
||||
dragover(e) {
|
||||
return this.element.classList.add("dz-drag-hover");
|
||||
},
|
||||
dragleave(e) {
|
||||
return this.element.classList.remove("dz-drag-hover");
|
||||
},
|
||||
|
||||
paste(e) {},
|
||||
|
||||
// Called whenever there are no files left in the dropzone anymore, and the
|
||||
// dropzone should be displayed as if in the initial state.
|
||||
reset() {
|
||||
return this.element.classList.remove("dz-started");
|
||||
},
|
||||
|
||||
// Called when a file is added to the queue
|
||||
// Receives `file`
|
||||
addedfile(file) {
|
||||
if (this.element === this.previewsContainer) {
|
||||
this.element.classList.add("dz-started");
|
||||
}
|
||||
|
||||
if (this.previewsContainer && !this.options.disablePreviews) {
|
||||
file.previewElement = Dropzone.createElement(
|
||||
this.options.previewTemplate.trim()
|
||||
);
|
||||
file.previewTemplate = file.previewElement; // Backwards compatibility
|
||||
|
||||
this.previewsContainer.appendChild(file.previewElement);
|
||||
for (var node of file.previewElement.querySelectorAll("[data-dz-name]")) {
|
||||
node.textContent = file.name;
|
||||
}
|
||||
for (node of file.previewElement.querySelectorAll("[data-dz-size]")) {
|
||||
node.innerHTML = this.filesize(file.size);
|
||||
}
|
||||
|
||||
if (this.options.addRemoveLinks) {
|
||||
file._removeLink = Dropzone.createElement(
|
||||
`<a class="dz-remove" href="javascript:undefined;" data-dz-remove>${this.options.dictRemoveFile}</a>`
|
||||
);
|
||||
file.previewElement.appendChild(file._removeLink);
|
||||
}
|
||||
|
||||
let removeFileEvent = (e) => {
|
||||
e.preventDefault();
|
||||
e.stopPropagation();
|
||||
if (file.status === Dropzone.UPLOADING) {
|
||||
return Dropzone.confirm(
|
||||
this.options.dictCancelUploadConfirmation,
|
||||
() => this.removeFile(file)
|
||||
);
|
||||
} else {
|
||||
if (this.options.dictRemoveFileConfirmation) {
|
||||
return Dropzone.confirm(
|
||||
this.options.dictRemoveFileConfirmation,
|
||||
() => this.removeFile(file)
|
||||
);
|
||||
} else {
|
||||
return this.removeFile(file);
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
for (let removeLink of file.previewElement.querySelectorAll(
|
||||
"[data-dz-remove]"
|
||||
)) {
|
||||
removeLink.addEventListener("click", removeFileEvent);
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
// Called whenever a file is removed.
|
||||
removedfile(file) {
|
||||
if (file.previewElement != null && file.previewElement.parentNode != null) {
|
||||
file.previewElement.parentNode.removeChild(file.previewElement);
|
||||
}
|
||||
return this._updateMaxFilesReachedClass();
|
||||
},
|
||||
|
||||
// Called when a thumbnail has been generated
|
||||
// Receives `file` and `dataUrl`
|
||||
thumbnail(file, dataUrl) {
|
||||
if (file.previewElement) {
|
||||
file.previewElement.classList.remove("dz-file-preview");
|
||||
for (let thumbnailElement of file.previewElement.querySelectorAll(
|
||||
"[data-dz-thumbnail]"
|
||||
)) {
|
||||
thumbnailElement.alt = file.name;
|
||||
thumbnailElement.src = dataUrl;
|
||||
}
|
||||
|
||||
return setTimeout(
|
||||
() => file.previewElement.classList.add("dz-image-preview"),
|
||||
1
|
||||
);
|
||||
}
|
||||
},
|
||||
|
||||
// Called whenever an error occurs
|
||||
// Receives `file` and `message`
|
||||
error(file, message) {
|
||||
if (file.previewElement) {
|
||||
file.previewElement.classList.add("dz-error");
|
||||
if (typeof message !== "string" && message.error) {
|
||||
message = message.error;
|
||||
}
|
||||
for (let node of file.previewElement.querySelectorAll(
|
||||
"[data-dz-errormessage]"
|
||||
)) {
|
||||
node.textContent = message;
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
errormultiple() {},
|
||||
|
||||
// Called when a file gets processed. Since there is a cue, not all added
|
||||
// files are processed immediately.
|
||||
// Receives `file`
|
||||
processing(file) {
|
||||
if (file.previewElement) {
|
||||
file.previewElement.classList.add("dz-processing");
|
||||
if (file._removeLink) {
|
||||
return (file._removeLink.innerHTML = this.options.dictCancelUpload);
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
processingmultiple() {},
|
||||
|
||||
// Called whenever the upload progress gets updated.
|
||||
// Receives `file`, `progress` (percentage 0-100) and `bytesSent`.
|
||||
// To get the total number of bytes of the file, use `file.size`
|
||||
uploadprogress(file, progress, bytesSent) {
|
||||
if (file.previewElement) {
|
||||
for (let node of file.previewElement.querySelectorAll(
|
||||
"[data-dz-uploadprogress]"
|
||||
)) {
|
||||
node.nodeName === "PROGRESS"
|
||||
? (node.value = progress)
|
||||
: (node.style.width = `${progress}%`);
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
// Called whenever the total upload progress gets updated.
|
||||
// Called with totalUploadProgress (0-100), totalBytes and totalBytesSent
|
||||
totaluploadprogress() {},
|
||||
|
||||
// Called just before the file is sent. Gets the `xhr` object as second
|
||||
// parameter, so you can modify it (for example to add a CSRF token) and a
|
||||
// `formData` object to add additional information.
|
||||
sending() {},
|
||||
|
||||
sendingmultiple() {},
|
||||
|
||||
// When the complete upload is finished and successful
|
||||
// Receives `file`
|
||||
success(file) {
|
||||
if (file.previewElement) {
|
||||
return file.previewElement.classList.add("dz-success");
|
||||
}
|
||||
},
|
||||
|
||||
successmultiple() {},
|
||||
|
||||
// When the upload is canceled.
|
||||
canceled(file) {
|
||||
return this.emit("error", file, this.options.dictUploadCanceled);
|
||||
},
|
||||
|
||||
canceledmultiple() {},
|
||||
|
||||
// When the upload is finished, either with success or an error.
|
||||
// Receives `file`
|
||||
complete(file) {
|
||||
if (file._removeLink) {
|
||||
file._removeLink.innerHTML = this.options.dictRemoveFile;
|
||||
}
|
||||
if (file.previewElement) {
|
||||
return file.previewElement.classList.add("dz-complete");
|
||||
}
|
||||
},
|
||||
|
||||
completemultiple() {},
|
||||
|
||||
maxfilesexceeded() {},
|
||||
|
||||
maxfilesreached() {},
|
||||
|
||||
queuecomplete() {},
|
||||
|
||||
addedfiles() {},
|
||||
};
|
||||
|
||||
export default defaultOptions;
|
||||
37
storage/public/dist/libs/dropzone/src/preview-template.html
vendored
Normal file
37
storage/public/dist/libs/dropzone/src/preview-template.html
vendored
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
<div class="dz-preview dz-file-preview">
|
||||
<div class="dz-image"><img data-dz-thumbnail /></div>
|
||||
<div class="dz-details">
|
||||
<div class="dz-size"><span data-dz-size></span></div>
|
||||
<div class="dz-filename"><span data-dz-name></span></div>
|
||||
</div>
|
||||
<div class="dz-progress">
|
||||
<span class="dz-upload" data-dz-uploadprogress></span>
|
||||
</div>
|
||||
<div class="dz-error-message"><span data-dz-errormessage></span></div>
|
||||
<div class="dz-success-mark">
|
||||
<svg
|
||||
width="54"
|
||||
height="54"
|
||||
viewBox="0 0 54 54"
|
||||
fill="white"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
>
|
||||
<path
|
||||
d="M10.2071 29.7929L14.2929 25.7071C14.6834 25.3166 15.3166 25.3166 15.7071 25.7071L21.2929 31.2929C21.6834 31.6834 22.3166 31.6834 22.7071 31.2929L38.2929 15.7071C38.6834 15.3166 39.3166 15.3166 39.7071 15.7071L43.7929 19.7929C44.1834 20.1834 44.1834 20.8166 43.7929 21.2071L22.7071 42.2929C22.3166 42.6834 21.6834 42.6834 21.2929 42.2929L10.2071 31.2071C9.81658 30.8166 9.81658 30.1834 10.2071 29.7929Z"
|
||||
/>
|
||||
</svg>
|
||||
</div>
|
||||
<div class="dz-error-mark">
|
||||
<svg
|
||||
width="54"
|
||||
height="54"
|
||||
viewBox="0 0 54 54"
|
||||
fill="white"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
>
|
||||
<path
|
||||
d="M26.2929 20.2929L19.2071 13.2071C18.8166 12.8166 18.1834 12.8166 17.7929 13.2071L13.2071 17.7929C12.8166 18.1834 12.8166 18.8166 13.2071 19.2071L20.2929 26.2929C20.6834 26.6834 20.6834 27.3166 20.2929 27.7071L13.2071 34.7929C12.8166 35.1834 12.8166 35.8166 13.2071 36.2071L17.7929 40.7929C18.1834 41.1834 18.8166 41.1834 19.2071 40.7929L26.2929 33.7071C26.6834 33.3166 27.3166 33.3166 27.7071 33.7071L34.7929 40.7929C35.1834 41.1834 35.8166 41.1834 36.2071 40.7929L40.7929 36.2071C41.1834 35.8166 41.1834 35.1834 40.7929 34.7929L33.7071 27.7071C33.3166 27.3166 33.3166 26.6834 33.7071 26.2929L40.7929 19.2071C41.1834 18.8166 41.1834 18.1834 40.7929 17.7929L36.2071 13.2071C35.8166 12.8166 35.1834 12.8166 34.7929 13.2071L27.7071 20.2929C27.3166 20.6834 26.6834 20.6834 26.2929 20.2929Z"
|
||||
/>
|
||||
</svg>
|
||||
</div>
|
||||
</div>
|
||||
Loading…
Add table
Add a link
Reference in a new issue