Tex Andersen
Tex Andersen
Personally I've been using the following style: ``` js (function(){ 'use strict'; angular .module('app') .component('exampleComponent', exampleComponent()); function exampleComponent() { var component = { bindings: { /* bindings - avoiding "="...
@jbmilgrom 1. The $inject is there for minification safety. It's not absolutely required, and if this was to go into the styleguide, I would remove it, as it is laid...
@everdimension > On the other hand, angular programming model relies heavily on mutations. I strongly disagree with this statement. Almost every single guide on components (which you have to be...
Revisiting this comment because I ran into this issue again from another angle. The crux of the solution is that whatever is being passed into the react components needs to...
https://github.com/segmentio/analytics.js-integrations/issues/562
https://github.com/segmentio/analytics.js-integrations/pull/563 I've added pull request to fix this, I just used a 1s for send because I'm really not sure what was an appropriate value to use.
I don't think this warrants an issue, as the function has an `immediately` argument for a reason. There are comments in the function explaining why the argument is necessary. I...
I'm also getting a very incorrect error for this: ```js const DISPLAY = { WELCOME: 'WELCOME', FOO: 'FOO' }; const Component = () => { const [display, setDisplay] = useState(DISPLAY.WELCOME);...
Was there ever any progress made on this? We've run into this issue a few times now, in that the our current place for storing sensitive information is Gitlab CI,...
I've run into this. You have your react in strict mode, which means all useEffects are run, then cleanup, then run again (basically a mount/remount). This is to ensure your...