Giter VIP home page Giter VIP logo

chat-widget's Issues

Unable to use hooks.

Hi. I am trying to use the hooks provided in my reactJS App but it seems that my variable BE_API is always empty and is unable to hook to that chatbot. I am using a react component with html <iframe /> to load the chatbot widget.

The chatbot loads successfully but it seems that the BE_API doesn't hook properly and hence non of the methods e.g .onLoad gets invoked. Please help

class ChatBox extends Component {
    componentDidMount(){
        let BE_API = window.BE_API || {}; //This is always equal to {} why???
        BE_API.onLoad = function () {
            window.alert('chatbot'); //This function body never gets called
            BE_API.openChat();
        };

        BE_API.onLoad = function () {
            setTimeout(function () {
                console.log('2chatbot resetting session');  //This function body never gets called
                // BE_API.resetSession();
                BE_API.openChat();
            },100);
        }    
    }
    render(){
        const { classes, src} = this.props;
        return(
            <div className={classes.card}>
                <iframe 
                    className={classes.media} 
                    src={src}>
                </iframe>
            </div>
        );
    }
 } 

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.