Joe Woodward

Results 12 issues of Joe Woodward

@editorjs/nested-list uses the same block type as @editorjs/list so we need to check if the content is nested or not and render differently for each type

@editorjs/tables now allows headings. I've updated the logic to allow for this

The editor-js image plugin returns the url for an image inside a `file` node https://github.com/editor-js/image I've added logic to look in the correct location.

## Environment - Ruby **3** - Rails **6** - Simple Form **5.1.0** ## Current behavior This isn't a bug, it's a limitation in how the [code is written](https://github.com/heartcombo/simple_form/blob/master/lib/simple_form/tags.rb#L53) (only passes...

Adds config option to set what happens when unable to deserialize payload ```ruby # config.jsonapi_payload_malformed = -> { # render jsonapi_errors: { # title: 'Non-compliant Request Body', # detail: 'The...

This PR fixes the source pointer when the payload is missing a validated attribute. e.g. ```ruby class User validates :name, presence: true end class UsersController deserializable_resource :user def create user...

### Adds • JSONAPI::Rails::SerializableClassMapping class Overriding Hash’s lookup can be confusing without creating an descendent class. - Old behavior inferrer.class == Hash Doesn’t make it obvious that there’s custom behavior...

Currently when my model validates a value that was completely excluded from the payload I get a response with empty pointers. ```json { "errors": [ { "title": "Invalid user_id", "detail":...

Currently have strong params in place and when a request comes through without a compliant structure I end up raising `ActionController::ParameterMissing` because my strong params doesn't have anything to work...

Cocoon would allow developers to define a minimum and maximum number of nested forms, would be nice to do the same here without extending the controller. i.e. minimum = 1,...