Git Product home page Git Product logo

Comments (5)

kasperp avatar kasperp commented on June 17, 2024

@ricardonogues thanks for reporting this. Could you post some sample code that illustrates the problem ? that way it will be easier to make some suggestions.

Thanks.

from ngreact.

ricardonogues avatar ricardonogues commented on June 17, 2024

Hi,

Thanks for the quick response.

Here's my main.js:

require('angular/angular');
require('angular-route/angular-route');
require('angular-animate/angular-animate');
require('flux-angular');
require('react');
require('ngreact');

// Declare app level module ---------------------------------------------------
var app = angular.module('app', ['ngRoute', 'ngAnimate', 'flux', 'react']);

require('./shared');
require('./components');

In the shared folder I have an index.js that loads all the shared components. Here's the shared/index.js

require('./header/header.js');

In the header.js I have this:

var React = require('react');

var Hello = React.createClass( {
    propTypes: {
        fname: React.PropTypes.string.isRequired,
        lname: React.PropTypes.string.isRequired
    },

    render: function() {
        return React.DOM.span( null,
            'Hello ' + this.props.fname + ' ' + this.props.lname
        );
    }
} );

angular.module('app').value( "Hello", Hello );
angular.module('app').directive( 'hello', function( reactDirective ) {
    return reactDirective( Hello );
} );

In one of my views I have:

<hello fname="person.fname" lname="person.lname"></hello>

The error:

ReferenceError: React is not defined

Thanks in advance.

from ngreact.

revolunet avatar revolunet commented on June 17, 2024

cool be nice to format your code as described here : https://guides.github.com/features/mastering-markdown/

from ngreact.

ricardonogues avatar ricardonogues commented on June 17, 2024

Sorry, I'm new to github. I've edited the post.

from ngreact.

kasperp avatar kasperp commented on June 17, 2024

hi @ricardonogues thanks for the code.

Where does the error appear ? in the code you posted so in line 3 of the header.js where you call React.createClass ?

var React = require('react');

var Hello = React.createClass( {

Or inside the ngReact code ?

from ngreact.

Related Issues (20)

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.