Somewhat off-topic, but for those working in React, have you built large systems using Redux? I'm fairly early in what is likely to ultimately be a large-ish application, and while I've got Redux working, I feel working with it is definitely adding cognitive load to each feature I implement. Just wondering whether it's worth the effort and would appreciate feedback from those who may have more experience weighing the pros and cons of using Redux with their application.
Show HN: React-data sheet, Excel-like spreadsheet component
11–20 of 93 posts
Re: Show HN: React-data sheet, Excel-like spreadsheet component
#12Looks beautiful!! But, I can just imagine running this one by the patent attorneys as an open source library to include in our product.
Re: Show HN: React-data sheet, Excel-like spreadsheet component
#13Re: Show HN: React-data sheet, Excel-like spreadsheet component
#14This looks really great, and I've got an immediate use for something like this. I've been using ag-grid for presentation of grid-based data, but this looks ideal for more-interactive views. I look forward to putting it through its paces. Somewhat off-topic, but for those working in React, have you built large systems using Redux? I'm fairly early in what is likely to ultimately be a large-ish application, and while I…
Create namespaces in your store, it helps a ton with maintainability in the long run. Name your mutations consistently: describe what you're doing to what kind of data as briefly as you can.
Keeping these few guidelines in mind, building huge applications using any flux-like pattern is quite straight-forward and easy to reason about.
Re: Show HN: React-data sheet, Excel-like spreadsheet component
#15Re: Show HN: React-data sheet, Excel-like spreadsheet component
#16Any data on how this performs on large datasets? I've previously found that most web based data grids get extremely slow on larger data sets in BI applications (100k+ rows)
Re: Show HN: React-data sheet, Excel-like spreadsheet component
#17This looks really great, and I've got an immediate use for something like this. I've been using ag-grid for presentation of grid-based data, but this looks ideal for more-interactive views. I look forward to putting it through its paces. Somewhat off-topic, but for those working in React, have you built large systems using Redux? I'm fairly early in what is likely to ultimately be a large-ish application, and while I…
Re: Show HN: React-data sheet, Excel-like spreadsheet component
#18fix-data-table is performant and easily extendable. I was able to create an editable grid similar to googlesheets in a months worth of work. working on open sourcing it soon.
Re: Show HN: React-data sheet, Excel-like spreadsheet component
#19I am working with two separate clients that need excel spreadsheet functionality in a browser. I evaluated all of the existing open source projects (this wasnt available at the time) and ended up going with fix-data-table-2 (fork of facebooks fix-data-table). fix-data-table is performant and easily extendable. I was able to create an editable grid similar to googlesheets in a months worth of work. working on open sou…
Re: Show HN: React-data sheet, Excel-like spreadsheet component
#20This covers 80% of Excel uses, but the rest 20% would take 1000% of the time to implement.
This project is a proof-of-concept. Nothing more than that.