1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 09:52:26 +01:00

Add persistent form class

This commit is contained in:
Dan Finlay 2016-08-25 12:17:09 -07:00
parent b2233f7e0a
commit 6eb09c1a79
2 changed files with 82 additions and 1 deletions

View File

@ -10,5 +10,26 @@ Since:
Whenever this class is loaded, it registers an `onChange` listener. On those events, it checks the target for a special ID attribute it listens for.
Let's say we call our class `PersistentForm`. So then we might check for a `persistent-form-id`.
Let's say we call our class `PersistentForm`. So then we might check for a `persistent-form-id` on change.
The parent element will define a special attribute, let's say `persistent-form-parent-id`.
Here's some pseudo-code for it:
```
onChange(ev) =>
persisted = localStorage[parentKey]
persisted[childKey] = ev.value
localStorage[parentKey] = persisted
```
On startup, we just do the inverse:
```
onStart() =>
el = this.getEl()
parentKey = el.attr('persistent-form-parent-id')
children = el.children.where('[persistent-form-id]')
children.each(loadValue)
```

60
ui/lib/persistent-form.js Normal file
View File

@ -0,0 +1,60 @@
const inherits = require('util').inherits
const Component = require('react').Component
const defaultKey = 'persistent-form-default'
const eventName = 'keyup'//.persistent-form-change'//.persistent-form-change'
module.exports = PersistentForm
function PersistentForm () {
Component.call(this)
}
inherits(PersistentForm, Component)
PersistentForm.prototype.componentDidMount = function () {
const fields = document.querySelectorAll('[data-persistent-formid]')
const store = this.getPersistentStore()
fields.forEach((field) => {
const key = field.getAttribute('data-persistent-formid')
const val = field.value
const cached = store[key]
if (cached !== undefined) {
field.value = cached
}
field.addEventListener(eventName, this.persistentFieldDidUpdate.bind(this))
})
}
PersistentForm.prototype.getPersistentStore = function () {
let store = window.localStorage[this.persistentFormParentId || defaultKey]
if (store && store !== 'null') {
store = JSON.parse(store)
} else {
store = {}
}
return store
}
PersistentForm.prototype.setPersistentStore = function (newStore) {
window.localStorage[this.persistentFormParentId || defaultKey] = JSON.stringify(newStore)
}
PersistentForm.prototype.persistentFieldDidUpdate = function (event) {
const field = event.target
const store = this.getPersistentStore()
const key = field.getAttribute('data-persistent-formid')
const val = field.value
store[key] = val
console.log(val)
this.setPersistentStore(store)
}
PersistentForm.prototype.componentWillUnmount = function () {
const fields = document.querySelectorAll('[data-persistent-formid]')
const store = this.getPersistentStore()
fields.forEach((field) => {
field.removeEventListener(eventName, this.persistentFieldDidUpdate.bind(this))
})
this.setPersistentStore({})
}