Giter Site home page Giter Site logo

persist's Introduction

persist

Repository size

About   |   start   |   demo   |   Author


About

persist makes quick work of automatically storing input field values and loading them on page load - aka persisting inputs.

Check out the demo.

For now this is just some speculative reality. I just need something dumb like this for a testing lots of phones. Feel free to use it and gimme some feedback though!

quick start

add persist to any input, select, textarea field to have its value persist between page loads. or just add persistto the body tag to persist the whole page, or a form tag to persist the form.

<input persist type="text"></input>

API

initialise

persist({
    namespace: 'persist-demo',
    version: 1,
    verbose: true,
    cleanup: true,
    showPersistManager: true,
    highlight: true,
})

tag stuff up!

apply persist to body,form,input,select,textarea tags to persist them. persist-for, persist-until, forget-between-versions only work on the input tag level

safely naming your inputs

its recommended to provide a persist-name value on your fields, especially if you have dynamic document bodies. This will guard against name attribute changes breaking your persistence.

<input persist persist-name="my-input" name="my-input-post-migration" type="text"></input>

The logic for determining input identifiers is as follows:

field.getAttribute("persist-name") || field.getAttribute("name") || field.getAttribute("id") || field.type || field.tagName.toLowerCase();

persist

persist input values between page loads

<input persist type="text"></input>

persist-for

persist input values for a certain amount of time

<input persist persist-for="1h" type="text"></input>

persist-until

persist input values until a certain date

<input persist persist-until="2021-12-31" type="text"></input>

forget-between-versions

forget all stored values when the version changes

<input persist forget-between-versions type="text"></input>

supported input types

number ✅

date ✅

color ✅

url ✅

email ✅

phone ✅

textarea ✅

select ✅

select[multiple] ✅

checkbox ✅

radio ✅

radio group 🤔

file 🤔

text ✅

range ✅

datetime-local ✅

month ✅

password ✅

search ✅

tel ✅

time ✅

week ✅

files ⚠️

files dont work

note about files: `persist` will store files as base64 strings. It goes without saying that this is not a good idea for large files. Consult the mozilla documentation to see how much data browsers can store in local storage. link: https://developer.mozilla.org/en-US/docs/Web/API/Web_Storage_API/Using_the_Web_Storage_API#storage_limits

browser support

persist uses the localStorage api, which is supported by all modern browsers. link: https://caniuse.com/?search=localStorage

persist's People

Contributors

made-by-chris avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.