Log message #4190372

# At Username Text
# Jun 20th 2019, 15:32 rudy1976s @jeremyharris thank you , I will try the @dereuromark plugin
# Jun 20th 2019, 15:30 jeremyharris yep, you can write your own log engine or use an existing plugin: https://github.com/FriendsOfCake/awesome-cakephp#auditing--logging
# Jun 20th 2019, 15:29 rudy1976s I have a question regarding logs: is there a way to be able to save log to DB using the cake Log class ?
# Jun 20th 2019, 15:28 rudy1976s good afternoon to all bakers!
# Jun 20th 2019, 14:24 neon1024 Thanks!
# Jun 20th 2019, 14:17 jeremyharris includes polyfills only where necessary
# Jun 20th 2019, 14:17 jeremyharris I saw this come across HN, might be of interest: https://www.pika.dev/cdn
# Jun 20th 2019, 14:16 neon1024 I’ve been meaning to look for an NPM module which adds polyfills for stuff so that it just gets baked in when I build with Webpack, but I didn’t get there yet
# Jun 20th 2019, 14:15 neon1024 I didn’t try it though
# Jun 20th 2019, 14:15 neon1024 https://www.theverge.com/2019/4/8/18300077/microsoft-edge-chromium-canary-development-release-download
# Jun 20th 2019, 14:14 neon1024 9, 10, 11, Edge, and then onto this new Chromium based browser apparently
# Jun 20th 2019, 14:14 jeremyharris gotcha
# Jun 20th 2019, 14:14 neon1024 After 11 I believe
# Jun 20th 2019, 14:14 jeremyharris yeah not in IE but it’s in edge, which was like IE 10 or 11 right? I’ve been away from frontend for a while
# Jun 20th 2019, 14:13 neon1024 Tbh caniuse is probably more accurate
# Jun 20th 2019, 14:13 neon1024 Perhaps the page is out of date https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise#Browser_compatibility
# Jun 20th 2019, 14:13 neon1024 Hmm
# Jun 20th 2019, 14:13 jeremyharris for better or for worse
# Jun 20th 2019, 14:13 jeremyharris but yeah it’s all going to be 2 engines in not too long
# Jun 20th 2019, 14:13 neon1024 I guess that’s why they are stealing the Chrome JS engine :)
# Jun 20th 2019, 14:13 jeremyharris caniuse shows promises are in there
# Jun 20th 2019, 14:13 neon1024 They’re now so far behind the JS curve it’s not even worth considering them
# Jun 20th 2019, 14:12 neon1024 Even basic stuff like fetch and promises aren’t in
# Jun 20th 2019, 14:12 neon1024 They gave up in like IE7
# Jun 20th 2019, 14:12 neon1024 Well yeah Microsoft just can’t work Javascript it seems
# Jun 20th 2019, 14:12 neon1024 Be sure to note the browser compatibility!
# Jun 20th 2019, 14:12 jeremyharris no support in edge at all sadly
# Jun 20th 2019, 14:11 jeremyharris that’s cool :nerd_face:
# Jun 20th 2019, 14:10 neon1024 You can read about that here https://developer.mozilla.org/en-US/docs/Web/API/EventSource
# Jun 20th 2019, 14:10 neon1024 Then I used the EventSource object to write to my progress bar
# Jun 20th 2019, 14:10 neon1024 Then I used PHP to output JSON as it worked, and flushed the buffers so it output constantly
# Jun 20th 2019, 14:09 neon1024 I used the javascript EventSource object
# Jun 20th 2019, 14:09 jeremyharris it;s really whatever you want. if you want a progress bar, having the action return data that you can use to render the progress bar is helpful. Or, if it’s returning the actual HTML of the progress bar you would just pop that into whatever container you’re updating
# Jun 20th 2019, 14:08 joey.mukherjee so my action is returning html. does it have to be json for this to work?
# Jun 20th 2019, 14:07 neon1024 Dunno, I built my own
# Jun 20th 2019, 14:06 joey.mukherjee ?
# Jun 20th 2019, 14:06 joey.mukherjee yes, a progress bar is what I want... Is there an example of that.
# Jun 20th 2019, 14:06 joey.mukherjee oops, yeah, but even without that. it does them all at the end.
# Jun 20th 2019, 14:06 neon1024 I like streaming to a socket, as you can put a progress bar on it :slightly_smiling_face:
# Jun 20th 2019, 14:06 jeremyharris that would only be a problem if the update_movie_status action actually waited until the job was done to return data though
# Jun 20th 2019, 14:05 jeremyharris well.. you have async set to false