1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-10-14 06:51:58 +00:00

4.0.0-rc19.4

* Changed: Better DOM scanning performance by giving up faster.
* Fixed: More stupid changes in order to force events to fire on the component we grab badge data from.
This commit is contained in:
SirStendec 2019-05-04 03:36:10 -04:00
parent ebc671ae1e
commit c920b43e01
3 changed files with 46 additions and 14 deletions

View file

@ -148,7 +148,7 @@ export default class Fine extends Module {
else if ( node instanceof Node )
node = this.getReactInstance(node);
if ( ! node || depth > max_depth )
if ( ! node || node._ffz_no_scan || depth > max_depth )
return null;
if ( typeof criteria === 'string' ) {
@ -195,7 +195,7 @@ export default class Fine extends Module {
else if ( node instanceof Node )
node = this.getReactInstance(node);
if ( ! node || depth > max_depth )
if ( ! node || node._ffz_no_scan || depth > max_depth )
return null;
if ( typeof criteria === 'string' ) {
@ -257,7 +257,7 @@ export default class Fine extends Module {
max_depth: depth
};
if ( ! node || depth > max_depth )
if ( ! node || node._ffz_no_scan || depth > max_depth )
return data.out;
if ( depth > data.max_depth )
@ -458,12 +458,12 @@ export default class Fine extends Module {
const EVENTS = {
'will-mount': 'componentWillMount',
'will-mount': 'UNSAFE_componentWillMount',
mount: 'componentDidMount',
render: 'render',
'receive-props': 'componentWillReceiveProps',
'receive-props': 'UNSAFE_componentWillReceiveProps',
'should-update': 'shouldComponentUpdate',
'will-update': 'componentWillUpdate',
'will-update': 'UNSAFE_componentWillUpdate',
update: 'componentDidUpdate',
unmount: 'componentWillUnmount'
}
@ -504,16 +504,16 @@ export class FineWrapper extends EventEmitter {
throw new Error('already have a class');
this._class = cls;
this._wrapped.add('componentWillMount');
this._wrapped.add('UNSAFE_componentWillMount');
this._wrapped.add('componentWillUnmount');
const t = this,
_instances = this.instances,
proto = cls.prototype,
o_mount = proto.componentWillMount,
o_mount = proto.UNSAFE_componentWillMount,
o_unmount = proto.componentWillUnmount,
mount = proto.componentWillMount = o_mount ?
mount = proto.UNSAFE_componentWillMount = o_mount ?
function(...args) {
this._ffz_mounted = true;
_instances.add(this);
@ -539,7 +539,7 @@ export class FineWrapper extends EventEmitter {
this._ffz_mounted = false;
};
this.__componentWillMount = [mount, o_mount];
this.__UNSAFE_componentWillMount = [mount, o_mount];
this.__componentWillUnmount = [unmount, o_unmount];
for(const event of this.events())
@ -580,17 +580,35 @@ export class FineWrapper extends EventEmitter {
fn = proto[key] = original ?
function(...args) {
if ( ! this._ffz_mounted ) {
this._ffz_mounted = true;
t.instances.add(this);
t.emit('late-mount', this);
}
t.emit(event, this, ...args);
return original.apply(this, args);
} :
key === 'shouldComponentUpdate' ?
function(...args) {
if ( ! this._ffz_mounted ) {
this._ffz_mounted = true;
t.instances.add(this);
t.emit('late-mount', this);
}
t.emit(event, this, ...args);
return true;
}
:
function(...args) {
if ( ! this._ffz_mounted ) {
this._ffz_mounted = true;
t.instances.add(this);
t.emit('late-mount', this);
}
t.emit(event, this, ...args);
};