keeweb/app/scripts/views/fields/field-view-text.js

186 lines
5.9 KiB
JavaScript
Raw Normal View History

2017-01-31 07:50:28 +01:00
const Backbone = require('backbone');
const FieldView = require('./field-view');
const GeneratorView = require('../generator-view');
const KeyHandler = require('../../comp/key-handler');
const Keys = require('../../const/keys');
const PasswordGenerator = require('../../util/password-generator');
const kdbxweb = require('kdbxweb');
2015-10-17 23:49:24 +02:00
2017-01-31 07:50:28 +01:00
const FieldViewText = FieldView.extend({
2015-10-17 23:49:24 +02:00
renderValue: function(value) {
2016-07-17 13:30:38 +02:00
return value && value.isProtected ? PasswordGenerator.present(value.textLength)
: _.escape(value || '').replace(/\n/g, '<br/>');
2015-10-17 23:49:24 +02:00
},
getEditValue: function(value) {
2016-01-16 15:19:33 +01:00
return value && value.isProtected ? value.getText() : value || '';
2015-10-17 23:49:24 +02:00
},
startEdit: function() {
2017-01-31 07:50:28 +01:00
const text = this.getEditValue(this.value);
const isProtected = !!(this.value && this.value.isProtected);
2016-01-17 13:23:07 +01:00
this.$el.toggleClass('details__field--protected', isProtected);
2015-10-17 23:49:24 +02:00
this.input = $(document.createElement(this.model.multiline ? 'textarea' : 'input'));
this.valueEl.html('').append(this.input);
this.input.attr({ autocomplete: 'off', spellcheck: 'false' })
.val(text).focus()[0].setSelectionRange(text.length, text.length);
this.input.bind({
input: this.fieldValueInput.bind(this),
keydown: this.fieldValueKeydown.bind(this),
2015-10-20 21:58:07 +02:00
keypress: this.fieldValueInput.bind(this),
2016-01-16 13:35:34 +01:00
click: this.fieldValueInputClick.bind(this),
mousedown: this.fieldValueInputMouseDown.bind(this)
2015-10-17 23:49:24 +02:00
});
2016-12-05 11:18:07 +01:00
this.listenTo(Backbone, 'click', this.fieldValueBlur);
this.listenTo(Backbone, 'main-window-will-close user-idle', this.externalEndEdit);
2015-10-17 23:49:24 +02:00
if (this.model.multiline) {
this.setInputHeight();
}
2015-11-08 19:24:37 +01:00
if (this.model.canGen) {
$('<div/>').addClass('details__field-value-btn details__field-value-btn-gen').appendTo(this.valueEl)
2015-10-20 21:58:07 +02:00
.click(this.showGeneratorClick.bind(this))
.mousedown(this.showGenerator.bind(this));
}
},
showGeneratorClick: function(e) {
e.stopPropagation();
if (!this.gen) {
this.input.focus();
}
},
showGenerator: function() {
if (this.gen) {
this.hideGenerator();
} else {
2017-01-31 07:50:28 +01:00
const fieldRect = this.input[0].getBoundingClientRect();
2016-02-15 22:06:11 +01:00
this.gen = new GeneratorView({model: {pos: {left: fieldRect.left, top: fieldRect.bottom}, password: this.value}}).render();
2015-10-20 21:58:07 +02:00
this.gen.once('remove', this.generatorClosed.bind(this));
this.gen.once('result', this.generatorResult.bind(this));
}
},
hideGenerator: function() {
if (this.gen) {
2017-01-31 07:50:28 +01:00
const gen = this.gen;
2015-10-20 21:58:07 +02:00
delete this.gen;
gen.remove();
}
},
generatorClosed: function() {
if (this.gen) {
delete this.gen;
this.endEdit();
}
},
generatorResult: function(password) {
if (this.gen) {
delete this.gen;
this.endEdit(password);
}
2015-10-17 23:49:24 +02:00
},
setInputHeight: function() {
2017-01-31 07:50:28 +01:00
const MinHeight = 18;
2015-10-17 23:49:24 +02:00
this.input.height(MinHeight);
2017-01-31 07:50:28 +01:00
let newHeight = this.input[0].scrollHeight;
2015-10-17 23:49:24 +02:00
if (newHeight <= MinHeight) {
newHeight = MinHeight;
} else {
newHeight += 2;
}
this.input.height(newHeight);
},
2016-01-16 13:35:34 +01:00
fieldValueBlur: function() {
if (!this.gen && this.input) {
this.endEdit(this.input.val());
2015-10-20 21:58:07 +02:00
}
2015-10-17 23:49:24 +02:00
},
fieldValueInput: function(e) {
e.stopPropagation();
if (this.model.multiline) {
this.setInputHeight();
}
},
2015-10-20 21:58:07 +02:00
fieldValueInputClick: function() {
if (this.gen) {
this.hideGenerator();
}
},
2016-01-16 13:35:34 +01:00
fieldValueInputMouseDown: function(e) {
e.stopPropagation();
},
2015-10-17 23:49:24 +02:00
fieldValueKeydown: function(e) {
2015-11-17 22:49:12 +01:00
KeyHandler.reg();
2017-01-31 07:50:28 +01:00
const code = e.keyCode || e.which;
2015-10-17 23:49:24 +02:00
if (code === Keys.DOM_VK_RETURN) {
2016-03-12 12:25:25 +01:00
if (!this.model.multiline || (!e.altKey && !e.shiftKey && !e.ctrlKey)) {
if (this.gen) {
e.target.value = this.gen.password;
this.hideGenerator();
return;
}
this.stopBlurListener();
this.endEdit(e.target.value);
2015-10-17 23:49:24 +02:00
}
} else if (code === Keys.DOM_VK_ESCAPE) {
this.stopBlurListener();
2015-10-17 23:49:24 +02:00
this.endEdit();
} else if (code === Keys.DOM_VK_TAB) {
e.preventDefault();
this.stopBlurListener();
2015-10-17 23:49:24 +02:00
this.endEdit(e.target.value, { tab: { field: this.model.name, prev: e.shiftKey } });
2016-08-15 22:08:17 +02:00
} else if (code === Keys.DOM_VK_G && e.metaKey) {
e.preventDefault();
this.showGenerator();
2016-08-22 18:41:40 +02:00
} else if (code === Keys.DOM_VK_S && (e.metaKey || e.ctrlKey)) {
this.stopBlurListener();
this.endEdit(e.target.value);
return;
2015-10-17 23:49:24 +02:00
}
2016-08-22 18:41:40 +02:00
e.stopPropagation();
2015-10-17 23:49:24 +02:00
},
2016-09-19 19:05:23 +02:00
externalEndEdit: function() {
if (this.input) {
this.endEdit(this.input.val());
}
},
2015-10-17 23:49:24 +02:00
endEdit: function(newVal, extra) {
2015-10-20 21:58:07 +02:00
if (this.gen) {
this.hideGenerator();
}
2015-10-17 23:49:24 +02:00
if (!this.editing) {
return;
}
delete this.input;
this.stopBlurListener();
2015-10-17 23:49:24 +02:00
if (typeof newVal === 'string' && this.value instanceof kdbxweb.ProtectedValue) {
newVal = kdbxweb.ProtectedValue.fromString(newVal);
}
if (typeof newVal === 'string') {
newVal = $.trim(newVal);
}
FieldView.prototype.endEdit.call(this, newVal, extra);
2015-10-20 21:58:07 +02:00
},
stopBlurListener: function() {
this.stopListening(Backbone, 'click main-window-will-close', this.fieldValueBlur);
},
2015-10-20 21:58:07 +02:00
render: function() {
FieldView.prototype.render.call(this);
2015-10-17 23:49:24 +02:00
}
});
module.exports = FieldViewText;