loading jquery-ui in deployment mode

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
24 messages Options
12
Reply | Threaded
Open this post in threaded view
|

Re: Amber and reactjs

sebastianconcept

On Mar 30, 2014, at 4:10 PM, Andy Burnett <[hidden email]> wrote:

works out the delta for any changes, and only rerenders that part

that’s a big win.

I was thinking lately about those kind of things.

A properly done amber app would make the right component subcomponent refresh / re-render, hopefully achieving the same effect.

Meteor updates the right piece of presentation even if you change the model in the database on the server side.

All that without adding code.



--
You received this message because you are subscribed to the Google Groups "amber-lang" group.
To unsubscribe from this group and stop receiving emails from it, send an email to [hidden email].
For more options, visit https://groups.google.com/d/optout.
Reply | Threaded
Open this post in threaded view
|

Re: Amber and reactjs

Manfred Kröhnert
Hi Sebastian,


On Sun, Mar 30, 2014 at 9:29 PM, sebastian <[hidden email]> wrote:

On Mar 30, 2014, at 4:10 PM, Andy Burnett <[hidden email]> wrote:

works out the delta for any changes, and only rerenders that part

that’s a big win.

I was thinking lately about those kind of things.

A properly done amber app would make the right component subcomponent refresh / re-render, hopefully achieving the same effect.

Meteor updates the right piece of presentation even if you change the model in the database on the server side.

All that without adding code.

react.js and Bacon.js (and possibly others) are libraries for doing FRP (Functional Reactive Programming) in JavaScript.
FRP is a (not so new) programming paradigm and I think that the following links might help to read up on the topic:



From what I have seen in the react.js documentation I am not so sure if I like the concept of writing all code as strings which are later on evaluated (http://reactjs.com/Documentation/).

I'd probably favor the Bacon.js approach which looks more like 'normal' code to me: http://baconjs.github.io/.

Best,
Manfred

--
You received this message because you are subscribed to the Google Groups "amber-lang" group.
To unsubscribe from this group and stop receiving emails from it, send an email to [hidden email].
For more options, visit https://groups.google.com/d/optout.
Reply | Threaded
Open this post in threaded view
|

Re: Amber and reactjs

Manfred Kröhnert
Hmm, I just found out that react (http://facebook.github.io/react/) is probably the one Andy was talking about and not react.js (http://reactjs.com/).
In that case the examples look much more promising :-)

Best,
Manfred


On Mon, Mar 31, 2014 at 11:41 PM, Manfred Kröhnert <[hidden email]> wrote:
Hi Sebastian,


On Sun, Mar 30, 2014 at 9:29 PM, sebastian <[hidden email]> wrote:

On Mar 30, 2014, at 4:10 PM, Andy Burnett <[hidden email]> wrote:

works out the delta for any changes, and only rerenders that part

that’s a big win.

I was thinking lately about those kind of things.

A properly done amber app would make the right component subcomponent refresh / re-render, hopefully achieving the same effect.

Meteor updates the right piece of presentation even if you change the model in the database on the server side.

All that without adding code.

react.js and Bacon.js (and possibly others) are libraries for doing FRP (Functional Reactive Programming) in JavaScript.
FRP is a (not so new) programming paradigm and I think that the following links might help to read up on the topic:



From what I have seen in the react.js documentation I am not so sure if I like the concept of writing all code as strings which are later on evaluated (http://reactjs.com/Documentation/).

I'd probably favor the Bacon.js approach which looks more like 'normal' code to me: http://baconjs.github.io/.

Best,
Manfred

--
You received this message because you are subscribed to the Google Groups "amber-lang" group.
To unsubscribe from this group and stop receiving emails from it, send an email to [hidden email].
For more options, visit https://groups.google.com/d/optout.
Reply | Threaded
Open this post in threaded view
|

Re: Amber and reactjs

Andy Burnett
Oh! Sorry about that! Too many libraries with similar names.  

And, I am glad you think it is promising. The performance that the clojurescript community are getting seems to be quite impressive. 

Cheers
Andy

On 31 Mar 2014, at 17:58, "Manfred Kröhnert" <[hidden email]> wrote:

Hmm, I just found out that react (http://facebook.github.io/react/) is probably the one Andy was talking about and not react.js (http://reactjs.com/).
In that case the examples look much more promising :-)

Best,
Manfred


On Mon, Mar 31, 2014 at 11:41 PM, Manfred Kröhnert <[hidden email]> wrote:
Hi Sebastian,


On Sun, Mar 30, 2014 at 9:29 PM, sebastian <[hidden email]> wrote:

On Mar 30, 2014, at 4:10 PM, Andy Burnett <[hidden email]> wrote:

works out the delta for any changes, and only rerenders that part

that’s a big win.

I was thinking lately about those kind of things.

A properly done amber app would make the right component subcomponent refresh / re-render, hopefully achieving the same effect.

Meteor updates the right piece of presentation even if you change the model in the database on the server side.

All that without adding code.

react.js and Bacon.js (and possibly others) are libraries for doing FRP (Functional Reactive Programming) in JavaScript.
FRP is a (not so new) programming paradigm and I think that the following links might help to read up on the topic:



From what I have seen in the react.js documentation I am not so sure if I like the concept of writing all code as strings which are later on evaluated (http://reactjs.com/Documentation/).

I'd probably favor the Bacon.js approach which looks more like 'normal' code to me: http://baconjs.github.io/.

Best,
Manfred

--
You received this message because you are subscribed to the Google Groups "amber-lang" group.
To unsubscribe from this group and stop receiving emails from it, send an email to [hidden email].
For more options, visit https://groups.google.com/d/optout.

--
You received this message because you are subscribed to the Google Groups "amber-lang" group.
To unsubscribe from this group and stop receiving emails from it, send an email to [hidden email].
For more options, visit https://groups.google.com/d/optout.
12