siesta-lite
Version:
Stress-free JavaScript unit testing and functional testing tool, works in NodeJS and browsers
145 lines (112 loc) • 3.99 kB
JavaScript
/*
Siesta 5.6.1
Copyright(c) 2009-2022 Bryntum AB
https://bryntum.com/contact
https://bryntum.com/products/siesta/license
*/
Ext.define('Siesta.Recorder.UI.Editor.DragTarget', {
extend : 'Ext.form.field.Picker',
alias : 'widget.drageditor',
editable : false,
hideTrigger : true,
minWidth : 300,
sourceEditor : null,
targetEditor : null,
record : null,
onTargetChange : null,
listeners : {
focus : function (fld, e, opts) {
fld.expand();
}
},
cancelEdit : function () {
var me = this;
me.fireEvent('blur');
me.collapse();
},
applyValues : function () {
var me = this,
form = me.picker,
values = form.getForm().getValues()
var rec = me.up('tablepanel').editing.activeRecord;
this.sourceEditor.applyChanges(rec)
this.targetEditor.applyChanges(rec)
var by = values.by;
rec.set('by', (by && rec.parseOffset(by)) || by)
me.fireEvent('blur');
me.collapse();
},
applyChanges : function () {
},
collapseIf : function (e) {
if (!e.getTarget('.x-layer')) return this.callParent(arguments)
},
valueToRaw : function () {
return ''
},
createPicker : function () {
var R = Siesta.Resource('Siesta.Recorder.UI.Editor.DragTarget');
var me = this;
var targetListeners = {
select : this.onTargetChange,
keyup : this.onTargetChange,
focus : this.onTargetChange,
buffer : 50,
scope : this
};
return new Ext.form.Panel({
floating : true,
bodyPadding : 5,
title : R.get('dragVariantTitle'),
items : [
this.sourceEditor = new Siesta.Recorder.UI.Editor.Target({
fieldLabel : R.get('targetLabel') + ':',
anchor : '100%',
name : 'target',
labelWidth : 60,
listeners : targetListeners
}),
this.targetEditor = new Siesta.Recorder.UI.Editor.Target({
targetProperty : 'toTarget',
fieldLabel : R.get('toLabel') + ':',
name : 'toTarget',
anchor : '100%',
labelWidth : 60,
listeners : targetListeners
}),
{
xtype : 'textfield',
name : 'by',
fieldLabel : R.get('byLabel') + ':',
labelWidth : 60,
width : 200
}
],
listeners: {
afterrender: function (panel, opts) {
var rec = me.record;
me.sourceEditor.populate(rec.get('target'))
me.targetEditor.populate(rec.get('toTarget'))
panel.getForm().setValues(rec.data);
}
},
buttons : [
{
name : 'cancel',
text : R.get('cancelButtonText'),
handler : function (btn, e, opts) {
me.cancelEdit();
}
},
'->',
{
name : 'save',
text : R.get('saveButtonText'),
handler : function (btn, e, opts) {
me.applyValues();
}
}
]
});
}
});