be-literate
v0.0.11
Published
Enhance the input element so it can declaratively read contents from a local file (or files).
Downloads
31
Maintainers
Readme
be-literate (📖)
Enhance the input element so it can declaratively read contents from a local file (or files).
be-literate turns this code snippet into an attribute-based HTML Enhancement / Decorator / Behavior / Directive / Custom Attribute.
Syntax:
Example 1
<input type=file be-literate onload="
const {fileContents} = event;
console.log({fileContents});
" onprogress="console.log(event)">
It causes the input element to emit event "load", and the contents are provided in the event's fileContents. In case other fellow enhancements are "overloading" the onload event in this way, check that the event's "enh" value is set to the name of the enhancement within the Shadow Realm ('beLiterate' or '📖', for example) before proceeding.
Security [TODO]
Unfortunately, the platform provides no support for being able to confirm the integrity of the markup shown above.
So in fact when you run the code above with "minimal" CSP rules in place, it won't work. You would instead need to attach the onload/onprogress event handlers via a script that knows how to locate the element, or via a framework or a web component host.
So what are the ways we can attach these event listeners onto the input element?
There are traditional ways, i.e. via a framework or web component or rendering helper library.
For example:
<input id=myFileInput type=file be-literate>
<script>
myFileInput.addEventListener('load', e => {
const {fileContents} = e;
console.log({fileContents});
});
myFileInput.addEventListener('progress', e => {
console.log(e);
});
</script>
But be-literate itself provides the following support:
<script type=module blocking=render>
(await import('be-literate/emc.js'))
.w('#TQBxgJRkCJBoDO9cANgA')
.a({
load: e => console.log(e.fileContents),
progress: e => console.log(e)
});
</script>
<input id=TQBxgJRkCJBoDO9cANgA type=file be-literate>
"w" stands for "where" and it allows for css match expressions.
"a" stands for "addEventListener" or "actions".
Alternative names
In a closed environment, where the chances of clashes with other custom attributes can be controlled, consider using a smaller name, like 📖, by referencing an alternate EMC file:
<input type=file 📖 onload="
const {fileContents} = event;
console.log({fileContents});
">
(On Windows, for the 📖 emoji, type 🪟 + . + open book, and it will remain in recent memory).
The file contents can be read via path: inputEl.beEnhanced.beLiterate.fileContents (or inputEl.beEnhanced.📖.fileContents).
Specifying Read Option
To specify which of the file read options to apply to the file(s), set the attribute:
<input type=file 📖='{"readVerb": "readAsDataURL"}' >
If not specified, as above, the default is readAsText.
Running locally
Any web server than can serve static files will do, but...
- Install git.
- Do a git clone or a git fork of repository https://github.com/bahrus/be-literate
- Install node.js
- Open command window to folder where you cloned this repo.
npm install
npm run serve
- Open http://localhost:3030/demo/dev in a modern browser.
Using from ESM Module:
import 'be-literate/behivior.js';
Using from CDN:
<script type=module crossorigin=anonymous>
import 'https://esm.run/be-literate';
</script>