Harrison Lambeth

Results 13 comments of Harrison Lambeth

I would also like to see a working example from somewhere. I am getting hung up on some typing issues that prevent my project from even compiling, so I can't...

One thing that hasn't been mentioned yet is that you can't use arrow functions to define your components in Crank, as you don't have access to `this`. We should check...

There's a couple logical leaps that I think aren't super intuitive, but the basic idea is that you're doing something like this. ```tsx const propUpdates = this; for await (const...

Yeah my point is that they are the same. When you call `{addEventListener} of this`, it's not destructuring `this`. It's destructuring the props that were provided to your component. Since...

If you use the `this` keyword, you're locking users into using `function` for components, and arrow functions for everything else. You've addressed any of my concern around removing the ability...

Ah I think I saw that but didn't make the connection. In another section, I had read `This is a base class to create system to update a given EntityMultiMap....

Ok, so I've been playing around with this a bit. It's still a little awkward using multimap this way because TKey is the component type, not the _real_ key type....

It would be great if this library supported lists of primitives, even if you just get a record of the old list and new list and if the list as...

Actually, if you want to be even more correct, you should allow for regex: "[A-Za-z0-9.%+-]+@[A-Za-z0-9.-]+.[A-Za-z]{**1,63**}", TLDs can be between 1 and 63 characters long. The longest existing is 24 characters...

I am also interested to know if there's a good way to determine this.