Re: [elm-discuss] Re: text editor in Elm

2016-11-19 Thread Bulat Shamsutdinov
: > > there is no way to implement rich text editor in pure elm > > > That's certainly not true, it's certainly possible, but you'd have to > write all the editor code yourself, and there aren't (I think) any good > libraries for doing it yet. > > On Sat, Nov 19, 2016 at 1:39 AM, Bulat

[elm-discuss] Re: text editor in Elm

2016-11-19 Thread Bulat Shamsutdinov
Hi! As far as I got into the same question, there is no way to implement rich text editor in pure elm, it misses some core functionality like selections. The only way is to use ports to JS code and that comes with it's nasty hacks too. On Monday, October 31, 2016 at 9:01:46 PM UTC+3, Haitao

[elm-discuss] Re: Pure Elm contenteditable rich text editor

2016-10-13 Thread Bulat Shamsutdinov
Thank you everyone! I'm currently studying Draft.js to see their way of implementing rich text edit. -- You received this message because you are subscribed to the Google Groups "Elm Discuss" group. To unsubscribe from this group and stop receiving emails from it, send an email to

[elm-discuss] Pure Elm contenteditable rich text editor

2016-10-10 Thread Bulat Shamsutdinov
Hello! I have aside project which I really want to write in Elm. That project needs rich text edit (nothing fancy, just bullets and text styles). To my knowledge there is no solution to that task in Elm (which is a bummer). And even ports require nasty hacks (according to previous discussions

[elm-discuss] Re: JS + React + Redux - How to emulate Elm?

2016-10-05 Thread Bulat Shamsutdinov
It's not the answer for my case because React + Redux is the stack I'm to use now. But I will still look into it just because it looks interesting, thank you! On Wednesday, October 5, 2016 at 7:54:44 PM UTC+3, Charlie Koster wrote: > > I don't know if this is what you're looking for but rather

[elm-discuss] JS + React + Redux - How to emulate Elm?

2016-10-05 Thread Bulat Shamsutdinov
Hello! After several weeks of learning elm (pleasant time) I found out that for reasons outside of my control I'm to use JS + React + Redux for now. Do anyone knows of a way to use JS+React+Redux in a manner close to Elm? I want to try to emulate elm architecture and whole FP paradigm as

[elm-discuss] Re: Backend to use with Elm

2016-10-05 Thread Bulat Shamsutdinov
shed a Postgres Effects Manager and I'm working on a Websocket > server Effects Manager. > > You can definitely write Elm on node. You're pretty much on your own, but > it's doable. > > > > > On Tuesday, October 4, 2016 at 11:29:22 AM UTC-7, Bulat Shamsutdinov wrote: >

[elm-discuss] Backend to use with Elm

2016-10-04 Thread Bulat Shamsutdinov
Hello everyone! I'm an experienced developer but newbie in web. I chose to learn Elm in order to avoid all the complexity with JS and it's ecosystem (learned JS and Node on a decent level and feel like I don't want to touch it ever again without a great need). Is there something as good for