Echo JS 0.11.0

<~>

tracker1 comments

tracker1 2056 days ago. link 1 point
I would only suggest one change in the article, and advice to anyone using this... always have a separate action item on screen for this.  A copy button, next to the text, or if a textarea an overlay or above or below.

Having the copy action on a click trigger will be unexpected behavior.  Click on the text should probably do a `.select()` of the entire field though, but not copy to clipboard.  A separate action should be doing that.
tracker1 2056 days ago. link 1 point
edited the title to match the Repo Description...

Some of the hooks may well be very useful, I've seen quite a few.  I'm not the downvote, but the clickbait tile was probably the reason.
tracker1 2059 days ago. link 1 point
commitzen looks so cool... definitely going to give it a spin.
tracker1 2059 days ago. link 1 point
Seems like a decent abstraction around the postMessage API... which frankly is a bit painful to use in practice.
tracker1 2060 days ago. link 1 point
Would probably suggest a followup on using ES, Kibana and Filebeats from within a container... you can pass the docker socket to filebeats running in a container, and locally, since you're unlikely to cluster, having ES in the background with Kibana is probably easier to set/reset.
tracker1 2060 days ago. link 1 point
The key seems to be...

    import * as React from "react";
import { GridLayout } from "@egjs/react-infinitegrid";

Note: this looks to add about 180k of gzipped JS on top of React's baseline, the demo is about 252K gzipped.  Definitely not a *light* implementation in any way, shape or form.  If this is the bulk of your UI, it may not be so bad... I generally try to stay under 500k total gzipped JS payload for web applications.


https://www.npmjs.com/package/@egjs/react-infinitegrid

https://github.com/naver/egjs-infinitegrid
tracker1 2060 days ago. link 2 points
I've always thought the UX for the date picker from the MS Ajax Toolkit is about as good and intuitive as it gets, it looks like the bootstrap-datepicker implements this... unfortunately, it also requires jquery+bootstrap, and if you aren't using bootstrap to begin with, it's too big to bring in just for this. Range pickers are also easy to get wrong.

In any case, for the most part, just use input type=date and rely on the native interface for picking a date. You aren't adding a bunch of extra overhead, and it should be the expected experience.
tracker1 2060 days ago. link 1 point
At this point, you might as well use JSS or similar.
tracker1 2061 days ago. link 1 point
Not sure if this is even on-topic... not too much detail, and should probably list common frameworks using the different CSS tech, not spell out the frameworks themselves.

Ex: no mention that material-ui uses CSS-In-JS, or other common use cases.  It's very popular in React.
[more]