blob: be7e7ddc506da4473af63af2b08155b2d0a0198f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
|
odoo.define('mail/static/src/components/editable_text/editable_text.js', function (require) {
'use strict';
const { markEventHandled } = require('mail/static/src/utils/utils.js');
const useShouldUpdateBasedOnProps = require('mail/static/src/component_hooks/use_should_update_based_on_props/use_should_update_based_on_props.js');
const { Component } = owl;
class EditableText extends Component {
constructor(...args) {
super(...args);
useShouldUpdateBasedOnProps();
}
mounted() {
this.el.focus();
this.el.setSelectionRange(0, (this.el.value && this.el.value.length) || 0);
}
willUnmount() {
this.trigger('o-cancel');
}
//--------------------------------------------------------------------------
// Handlers
//--------------------------------------------------------------------------
/**
* @private
* @param {MouseEvent} ev
*/
_onBlur(ev) {
this.trigger('o-cancel');
}
/**
* @private
* @param {MouseEvent} ev
*/
_onClick(ev) {
markEventHandled(ev, 'EditableText.click');
this.trigger('o-clicked');
}
/**
* @private
* @param {KeyboardEvent} ev
*/
_onKeydown(ev) {
switch (ev.key) {
case 'Enter':
this._onKeydownEnter(ev);
break;
case 'Escape':
this.trigger('o-cancel');
break;
}
}
/**
* @private
* @param {KeyboardEvent} ev
*/
_onKeydownEnter(ev) {
const value = this.el.value;
const newName = value || this.props.placeholder;
if (this.props.value !== newName) {
this.trigger('o-validate', { newName });
} else {
this.trigger('o-cancel');
}
}
}
Object.assign(EditableText, {
defaultProps: {
placeholder: "",
value: "",
},
props: {
placeholder: String,
value: String,
},
template: 'mail.EditableText',
});
return EditableText;
});
|