24yo French web dev

Main fediverse account (Mastodon) : @KaKi87@mamot.fr

  • 1 Post
  • 8 Comments
Joined 1Y ago
cake
Cake day: Jun 25, 2023

help-circle
rss

You may have initially misunderstood my idea, but you did help.

And I implemented it in the meantime, as a library named hybrid-array (after your suggestion).

Not all transformative array methods have been checked yet, no unit testing nor comments have been written yet, no benchmarks have been performed yet, but these will happen.

Thanks.


True, but less convenient than using an array in the first place.


I used to enjoy the flexibility that JS provides. And IDEs do a pretty good job of filling the holes!

Exactly.

My last project, I went all in on typescript. And I have caught so many more errors before even compiling. It’s like having tests. It gives a hell of a lot more confidence.

I can understand that too. Although, IDEs also catch a lot of type-related errors in vanilla JS.


I’m not a TypeScript person, sorry. 😅


dictionary/array hybrid

That’s a name, thanks !

Serialization might not behave as you would expect (JSON.stringify)

Actually, my implementation idea relying on Proxy don’t have this issue.

As for other implementations, they do have this issue, but as they say, hybrid array use cases don’t generally involve the need to stringify, and even when they do, using Object.defineProperty with { enumerable: false } (or replacing the toJSON method) would fix it.

3rd-party functions might not be able to deal with your data structure properly (again, potentially unexpected behavior). You can’t easily access array methods (find, filter, map etc).

Actually, it would still be an Array, so no, there shouldn’t be any problems, and yes, those methods definitely work, which is precisely what said I want to achieve.

How do you distinguish between ID access and index access?

If your IDs are integers then there is no need for an hybrid at all, precisely because all you have to do is put each item at the same position as their ID.

It’s harder to reason about access time of lookups. However, this might not be a concern of yours.

I’ll definitely run benchmarks so that users would be aware of performance losses, if any. But use cases of hybrid arrays are mostly small datasets so it usually shouldn’t be a concern indeed.

It may cause confusion if you’re working with other developers.

If I implement this, it will be as a documented and commented package, so it shouldn’t be that much of a problem.


I just found two packages that do the same thing as I did :

The last one comes with a blog post explaining the same things I did !



My goal is to be able to both easily get an item by ID (using data[id]) and easily get an item by properties (using data.find()).

Meanwhile, just like Object requires Object.values(object) before calling find, Map requires [...map.values()], and it also have the additional inconvenient of requiring a call to map.get to get an item by ID, so no, it’s even worse for my goal, but thanks.


[Help] JS array with getter by ID ?
Hi ! Given the following sample items : | ID | First name | Age | | ---------- | ---------- | --- | | `xvZwiCpi` | Naomi | 42 | | `Nzd9UsGT` | Naomi | 24 | | `QiDXP2wA` | Thea | 53 | | `JpYeAY7H` | Jeremy | 35 | I can store these in an array : ```js const data = [ { id: 'xvZwiCpi', firstName: 'Frederic', age: 42 }, { id: 'Nzd9UsGT', firstName: 'Naomi', age: 24 }, { id: 'QiDXP2wA', firstName: 'Thea', age: 53 }, { id: 'JpYeAY7H', firstName: 'Mathew', age: 35 } ]; ``` Thus access them the same way by ID : ```js console.log(data.find(item => item.id === 'xvZwiCpi')); ``` And by properties : ```js console.log(data.find(item => item.firstName === 'Frederic').id); ``` Or I can store these in an object : ```js const data = { 'xvZwiCpi': { firstName: 'Frederic', age: 42 }, 'Nzd9UsGT': { firstName: 'Naomi', age: 24 }, 'QiDXP2wA': { firstName: 'Thea', age: 53 }, 'JpYeAY7H': { firstName: 'Mathew', age: 35 } }; ``` Thus more easily access properties by ID : ```js console.log(data['xvZwiCpi'].firstName); ``` But more hardly access ID by properties : ```js console.log(Object.entries(data).find(([id, item]) => item.firstName = 'Frederic')[0]); ``` I could duplicate IDs : ```js const data = { 'xvZwiCpi': { id: 'xvZwiCpi', firstName: 'Frederic', age: 42 }, 'Nzd9UsGT': { id: 'Nzd9UsGT', firstName: 'Naomi', age: 24 }, 'QiDXP2wA': { id: 'QiDXP2wA', firstName: 'Thea', age: 53 }, 'JpYeAY7H': { id: 'JpYeAY7H', firstName: 'Mathew', age: 35 } }; ``` To slightly simplify that previous line : ```js console.log(Object.values(data).find(item => item.firstName = 'Frederic').id); ``` But what if a single variable type could allow doing both operations easily ? ```js console.log(data['xvZwiCpi'].firstName); console.log(data.find(item => item.firstName === 'Frederic').id); ``` Does that exist ? If not, I'm thinking about implementing it that way : ```js const data = new Proxy([ { id: 'xvZwiCpi', firstName: 'Frederic', age: 42 }, { id: 'Nzd9UsGT', firstName: 'Naomi', age: 24 }, { id: 'QiDXP2wA', firstName: 'Thea', age: 53 }, { id: 'JpYeAY7H', firstName: 'Mathew', age: 35 } ], { get: (array, property) => array[property] || array.find(item => item.id === property) }); ``` In which case I'd put it in a lib, but how would this be named ? I'd also make a second implementation that would enforce ID uniqueness and use `Map` to map IDs with indexes instead of running `find` : while the first implementation would be fine for static data, the second one would be more suitable for dynamic data. Would this make sense ? Thanks
fedilink