import React from 'react';
import { Text, TextProps, View } from 'react-native';
import { TriggerableContext, TriggerableContextValueType } from './contexts';
class TriggerableViewChild extends React.Component<
TextProps & TriggerableContextValueType
> {
private wrapperRef: View | null = null;
private handleWrapperRef = (ref: View) => {
if (this.wrapperRef) {
this.props.unregister(this.wrapperRef);
this.wrapperRef = null;
}
if (ref) {
this.props.register(ref);
this.wrapperRef = ref;
}
};
render() {
return ;
}
}
export default class TriggerableView extends React.Component {
render() {
return (
{(contextValue: TriggerableContextValueType) => (
)}
);
}
}