本文整理匯總了TypeScript中jb-core.jb.extend方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript jb.extend方法的具體用法?TypeScript jb.extend怎麽用?TypeScript jb.extend使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類jb-core.jb
的用法示例。
在下文中一共展示了jb.extend方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。
示例1: wrap
wrap(path,args) {
var comp = getComp(args.compName);
var firstParam = jb_compParams(comp).filter(p=>p.composite)[0];
if (firstParam) {
var result = jb.extend({ $: args.compName }, jb.obj(firstParam.id, [profileFromPath(path)]));
jb.writeValue(profileRefFromPath(path),result);
}
}
示例2: extendWithOptions
extendWithOptions(probeCtx,path) {
this.options = [];
probeCtx = probeCtx || (jbart.previewjbart || jbart).initialCtx;
var vars = jb.entries(jb.extend({},(probeCtx.componentContext||{}).params,probeCtx.vars,probeCtx.resources))
.map(x=>new ValueOption('$'+x[0],x[1],this.pos,this.tail))
.filter(x=> x.toPaste.indexOf('$$') != 0)
.filter(x=>['$ngZone','$window','$injector'].indexOf(x.toPaste) == -1)
if (this.inputVal.indexOf('=') == 0 && !this.expressionOnly)
this.options = model.PTsOfPath(path).map(compName=> {
var name = compName.substring(compName.indexOf('.')+1);
var ns = compName.substring(0,compName.indexOf('.'));
return new CompOption(compName, compName, ns ? `${name} (${ns})` : name, getComp(compName).description || '')
})
else if (this.tailSymbol == '%')
this.options = [].concat.apply([],jb.toarray(probeCtx.exp('%%'))
.map(x=>
jb.entries(x).map(x=> new ValueOption(x[0],x[1],this.pos,this.tail))))
.concat(vars)
else if (this.tailSymbol == '%$')
this.options = vars
else if (this.tailSymbol == '/' || this.tailSymbol == '.')
this.options = [].concat.apply([],
jb.toarray(probeCtx.exp(this.base))
.map(x=>jb.entries(x).map(x=>new ValueOption(x[0],x[1],this.pos,this.tail))) )
this.options = this.options
.filter( jb_unique(x=>x.toPaste) )
.filter(x=> x.toPaste != this.tail)
.filter(x=>
this.tail == '' || typeof x.toPaste != 'string' || (x.description + x.toPaste).toLowerCase().indexOf(this.tail.toLowerCase()) != -1)
if (this.tail)
this.options.sort((x,y)=> (y.toPaste.toLowerCase().indexOf(this.tail.toLowerCase()) == 0 ? 1 : 0) - (x.toPaste.toLowerCase().indexOf(this.tail.toLowerCase()) == 0 ? 1 : 0));
this.key = this.options.map(o=>o.toPaste).join(',');
return this;
}
示例3:
this.handleGaps().then( res2 =>
jb.extend({finalResult: this.probe[this.pathToTrace],
probe: this,
circuit: jb.compName(this.circuit),
},res,res2)
示例4:
ctx.params.responsive.forEach(responsive=>jb.extend(atts,responsive))