Add Button class.
This commit is contained in:
parent
03445f5772
commit
f914a18137
58
game/game.js
58
game/game.js
|
@ -30301,8 +30301,27 @@
|
||||||
return ['c','d'].contains(get.position(this));
|
return ['c','d'].contains(get.position(this));
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
button:{
|
Button:class extends HTMLDivElement{
|
||||||
exclude:function(){
|
/**
|
||||||
|
* @param {{}} item
|
||||||
|
* @param {keyof typeof ui.create.buttonPresets | (item: {}, type: Function, position?: HTMLDivElement, noClick?: true, button?: HTMLDivElement) => HTMLDivElement} type
|
||||||
|
* @param {HTMLDivElement} [position]
|
||||||
|
* @param {true} [noClick]
|
||||||
|
* @param {HTMLDivElement} [button]
|
||||||
|
*/
|
||||||
|
constructor(item,type,position,noClick,button){
|
||||||
|
if(ui.create.buttonPresets[type]) button=ui.create.buttonPresets[type](item,type,position,noClick,button);
|
||||||
|
else if(typeof type=='function') button=type(item,type,position,noClick,button);
|
||||||
|
Object.setPrototypeOf(button,lib.element.Button.prototype);
|
||||||
|
if(!noClick) button.addEventListener(lib.config.touchscreen?'touchend':'click',ui.click.button);
|
||||||
|
else{
|
||||||
|
button.classList.add('noclick');
|
||||||
|
const intro=button.querySelector('.intro');
|
||||||
|
if(intro) intro.remove();
|
||||||
|
}
|
||||||
|
return button;
|
||||||
|
}
|
||||||
|
exclude(){
|
||||||
if(_status.event.excludeButton==undefined){
|
if(_status.event.excludeButton==undefined){
|
||||||
_status.event.excludeButton=[];
|
_status.event.excludeButton=[];
|
||||||
}
|
}
|
||||||
|
@ -31445,6 +31464,12 @@
|
||||||
get card(){
|
get card(){
|
||||||
return this.Card.prototype;
|
return this.Card.prototype;
|
||||||
},
|
},
|
||||||
|
/**
|
||||||
|
* @legacy Use `lib.element.Button.prototype` instead.
|
||||||
|
*/
|
||||||
|
get button(){
|
||||||
|
return this.Button.prototype;
|
||||||
|
},
|
||||||
/**
|
/**
|
||||||
* @legacy Use `lib.element.Event.prototype` instead.
|
* @legacy Use `lib.element.Event.prototype` instead.
|
||||||
*/
|
*/
|
||||||
|
@ -51931,27 +51956,7 @@
|
||||||
return node;
|
return node;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
button:function(item,type,position,noclick,node){
|
button:(item,type,position,noClick,button)=>new lib.element.Button(item,type,position,noClick,button),
|
||||||
if(ui.create.buttonPresets[type]){
|
|
||||||
node=ui.create.buttonPresets[type](item,type,position,noclick,node);
|
|
||||||
}
|
|
||||||
else if(typeof type=='function'){
|
|
||||||
node=type(item,type,position,noclick,node);
|
|
||||||
}
|
|
||||||
if(!noclick){
|
|
||||||
node.addEventListener(lib.config.touchscreen?'touchend':'click',ui.click.button);
|
|
||||||
}
|
|
||||||
else{
|
|
||||||
node.classList.add('noclick');
|
|
||||||
if(node.querySelector('.intro')){
|
|
||||||
node.querySelector('.intro').remove();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
for(var i in lib.element.button){
|
|
||||||
node[i]=lib.element.button[i];
|
|
||||||
}
|
|
||||||
return node;
|
|
||||||
},
|
|
||||||
buttons:function(list,type,position,noclick,zoom){
|
buttons:function(list,type,position,noclick,zoom){
|
||||||
var buttons=[];
|
var buttons=[];
|
||||||
var pre=(typeof type=='string'&&type.slice(0,3)=='pre');
|
var pre=(typeof type=='string'&&type.slice(0,3)=='pre');
|
||||||
|
@ -51993,10 +51998,8 @@
|
||||||
var next=dialog.add(str);
|
var next=dialog.add(str);
|
||||||
if(!noclick) next.firstChild.addEventListener(lib.config.touchscreen?'touchend':'click',ui.click.button);
|
if(!noclick) next.firstChild.addEventListener(lib.config.touchscreen?'touchend':'click',ui.click.button);
|
||||||
next.firstChild.link=link;
|
next.firstChild.link=link;
|
||||||
for(var j in lib.element.button){
|
Object.setPrototypeOf(next,lib.element.Button.prototype);
|
||||||
next[j]=lib.element.button[j];
|
dialog.buttons.add(next.firstChild);
|
||||||
}
|
|
||||||
dialog.buttons.add(next.firstChild)
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
player:(position,noclick)=>new lib.element.Player(position,noclick),
|
player:(position,noclick)=>new lib.element.Player(position,noclick),
|
||||||
|
@ -61454,6 +61457,7 @@
|
||||||
};
|
};
|
||||||
setAllPropertiesEnumerable(lib.element.Player.prototype);
|
setAllPropertiesEnumerable(lib.element.Player.prototype);
|
||||||
setAllPropertiesEnumerable(lib.element.Card.prototype);
|
setAllPropertiesEnumerable(lib.element.Card.prototype);
|
||||||
|
setAllPropertiesEnumerable(lib.element.Button.prototype);
|
||||||
setAllPropertiesEnumerable(lib.element.Event.prototype);
|
setAllPropertiesEnumerable(lib.element.Event.prototype);
|
||||||
setAllPropertiesEnumerable(lib.element.Dialog.prototype);
|
setAllPropertiesEnumerable(lib.element.Dialog.prototype);
|
||||||
setAllPropertiesEnumerable(lib.element.Control.prototype);
|
setAllPropertiesEnumerable(lib.element.Control.prototype);
|
||||||
|
|
Loading…
Reference in New Issue