Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
tweakpane-plugin-file-import
Advanced tools
A general-purpose and simple file input Tweakpane plugin
tweakpane-plugin-file-import
A Tweakpane plugin for importing files.
[!WARNING]
The version
1.0.0
and upwards of this package only supportsTweakpane v4
.If you are still using
Tweakpane v3
, you can only use thev0
of this package.You can install it.
npm i tweakpane-plugin-file-import@0.2.0
And use it like so.
<script src="https://unpkg.com/tweakpane@3.0.5/dist/tweakpane.js"></script> <script src="./tweakpane-plugin-file-import.min.js"></script> <script> const pane = new Tweakpane.Pane(); pane.registerPlugin(TweakpaneFileImportPlugin); </script>
You need Tweakpane v4
to install this plugin.
You may use https://unpkg.com/tweakpane-plugin-file-import to get the latest version
and add it as a <script>
tag on your HTML page.
You can install with npm
:
npm i tweakpane-plugin-file-import
And import it like so.
import {Pane} from 'tweakpane';
import * as TweakpaneFileImportPlugin from 'tweakpane-plugin-file-import';
const pane = new Pane();
pane.registerPlugin(TweakpaneFileImportPlugin);
[!TIP]
Check
test/browser.html
for an example of the plugin being used.
Simply initialize the params with an empty string and pass the optional parameters.
const params = {
file: '',
};
// If you're using Tweakpane v3 -------
pane
.addInput(params, 'file', {
view: 'file-input',
lineCount: 3,
filetypes: ['.png', '.jpg'],
invalidFiletypeMessage: "We can't accept those filetypes!"
})
.on('change', (ev) => {
console.log(ev.value);
});
// If you're using Tweakpane v4 -------
pane
.addBinding(params, 'file', {
view: 'file-input',
lineCount: 3,
filetypes: ['.png', '.jpg'],
invalidFiletypeMessage: "We can't accept those filetypes!"
})
.on('change', (ev) => {
console.log(ev.value);
});
property | type | description |
---|---|---|
lineCount | int | Number of lines for the height of the container. Similar to FPS graph |
filetypes | array | Array of valid file extensions. |
invalidFiletypeMessage | string | String shown when the user tries to upload an invalid filetype. |
If you want to contribute to this package, you are free to open a pull request. 😊
[!NOTE]
You'll need to have
Node 16
or upwards installed in order to properly install and runpackage.json
script commands.
Install dependencies:
npm install
To build the source code and watch changes, run:
npm run build:dev
npm start
After this, simply open test/browser.html
to see the results.
This project follows the same structure as any other Tweakpane third-party plugin.
|- src
| |- controller ...... Controller for the custom view
| |- sass ............ Plugin CSS
| `- view ............ Custom view
| |- index.ts ........ Entrypoint
| |- plugin.ts ....... Plugin
|- dist ............... Compiled files
`- test
`- browser.html .... Plugin usage in an HTML file
FAQs
A general-purpose and simple file input Tweakpane plugin
The npm package tweakpane-plugin-file-import receives a total of 163 weekly downloads. As such, tweakpane-plugin-file-import popularity was classified as not popular.
We found that tweakpane-plugin-file-import demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.