relay_ui 0.1.0 → 0.2.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (64) hide show
  1. checksums.yaml +4 -4
  2. data/LICENSE.txt +21 -0
  3. data/README.md +100 -0
  4. data/dist/relay_ui/relay_ui.css +595 -0
  5. data/lib/relay_ui/engine.rb +6 -7
  6. data/lib/relay_ui/version.rb +2 -2
  7. data/lib/relay_ui.rb +1 -1
  8. data/lib/rui/badges/base.rb +5 -0
  9. data/lib/rui/badges/blue.rb +5 -0
  10. data/lib/rui/badges/gray.rb +5 -0
  11. data/lib/rui/badges/green.rb +5 -0
  12. data/lib/rui/badges/purple.rb +5 -0
  13. data/lib/rui/badges/red.rb +5 -0
  14. data/lib/rui/badges/yellow.rb +5 -0
  15. data/{app/components → lib/rui}/base.rb +1 -3
  16. data/lib/rui/buttons/base.rb +27 -0
  17. data/lib/rui/buttons/destructive.rb +5 -0
  18. data/lib/rui/buttons/ghost.rb +5 -0
  19. data/lib/rui/buttons/outline.rb +5 -0
  20. data/lib/rui/buttons/primary.rb +5 -0
  21. data/lib/rui/buttons/secondary.rb +5 -0
  22. data/{app/components → lib/rui}/icon.rb +3 -1
  23. data/lib/rui/links/base.rb +28 -0
  24. data/lib/rui/links/destructive.rb +5 -0
  25. data/lib/rui/links/ghost.rb +5 -0
  26. data/lib/rui/links/outline.rb +5 -0
  27. data/lib/rui/links/primary.rb +5 -0
  28. data/lib/rui/links/secondary.rb +5 -0
  29. data/lib/rui/markdown/generator.rb +35 -0
  30. data/lib/rui/markdown/safe.rb +7 -0
  31. data/lib/rui/markdown/safe_renderer.rb +13 -0
  32. data/lib/rui/markdown/unsafe.rb +7 -0
  33. data/lib/rui/markdown/unsafe_renderer.rb +34 -0
  34. data/lib/rui/navigation.rb +51 -0
  35. data/lib/rui/slideout.rb +20 -0
  36. data/lib/rui/text.rb +19 -0
  37. metadata +80 -35
  38. data/Rakefile +0 -64
  39. data/app/assets/javascripts/relay_ui/index.js +0 -5
  40. data/app/assets/stylesheets/relay_ui/application.css +0 -1
  41. data/app/components/badges/base.rb +0 -5
  42. data/app/components/badges/blue.rb +0 -5
  43. data/app/components/badges/gray.rb +0 -5
  44. data/app/components/badges/green.rb +0 -5
  45. data/app/components/badges/purple.rb +0 -5
  46. data/app/components/badges/red.rb +0 -5
  47. data/app/components/badges/yellow.rb +0 -5
  48. data/app/components/buttons/base.rb +0 -30
  49. data/app/components/buttons/destructive.rb +0 -5
  50. data/app/components/buttons/ghost.rb +0 -5
  51. data/app/components/buttons/link.rb +0 -9
  52. data/app/components/buttons/outline.rb +0 -5
  53. data/app/components/buttons/primary.rb +0 -5
  54. data/app/components/buttons/secondary.rb +0 -5
  55. data/app/components/code_block.rb +0 -13
  56. data/app/components/headings.rb +0 -37
  57. data/app/components/lists/base.rb +0 -13
  58. data/app/components/lists/ordered.rb +0 -5
  59. data/app/components/lists/unordered.rb +0 -5
  60. data/app/components/navigation.rb +0 -49
  61. data/app/components/slideout.rb +0 -20
  62. data/app/components/text.rb +0 -19
  63. data/package.json +0 -16
  64. data/tailwind.config.js +0 -10
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 810abe5f7ea49a12bd4c1adfb1ae77895648ac78a7c9ec462980d60adf2364a9
4
- data.tar.gz: b8f3b86b3079cfa79265d5d70bd9e05bd3a6dee1a25b40021a5c63243a71fa9f
3
+ metadata.gz: 26bbb6690e73af9858e034ddd1f4165dc3e566da75a598df32697bfbda4eb326
4
+ data.tar.gz: a717467cf909cb32f506d9dd5f8cd0931256b6c8e05de7dfa02634ff943fadd2
5
5
  SHA512:
6
- metadata.gz: bb3fee20245f10d29113a71e4b3ad94b0e24ebf3a31363f49172b9b74b68bffa8daf08e5d56febfa0c7d14742892c8864a03555f1d4a0ea72e9cce03c5124836
7
- data.tar.gz: 5156fc61323221af3512d46c4c10113fa13b36cbee5eba7abb184b8f690e74544192138334f5d92b67f67b9e928a9888e727074fcc792acd657de82a9d0a0279
6
+ metadata.gz: 6b210e15c31c9dc210e201c67862410d2b768c7cf4f7a838dcc07b92c0925c782a25abbe4323d3c12eb9930c694eba1ed1a16205da3be220f42a6ef36e6c9042
7
+ data.tar.gz: 76d07201379e1e1bfbff8cb914b58012d8868a2dcee91146856bedca312ad07f20e1e7de1de07ce256b20bd9a8547ed6492e44de165588f435c9749b172265e3
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2025 LogicRelay LLC
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,100 @@
1
+ # RelayUI
2
+
3
+ > [!WARNING]
4
+ > This project is extremely new, and we're still working out the kinks. While it is just being used for the first time in new production apps, we're not yet ready to recommend it quite yet. It's highly likely that the API will change frequently in ways that will be extremely disruptive to your codebase. Use at your own risk for now, and we'll update this warning when we're ready to recommend it. Look for a 1.0.0 release sometime in Q2 2025.
5
+
6
+ RelayUI is a set of highly prescriptive UI elements written in Phlex and designed for Ruby and Rails applications. We know what you're thinking: "Another UI kit? Really?" But hear us out...
7
+
8
+ We generally see two types of UI kits available today:
9
+ - **Highly flexible and customizable UI kits** - These are great for building consumer-facing apps where you need to have a unique look and feel, but they can create a lot of overhead for developers who just want to get business value out the door quickly. Many of them also rely on code generation, and we wanted a solution that could be updated via bundler.
10
+ - **Paid UI kits** - These are great for businesses that want to get something out the door quickly and don't mind paying for it, but we like open-source software and we think that there's a place for a free, easy-to-use UI kit.
11
+
12
+ This is why RelayUI was created. It's purposefully inflexible, meant to provide a baseline set of functionality that covers 80-90% of use cases so developers can skip decisions like what icons to use or how to style buttons and focus on the stuff that matters.
13
+
14
+ RelayUI is supported by [LogicRelay](https://www.logicrelay.com), a software development agency that specializes in rapid creation of business software. We created RelayUI to help us build software faster and more consistently, and we're sharing it with the world in the hopes that it will help others do the same.
15
+
16
+ ## Why Phlex?
17
+
18
+ [Phlex](https://github.com/phlex-ruby/phlex) is a Ruby-based DSL for building HTML views and components. After experimenting with [ViewComponents](https://viewcomponent.org/) and using the gem in some projects, we found the differentiation between views and presenter logic to be cumbersome at scale. Phlex provides the power of ruby in your views without the need for a separate presenter layer, and it's fast. Really fast.
19
+
20
+ Our Phlex components [can be rendered in plain-old `erb` files](https://www.phlex.fun/components/rendering.html#rendering-phlex-components-in-erb), but we think you'll find that the Phlex DSL is so easy to use that you'll want to use it everywhere.
21
+
22
+ ## The RUI Namespace
23
+
24
+ All of RelayUI's components are housed in the `RUI::` namespace. This turns your IDE's autocomplete into a powerful tool for building UIs quickly. Just type `RUI::` and see what's available!
25
+
26
+ With this in mind, we prefer pulling basic variants up to the model level. Whereas many UI kits may specify variants via parameters (eg: `Component.new(variant: :primary)`), we prefer to give major variants class-level importance. So, we'll opt for patterns like `RUI::Buttons::Primary` and `RUI::Buttons::Secondary` instead.
27
+
28
+ ## Using TailwindCSS
29
+
30
+ RelayUI uses [TailwindCSS v4](https://tailwindcss.com/) for styling under the hood. One of the challenges we aimed to solve is how to include the styles Tailwind provides in a way that doesn't collide with any other CSS styles or frameworks being used. For example, we wanted to make sure RelayUI still worked well in projects that used Tailwind v3, or even Bootstrap.
31
+
32
+ For that reason, we've decided to prefix our CSS classes with `rui:`. This way, RelayUI is able to come out of the box with all of the styles you need to make our components work, but you can choose to use any CSS framework you want and not risk any CSS class conflicts or collisions.
33
+ STRING
34
+
35
+ # Installation
36
+
37
+ ### First, add the gem to your `Gemfile`:
38
+
39
+ ```ruby
40
+ gem 'relay_ui'
41
+ ```
42
+
43
+ ### Then install your gems:
44
+
45
+ ```shell
46
+ bundle install
47
+ ```
48
+
49
+ ### Or install it directly:
50
+
51
+ ```shell
52
+ gem install relay_ui
53
+ ```
54
+
55
+ ### Include the gem's stylesheet in your application layout:
56
+
57
+ ```ruby
58
+ stylesheet_link_tag "relay_ui/relay_ui", media: "all"
59
+ ```
60
+
61
+ That's it! All of the basic functionality of the UI kit is now available to you. For certain components that require additional elements (like stimulus controllers), you'll need to include those separately. They will be documented in the component's usage instructions.
62
+
63
+ # Usage
64
+
65
+ The usage docs can be found at https://www.relayui.com
66
+
67
+ # Contributing
68
+
69
+ **If you're interested in contributing on this project we'd love to chat with you on [our Discord server](https://discord.gg/wPyvK87KFe).**
70
+
71
+ There's a lot of work to be done on this project, and we're always looking for help. Here's some details on how we're going about building this kit:
72
+
73
+ - We have a [public roadmap](https://github.com/orgs/logicrelay/projects/14/views/3) that we're using to track features that are slated for the next release and features that haven't been prioritized yet.
74
+ - We're using [Github Projects](https://github.com/orgs/logicrelay/projects/14/views/1) to track WIP features and bugs.
75
+ - We'll generally spec out a milestone in a JIT fashion as the previous milestone is released.
76
+
77
+ ## Prerequisites
78
+
79
+ There are a couple of things you'll need to do to get your environment set up for contributing to this project:
80
+
81
+ - **mise** - We use [`mise`](https://mise.jdx.dev/getting-started.html) to manage our development environment and provide easy access to the tools we need to work on the project.
82
+ - **bundler config** - You'll need to set the local path to the root directory of the project by running the following command in the root of the repo: `bundle config local.relay_ui /path/to/relay_ui`. This will allow you to work on the UI kit locally and see changes in real time.
83
+ - **LiveReload** - [LiveReload](https://addons.mozilla.org/en-US/firefox/addon/livereload/) is not a must have, but it's a nice to have. It will automatically refresh your browser when you're working on the UI kit locally.
84
+
85
+ ## Tooling
86
+
87
+ There are three processes to run locally when developing...
88
+ - `mise run watch` starts the watch process that generates a combined CSS file using TailwindCSS.
89
+ - `mise run guard` runs `guard` and `guard-livereload` (optional)
90
+ - `mise run server` starts the local server.
91
+
92
+ ## License
93
+
94
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
95
+
96
+ [Maintained by the team @ LogicRelay](https://www.logicrelay.com/)
97
+
98
+ ## Code of Conduct
99
+
100
+ Everyone interacting in the RelayUi project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/relay_ui/blob/main/CODE_OF_CONDUCT.md).