Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

custom_form_generator

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

custom_form_generator

  • 1.0.5
  • Rubygems
  • Socket score

Version published
Maintainers
1
Created
Source

CustomFormGenerator

Overview

CustomFormGenerator is a Ruby gem designed to dynamically generate HTML forms and tables based on JSON configurations. It leverages the Slim templating engine to render forms, filter, sort options, and tabular views.

Installation

Add this line to your application's Gemfile:

gem 'custom_form_generator', path: '/path/to/custom_form_generator'

And then execute:

bundle install

Usage

Preparation

To use CustomFormGenerator, you need to provide few JSON and YAML files that defines the structure of your form or table. Currently supporting use cases of 4 such files:

  • form.yml
  • data.json
  • config.json
  • table.yml
form.yml
- type: textfield
  label: Name
  key: properties.name
  id: name_input
  class: form-control
- type: dropdown
  label: Language
  key: language
  id: language_select
  class: form-select
  disabled: true
data.json
[
  {
    "_id": { "$oid": "64df" },
    "language": "jp",
    "name": "Kishimoto S",
    "properties": {
      "name": "Kishimoto S",
      "categories": ["/Yusuke/Urameshi"],
      "sku": "B3743-B001"
    }
  }
]

config.json
{
  "sort": [
    { "key": "name", "label": "Name" },
    { "key": "created_at", "label": "Created At" }
  ],
  "filter": [
    { "key": "language", "label": "Language" },
    { "key": "published_at", "label": "Published At", "type": "radio", "options": ["all", "yes", "no"], "default": "all" }
  ],
  "order_by": [
    { "key": "asc", "label": "Ascending" },
    { "key": "desc", "label": "Descending" }
  ]
}

table.yml
- key: images_url
  label: Image
  id: image_column
  class: table-column
- key: properties.name
  label: Name
  id: name_column
  class: table-column

Usage Example

require 'custom_form_generator'

generator = CustomFormGenerator::Generator.new(
  'path/to/form.yml',
  'path/to/data.json',
  'path/to/config.json',
  'path/to/table.yml'
)

# Generate form
html_form = generator.generate_form

# Generate filter and sort
filter_html = generator.generate_filter_and_sort

# Generate table view
table_html = generator.generate_tabular_view(data)

Development

After checking out the repo, run bin/setup to install dependencies. Then, run rake spec to run the tests.

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/Manmohan-menon/SlimForms_gem. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the code of conduct.

License

The gem is available as open source under the terms of the MIT License.

Code of Conduct

Everyone interacting in the CustomFormGenerator project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the code of conduct.

FAQs

Package last updated on 30 Oct 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc