gitlab-org--gitlab-foss/app/assets/javascripts/autosave.js

57 lines
1.4 KiB
JavaScript
Raw Normal View History

2018-06-16 13:20:30 +00:00
/* eslint-disable no-param-reassign, prefer-template, no-void, consistent-return */
2017-05-05 17:59:41 +00:00
import AccessorUtilities from './lib/utils/accessor';
2016-07-24 20:45:11 +00:00
export default class Autosave {
constructor(field, key) {
this.field = field;
2017-05-05 17:59:41 +00:00
this.isLocalStorageAvailable = AccessorUtilities.isLocalStorageAccessSafe();
if (key.join != null) {
key = key.join('/');
}
this.key = 'autosave/' + key;
this.field.data('autosave', this);
this.restore();
2018-07-17 23:58:01 +00:00
this.field.on('input', () => this.save());
}
2016-07-24 20:45:11 +00:00
restore() {
2017-05-05 17:59:41 +00:00
if (!this.isLocalStorageAvailable) return;
if (!this.field.length) return;
2017-05-05 17:59:41 +00:00
const text = window.localStorage.getItem(this.key);
2017-05-05 17:59:41 +00:00
if ((text != null ? text.length : void 0) > 0) {
this.field.val(text);
}
this.field.trigger('input');
// v-model does not update with jQuery trigger
// https://github.com/vuejs/vue/issues/2804#issuecomment-216968137
const event = new Event('change', { bubbles: true, cancelable: false });
const field = this.field.get(0);
2018-06-21 12:22:40 +00:00
if (field) {
field.dispatchEvent(event);
}
}
2016-07-24 20:45:11 +00:00
save() {
if (!this.field.length) return;
const text = this.field.val();
2017-05-05 17:59:41 +00:00
if (this.isLocalStorageAvailable && (text != null ? text.length : void 0) > 0) {
return window.localStorage.setItem(this.key, text);
}
2017-05-05 17:59:41 +00:00
return this.reset();
}
reset() {
2017-05-05 17:59:41 +00:00
if (!this.isLocalStorageAvailable) return;
return window.localStorage.removeItem(this.key);
}
}