hyperstack icon indicating copy to clipboard operation
hyperstack copied to clipboard

Hyperstack ALPHA https://hyperstack.org

Results 118 hyperstack issues
Sort by recently updated
recently updated
newest added

And perhaps other issues. Bottom line should be able to rerun the install, and have things work

enhancement

Currently if an record or one of its relationships is loading when you try to save the record, an error will be raised. This is due to the following lines...

bug

for example `policy.send_all_but(nil).to(Application)` should work. It doesn't because it tries to convert nil to a symbol and fails. This is handy for a case like this: `policy.send_all_but(production_job? && :ship_by_date).to(Application)` Otherwise...

enhancement
good first issue

Lately I've noticed poor performance in our production database for the Hyperstack tables, and noticed we had about 400K QueuedMessages in the table. Upon looking in the code, I found...

performance

Jquery is no longer imported by the hyperstack rails installer, so it has to be done as a manual step in the tutorial. Add these lines: ``` Hyperstack.import 'jquery', client_only:...

needs doc

Hi, I'm trying to follow the installation instructions from the website. This commands: rails new hyperstacktest -T -m https://rawgit.com/hyperstack-org/hyperstack/edge/install/rails-webpacker.rb ends with ``` … yarn add v1.19.0 [1/4] Resolving packages... [2/4]...

When using hyperspec + capybara + chrome with browser + binding.pry you can get errors if you try to run a capybara command in pry that fails. For example `find('.class-that-does-not-exist')`...

needs doc

Here are a few suggestions I've been thinking about while developing with hyperstack Any cable go: https://docs.anycable.io/v1/#/ruby/rails A drop in replacement for the action cable server integrated into rails. Much...

Not completely sure why this is happening, but at the JS level column values that are of type text or string, get turned into JS String objects (i.e. `new String(s)`)...

Consider this case: ```ruby MuiLab::Autocomplete(size: :small, options: Model.all) .on('', &:text) .on('') { |params| Mui.TextField(params, label: 'Add Item').to_n } .on(:change) { |_, option| mutate @value = option } ``` Here the...