plutonium 0.51.0 → 0.52.0

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 (120) hide show
  1. checksums.yaml +4 -4
  2. data/.claude/skills/plutonium-app/SKILL.md +2 -0
  3. data/.claude/skills/plutonium-auth/SKILL.md +6 -4
  4. data/.claude/skills/plutonium-behavior/SKILL.md +1 -1
  5. data/.claude/skills/plutonium-tenancy/SKILL.md +25 -6
  6. data/.claude/skills/plutonium-testing/SKILL.md +3 -1
  7. data/.claude/skills/plutonium-ui/SKILL.md +3 -3
  8. data/CHANGELOG.md +17 -0
  9. data/app/assets/plutonium.css +1 -1
  10. data/app/assets/plutonium.js +1 -0
  11. data/app/assets/plutonium.js.map +3 -3
  12. data/app/assets/plutonium.min.js +1 -1
  13. data/app/assets/plutonium.min.js.map +3 -3
  14. data/docs/.vitepress/config.ts +1 -2
  15. data/docs/.vitepress/theme/components/HomeAudienceSplit.vue +53 -0
  16. data/docs/.vitepress/theme/components/HomeCta.vue +108 -0
  17. data/docs/.vitepress/theme/components/HomeHero.vue +70 -0
  18. data/docs/.vitepress/theme/components/HomeInTheBox.vue +74 -0
  19. data/docs/.vitepress/theme/components/HomePillars.vue +42 -0
  20. data/docs/.vitepress/theme/components/HomeStopWriting.vue +49 -0
  21. data/docs/.vitepress/theme/components/HomeWalkthrough.vue +111 -0
  22. data/docs/.vitepress/theme/components/SectionLanding.vue +115 -0
  23. data/docs/.vitepress/theme/custom.css +144 -0
  24. data/docs/.vitepress/theme/index.ts +58 -1
  25. data/docs/getting-started/index.md +33 -50
  26. data/docs/getting-started/tutorial/02-first-resource.md +17 -8
  27. data/docs/getting-started/tutorial/03-authentication.md +31 -23
  28. data/docs/getting-started/tutorial/05-custom-actions.md +9 -4
  29. data/docs/getting-started/tutorial/06-nested-resources.md +7 -1
  30. data/docs/getting-started/tutorial/07-author-portal.md +8 -0
  31. data/docs/getting-started/tutorial/08-customizing-ui.md +4 -0
  32. data/docs/guides/authentication.md +10 -5
  33. data/docs/guides/authorization.md +3 -3
  34. data/docs/guides/creating-packages.md +8 -11
  35. data/docs/guides/custom-actions.md +6 -1
  36. data/docs/guides/customizing-ui.md +258 -0
  37. data/docs/guides/index.md +49 -32
  38. data/docs/guides/multi-tenancy.md +10 -2
  39. data/docs/guides/nested-resources.md +69 -0
  40. data/docs/guides/search-filtering.md +6 -0
  41. data/docs/guides/testing.md +5 -1
  42. data/docs/guides/theming.md +13 -0
  43. data/docs/guides/user-invites.md +10 -4
  44. data/docs/guides/user-profile.md +8 -0
  45. data/docs/index.md +10 -219
  46. data/docs/public/asciinema/home-scaffold.cast +305 -0
  47. data/docs/public/images/guides/custom-actions-bulk.png +0 -0
  48. data/docs/public/images/guides/multi-tenancy-dashboard.png +0 -0
  49. data/docs/public/images/guides/multi-tenancy-welcome.png +0 -0
  50. data/docs/public/images/guides/nested-inputs.png +0 -0
  51. data/docs/public/images/guides/nested-resources-tab.png +0 -0
  52. data/docs/public/images/guides/search-filtering-index.png +0 -0
  53. data/docs/public/images/guides/search-filtering-panel.png +0 -0
  54. data/docs/public/images/guides/theming-after.png +0 -0
  55. data/docs/public/images/guides/theming-before.png +0 -0
  56. data/docs/public/images/guides/user-invites-landing.png +0 -0
  57. data/docs/public/images/guides/user-profile-edit.png +0 -0
  58. data/docs/public/images/guides/user-profile-show.png +0 -0
  59. data/docs/public/images/home-index.png +0 -0
  60. data/docs/public/images/home-new.png +0 -0
  61. data/docs/public/images/home-show.png +0 -0
  62. data/docs/public/images/tutorial/02-empty-index.png +0 -0
  63. data/docs/public/images/tutorial/02-index-with-posts.png +0 -0
  64. data/docs/public/images/tutorial/02-new-form-modal.png +0 -0
  65. data/docs/public/images/tutorial/02-new-form.png +0 -0
  66. data/docs/public/images/tutorial/03-create-account.png +0 -0
  67. data/docs/public/images/tutorial/03-login.png +0 -0
  68. data/docs/public/images/tutorial/04-admin-index.png +0 -0
  69. data/docs/public/images/tutorial/05-actions-menu.png +0 -0
  70. data/docs/public/images/tutorial/05-row-actions.png +0 -0
  71. data/docs/public/images/tutorial/06-comments-tab.png +0 -0
  72. data/docs/public/images/tutorial/06-post-with-comments.png +0 -0
  73. data/docs/public/images/tutorial/07-author-dashboard.png +0 -0
  74. data/docs/public/images/tutorial/07-author-portal.png +0 -0
  75. data/docs/public/images/tutorial/08-customized-index.png +0 -0
  76. data/docs/reference/app/generators.md +4 -4
  77. data/docs/reference/auth/accounts.md +6 -7
  78. data/docs/reference/auth/index.md +1 -1
  79. data/docs/reference/behavior/policies.md +1 -1
  80. data/docs/reference/index.md +67 -55
  81. data/docs/reference/resource/definition.md +1 -1
  82. data/docs/reference/tenancy/entity-scoping.md +8 -1
  83. data/docs/reference/tenancy/index.md +1 -1
  84. data/docs/reference/tenancy/invites.md +12 -5
  85. data/docs/reference/ui/tables.md +8 -4
  86. data/docs/superpowers/plans/2026-05-15-public-pages-overhaul.md +1648 -0
  87. data/docs/superpowers/plans/2026-05-15-public-pages-overhaul.md.tasks.json +109 -0
  88. data/docs/superpowers/specs/2026-05-15-public-pages-overhaul-design.md +263 -0
  89. data/gemfiles/rails_7.gemfile.lock +1 -1
  90. data/gemfiles/rails_8.0.gemfile.lock +1 -1
  91. data/gemfiles/rails_8.1.gemfile.lock +1 -1
  92. data/lib/generators/pu/core/assets/assets_generator.rb +10 -0
  93. data/lib/generators/pu/invites/install_generator.rb +44 -0
  94. data/lib/generators/pu/invites/templates/packages/invites/app/controllers/invites/user_invitations_controller.rb.tt +1 -0
  95. data/lib/generators/pu/profile/conn_generator.rb +2 -2
  96. data/lib/generators/pu/res/conn/conn_generator.rb +33 -6
  97. data/lib/generators/pu/res/model/templates/model.rb.tt +4 -0
  98. data/lib/generators/pu/rodauth/account_generator.rb +2 -1
  99. data/lib/generators/pu/rodauth/admin_generator.rb +0 -2
  100. data/lib/generators/pu/rodauth/migration_generator.rb +0 -2
  101. data/lib/generators/pu/rodauth/views_generator.rb +0 -2
  102. data/lib/generators/pu/saas/membership/USAGE +4 -1
  103. data/lib/generators/pu/saas/setup_generator.rb +16 -4
  104. data/lib/generators/pu/saas/welcome/templates/app/controllers/welcome_controller.rb.tt +1 -1
  105. data/lib/plutonium/helpers/turbo_helper.rb +19 -0
  106. data/lib/plutonium/resource/controllers/crud_actions.rb +4 -4
  107. data/lib/plutonium/resource/controllers/interactive_actions.rb +3 -3
  108. data/lib/plutonium/ui/component/methods.rb +1 -0
  109. data/lib/plutonium/ui/form/base.rb +17 -1
  110. data/lib/plutonium/ui/form/components/secure_association.rb +11 -6
  111. data/lib/plutonium/ui/form/interaction.rb +1 -1
  112. data/lib/plutonium/ui/form/theme.rb +1 -1
  113. data/lib/plutonium/ui/page/edit.rb +1 -1
  114. data/lib/plutonium/ui/page/new.rb +1 -1
  115. data/lib/plutonium/ui/table/components/filter_form.rb +12 -4
  116. data/lib/plutonium/version.rb +1 -1
  117. data/package.json +4 -1
  118. data/src/js/controllers/form_controller.js +5 -4
  119. data/yarn.lock +108 -1
  120. metadata +45 -3
@@ -0,0 +1,258 @@
1
+ # Customizing the UI
2
+
3
+ Plutonium's UI is built on Phlex, Tailwind 4, and Stimulus. Almost everything you see — pages, forms, displays, tables, components, layouts, even the design tokens — is open for override. This guide is the map. Each section shows the smallest useful example for one kind of customization, then points to the reference for the full surface.
4
+
5
+ When you're not sure where to start, read this top to bottom. When you know what you need, jump to the right section and follow the link to reference.
6
+
7
+ ## The override pattern
8
+
9
+ Customization in Plutonium is overrides via **nested classes inside the definition**, never replacement of the root class. The pattern looks the same everywhere:
10
+
11
+ ```ruby
12
+ class PostDefinition < ResourceDefinition
13
+ class ShowPage < ShowPage; end # override show page
14
+ class Form < Form; end # override form
15
+ class Table < Table; end # override index table
16
+ class Display < Display; end # override show display
17
+ end
18
+ ```
19
+
20
+ Each nested class inherits from Plutonium's defaults and lets you override only the methods you care about. Don't reimplement the whole layer — use the render hooks below.
21
+
22
+ → See [Reference › UI › Pages](/reference/ui/pages) for the full hook list.
23
+
24
+ ## Adding chrome to a page
25
+
26
+ Most page customization is "I want to add something before/after this section." Use the render hooks; don't override `view_template`.
27
+
28
+ ```ruby
29
+ class PostDefinition < ResourceDefinition
30
+ class ShowPage < ShowPage
31
+ def render_before_content
32
+ div(class: "pu-card pu-card-body") do
33
+ plain "This post has #{object.comments.count} comments"
34
+ end
35
+ end
36
+ end
37
+ end
38
+ ```
39
+
40
+ Hooks exist around the header, breadcrumbs, page header, toolbar, content, and footer — pick the one closest to where you want the thing to appear.
41
+
42
+ → See [Reference › UI › Pages](/reference/ui/pages) › Page hooks.
43
+
44
+ ## Customizing a form layout
45
+
46
+ The default form renders every permitted field in a single grid. To group fields into sections or columns, override `form_template`:
47
+
48
+ ```ruby
49
+ class Form < Form
50
+ def form_template
51
+ section("Basic") do
52
+ render_resource_field :title
53
+ render_resource_field :slug
54
+ end
55
+ section("Publishing") do
56
+ render_resource_field :published_at
57
+ render_resource_field :category
58
+ end
59
+ render_actions # REQUIRED — without this, no submit button
60
+ end
61
+
62
+ private
63
+
64
+ def section(title, &)
65
+ div(class: "mb-8") do
66
+ h3(class: "text-lg font-semibold mb-4 text-[var(--pu-text)]") { title }
67
+ fields_wrapper(&)
68
+ end
69
+ end
70
+ end
71
+ ```
72
+
73
+ → See [Reference › UI › Forms](/reference/ui/forms) for `render_resource_field`, field tags (`flatpickr_tag`, `easymde_tag`, `uppy_tag`, etc.), and Phlexi themes.
74
+
75
+ ## Customizing a display
76
+
77
+ The show page renders a `Display` for the record. Override `display_template` to add hero blocks, group fields, or interleave custom panels:
78
+
79
+ ```ruby
80
+ class Display < Display
81
+ def display_template
82
+ div(class: "pu-card pu-card-body mb-4") do
83
+ h1 { object.title }
84
+ p(class: "text-[var(--pu-text-muted)]") { object.excerpt }
85
+ end
86
+ Block { fields_wrapper { render_fields } }
87
+ render_associations if present_associations?
88
+ end
89
+ end
90
+ ```
91
+
92
+ → See [Reference › UI › Displays](/reference/ui/displays).
93
+
94
+ ## Replacing a table with a grid
95
+
96
+ By default the index page renders a `Table`. To use cards instead, override `view_template` on the nested `Table`:
97
+
98
+ ```ruby
99
+ class Table < Table
100
+ def view_template
101
+ render_toolbar
102
+ render_scopes_pills
103
+ if collection.empty?
104
+ render_empty_card
105
+ else
106
+ div(class: "grid grid-cols-3 gap-4") do
107
+ collection.each { |post| render PostCardComponent.new(post:) }
108
+ end
109
+ end
110
+ render_footer
111
+ end
112
+ end
113
+ ```
114
+
115
+ → See [Reference › UI › Tables](/reference/ui/tables).
116
+
117
+ ## Writing a custom Phlex component
118
+
119
+ When you need a piece of UI that's reused across pages, write a Phlex component. Inherit from `Plutonium::UI::Component::Base` and you get the component kit (`PageHeader`, `Panel`, `Block`), resource URL helpers, and a `helpers` proxy for Rails helpers.
120
+
121
+ ```ruby
122
+ class PostCardComponent < Plutonium::UI::Component::Base
123
+ def initialize(post:) = @post = post
124
+
125
+ def view_template
126
+ div(class: "pu-card pu-card-body") do
127
+ h3(class: "font-bold text-[var(--pu-text)]") { @post.title }
128
+ p(class: "text-[var(--pu-text-muted)] mt-2") { @post.excerpt }
129
+ a(href: resource_url_for(@post), class: "pu-btn pu-btn-sm pu-btn-ghost") { "Read more" }
130
+ end
131
+ end
132
+ end
133
+ ```
134
+
135
+ Use it directly in a page, or wire it as a field in the definition:
136
+
137
+ ```ruby
138
+ display :card, as: PostCardComponent
139
+ ```
140
+
141
+ → See [Reference › UI › Components](/reference/ui/components).
142
+
143
+ ## Phlexi themes (recolor without rewriting)
144
+
145
+ If all you want is to recolor or restyle the form/display/table, write a `Theme` class instead of overriding the template. Always `super.merge(...)` — never replace wholesale:
146
+
147
+ ```ruby
148
+ class Form < Form
149
+ class Theme < Plutonium::UI::Form::Theme
150
+ def self.theme
151
+ super.merge(
152
+ base: "bg-[var(--pu-card-bg)] shadow-md rounded-lg p-6",
153
+ fields_wrapper: "grid grid-cols-2 gap-6",
154
+ label: "block mb-2 text-base font-bold",
155
+ )
156
+ end
157
+ end
158
+ end
159
+ ```
160
+
161
+ → See [Reference › UI › Forms](/reference/ui/forms) › Theme keys, [Reference › UI › Displays](/reference/ui/displays) › Theme, [Reference › UI › Tables](/reference/ui/tables) › Theme.
162
+
163
+ ## Modals and slideovers
164
+
165
+ By default `:new` and `:edit` render in a slideover panel. Switch to a centered modal or a full standalone page from the definition:
166
+
167
+ ```ruby
168
+ class PostDefinition < ResourceDefinition
169
+ modal :slideover # default — slide-in from the right
170
+ # modal :centered # centered dialog
171
+ # modal false # full standalone page
172
+ end
173
+ ```
174
+
175
+ → See [Reference › Resource › Actions](/reference/resource/actions) for per-action `modal:` options on interactive actions.
176
+
177
+ ## Layouts and the shell
178
+
179
+ The layout is the chrome around every resource page — topbar, sidebar, flash region, scripts. Two ways to customize it:
180
+
181
+ ```bash
182
+ # Per-portal: eject the shell partials and edit them directly
183
+ rails generate pu:eject:shell --dest=admin_portal
184
+ # Or eject the whole layout
185
+ rails generate pu:eject:layout
186
+ ```
187
+
188
+ For programmatic overrides, subclass `Plutonium::UI::Layout::ResourceLayout` and use its render hooks (`render_before_main`, `render_body_scripts`, etc.).
189
+
190
+ → See [Reference › UI › Layouts](/reference/ui/layouts) and [Theming](/guides/theming) for design tokens.
191
+
192
+ ## Tailwind, Stimulus, and assets
193
+
194
+ Plutonium ships with a Tailwind config, design tokens, and a set of Stimulus controllers. To plug into them in your app:
195
+
196
+ ```bash
197
+ rails generate pu:core:assets
198
+ ```
199
+
200
+ This installs the npm packages, creates a `tailwind.config.js` that extends Plutonium's defaults via `plutoniumTailwindConfig.merge`, imports Plutonium's CSS, and registers its Stimulus controllers. After that, you can:
201
+
202
+ - Extend the palette under `theme.extend.colors` (always inside `plutoniumTailwindConfig.merge` — a plain spread drops Plutonium's defaults).
203
+ - Use `.pu-btn`, `.pu-card`, `.pu-input`, `.pu-table`, etc. instead of hand-rolling Tailwind chains.
204
+ - Reference design tokens directly: `bg-[var(--pu-surface)]`, `text-[var(--pu-text-muted)]`, `border-[var(--pu-border)]`. These auto-switch with dark mode.
205
+ - Register your own Stimulus controllers alongside Plutonium's — `registerControllers(application)` is mandatory or the entire interactive layer is dead.
206
+
207
+ → See [Reference › UI › Assets](/reference/ui/assets) for the full toolchain, the `.pu-*` class catalog, and design-token reference.
208
+
209
+ ## ERB views (escape hatch)
210
+
211
+ When the Phlex page class is the wrong tool — you want to keep an existing ERB layout, you're integrating with a designer's HTML, or you just want to surround the generated page with custom markup — drop an ERB view at the controller path:
212
+
213
+ ```
214
+ app/views/posts/show.html.erb
215
+ packages/admin_portal/app/views/admin_portal/posts/show.html.erb
216
+ ```
217
+
218
+ The default page renders the Phlex page class in one line:
219
+
220
+ ```erb
221
+ <%= render current_definition.show_page_class.new %>
222
+ ```
223
+
224
+ Keep that line and wrap it to add chrome without giving up the generated page:
225
+
226
+ ```erb
227
+ <div class="announcement-banner">Special announcement</div>
228
+ <%= render current_definition.show_page_class.new %>
229
+ <%= render partial: "related" %>
230
+ ```
231
+
232
+ Or replace the line entirely for full control. ERB views always win over the Phlex page class when both exist for the same action — reach for this only when Phlex hooks + overrides genuinely can't do the job.
233
+
234
+ ## When to reach for what
235
+
236
+ | You want to… | Use |
237
+ |---|---|
238
+ | Add a banner above the show page | Page hook (`render_before_content`) |
239
+ | Group form fields into sections | Custom `form_template` |
240
+ | Render the index as cards | Custom `Table#view_template` |
241
+ | Reuse a UI block across pages | Custom Phlex component |
242
+ | Recolor without changing structure | Phlexi `Theme` class |
243
+ | Swap the topbar or sidebar | `pu:eject:shell` or custom layout class |
244
+ | Change brand color or radius | Design tokens — see [Theming](/guides/theming) |
245
+ | Add a custom JS interaction | Stimulus controller registered alongside Plutonium's |
246
+
247
+ ## Gotchas
248
+
249
+ - **Don't override `view_template` in pages** when a render hook fits — you lose breadcrumbs, header, and DynaFrame (turbo-frame) behavior.
250
+ - **`render_actions` is mandatory** when you write a custom `form_template` — otherwise the form has no submit button.
251
+ - **Always `registerControllers(application)`** in `app/javascript/controllers/index.js`. Without it, every Plutonium-shipped Stimulus controller is dead (color mode, slim-select, flatpickr, easymde, form pre-submit).
252
+ - **Use `plutoniumTailwindConfig.merge`** when extending the Tailwind theme. A plain object spread drops Plutonium's defaults.
253
+ - **Prefer `.pu-*` classes and `var(--pu-*)` tokens** over hardcoded `gray-X/dark:gray-Y` pairs — they switch with dark mode automatically.
254
+
255
+ ## Related
256
+
257
+ - [Theming](/guides/theming) — design tokens, brand colors.
258
+ - [Reference › UI](/reference/ui/) — the full surface area for every override above.
data/docs/guides/index.md CHANGED
@@ -1,32 +1,49 @@
1
- # Guides
2
-
3
- Task-oriented walkthroughs. Each guide shows you how to accomplish a specific task, step-by-step, with links to [Reference](/reference/) for the concepts.
4
-
5
- ## I want to…
6
-
7
- | Task | Guide |
8
- |---|---|
9
- | Add a new model to my app | [Adding resources](./adding-resources) |
10
- | Organize code across multiple teams | [Creating packages](./creating-packages) |
11
- | Protect pages with login | [Authentication](./authentication) |
12
- | Control who can edit what | [Authorization](./authorization) |
13
- | Add a "Publish" button | [Custom actions](./custom-actions) |
14
- | Show comments under posts | [Nested resources](./nested-resources) |
15
- | Separate data by company | [Multi-tenancy](./multi-tenancy) |
16
- | Add search to a list | [Search and filtering](./search-filtering) |
17
- | Invite users to an organization | [User invites](./user-invites) |
18
- | Add a profile / account-settings page | [User profile](./user-profile) |
19
- | Customize colors, branding, styles | [Theming](./theming) |
20
- | Write tests for resources | [Testing](./testing) |
21
- | Fix a confusing error | [Troubleshooting](./troubleshooting) |
22
-
23
- ## Guides vs Reference
24
-
25
- - **Guides** = "how do I do X?" — step-by-step, opinionated, narrative.
26
- - **[Reference](/reference/)** = "what does X do?" — exhaustive option lookup, concept catalog.
27
-
28
- When a guide says "see Reference › Foo", it's pointing to the catalog page for the full option/method/DSL list.
29
-
30
- ## New to Plutonium?
31
-
32
- Start with the [Tutorial](/getting-started/tutorial/) — an 8-step walkthrough that builds a blog with auth, authorization, custom actions, nested resources, and a customer portal.
1
+ ---
2
+ layout: page
3
+ sidebar: false
4
+ aside: false
5
+ ---
6
+
7
+ <SectionLanding
8
+ eyebrow="Guides"
9
+ title="How to do the things Plutonium apps do."
10
+ lede="Task-oriented walkthroughs for the parts of the framework you reach for most."
11
+ mode="categorized"
12
+ :rail="[
13
+ { group: 'Setup & Resources', items: [
14
+ { name: 'Adding resources', link: '/plutonium-core/guides/adding-resources' },
15
+ { name: 'Creating packages', link: '/plutonium-core/guides/creating-packages' },
16
+ ]},
17
+ { group: 'Auth', items: [
18
+ { name: 'Authentication', link: '/plutonium-core/guides/authentication' },
19
+ { name: 'Authorization', link: '/plutonium-core/guides/authorization' },
20
+ { name: 'User profile', link: '/plutonium-core/guides/user-profile' },
21
+ { name: 'User invites', link: '/plutonium-core/guides/user-invites' },
22
+ ]},
23
+ { group: 'Features', items: [
24
+ { name: 'Custom actions', link: '/plutonium-core/guides/custom-actions' },
25
+ { name: 'Nested resources', link: '/plutonium-core/guides/nested-resources' },
26
+ { name: 'Multi-tenancy', link: '/plutonium-core/guides/multi-tenancy' },
27
+ { name: 'Search & filtering', link: '/plutonium-core/guides/search-filtering' },
28
+ ]},
29
+ { group: 'Customization', items: [
30
+ { name: 'Customizing the UI', desc: 'A map of the override surface — pages, forms, displays, tables, components, layouts.', link: '/plutonium-core/guides/customizing-ui' },
31
+ { name: 'Theming', desc: 'Design tokens and brand colors.', link: '/plutonium-core/guides/theming' },
32
+ ]},
33
+ { group: 'Quality', items: [
34
+ { name: 'Testing', link: '/plutonium-core/guides/testing' },
35
+ { name: 'Troubleshooting', link: '/plutonium-core/guides/troubleshooting' },
36
+ ]},
37
+ ]"
38
+ :sidebar="[
39
+ { heading: 'New to Plutonium?', items: [
40
+ { label: 'Start with the tutorial', href: '/plutonium-core/getting-started/tutorial/' },
41
+ ]},
42
+ { heading: 'Looking for APIs?', items: [
43
+ { label: 'Browse the reference', href: '/plutonium-core/reference/' },
44
+ ]},
45
+ { heading: 'Need help?', items: [
46
+ { label: 'GitHub Discussions', href: 'https://github.com/radioactive-labs/plutonium-core/discussions' },
47
+ ]},
48
+ ]"
49
+ />
@@ -8,10 +8,18 @@ Each tenant sees only their own records. Queries are filtered, forms inject the
8
8
 
9
9
  ## 🚨 Critical
10
10
 
11
- - **Never bypass `default_relation_scope`.** Overriding `relation_scope` with `where(organization: ...)` or manual joins triggers `verify_default_relation_scope_applied!` at runtime. Always call `default_relation_scope(relation)` explicitlynot `super`.
11
+ - **Never bypass `default_relation_scope`.** Overriding `relation_scope` with `where(organization: ...)` or manual joins triggers `verify_default_relation_scope_applied!` at runtime. Make sure `default_relation_scope(relation)` is called somewhere in the chain explicitly here, or via `super` to a parent policy (e.g., a package base) that calls it.
12
12
  - **Always declare an association path from the model to the entity.** Direct `belongs_to`, `has_one :through`, or a custom `associated_with_<entity>` scope. If `associated_with` can't resolve, fix the **model**, not the policy.
13
13
  - **Compound uniqueness scoped to the tenant FK.** `validates :code, uniqueness: {scope: :organization_id}` — without this, uniqueness leaks across tenants.
14
14
 
15
+ After login, users with memberships in multiple entities land on a workspace selector:
16
+
17
+ ![Workspace selector after login](/images/guides/multi-tenancy-welcome.png)
18
+
19
+ Picking one lands them on the entity-scoped dashboard — note the entity slug in the URL:
20
+
21
+ ![Tenant-scoped dashboard](/images/guides/multi-tenancy-dashboard.png)
22
+
15
23
  ## Quickest path: `pu:saas:setup`
16
24
 
17
25
  ```bash
@@ -179,7 +187,7 @@ relation_scope do |relation|
179
187
  end
180
188
  ```
181
189
 
182
- 🚨 `default_relation_scope(relation)` must be called explicitlynot `super`. Bypassing it raises at runtime.
190
+ 🚨 `default_relation_scope(relation)` must be called somewhere in the chain otherwise the runtime verification raises. Calling it explicitly here is safest; `super` works only if the parent policy also calls it.
183
191
 
184
192
  ## Cross-tenant operations — super-admin portal
185
193
 
@@ -43,6 +43,8 @@ end
43
43
 
44
44
  This adds a "Properties" tab on the Company show page that loads the nested collection. See [Reference › Behavior › Policies › Association permissions](/reference/behavior/policies#association-permissions).
45
45
 
46
+ ![Parent show page with nested-association tab](/images/guides/nested-resources-tab.png)
47
+
46
48
  ### 4. Visit the URL
47
49
 
48
50
  ```
@@ -180,6 +182,73 @@ Plutonium supports **one level of nesting only**:
180
182
 
181
183
  For deeper hierarchies, use top-level routes plus association tabs on the show page (`permitted_associations`).
182
184
 
185
+ ## Nested inputs (sub-records inside a parent form)
186
+
187
+ A different feature with a confusingly similar name. **Nested *resources*** (above) give you separate URLs for the child collection. **Nested *inputs*** let you edit child records inline inside the parent's form — a single submit creates/updates/deletes them in one go, backed by Rails' `accepts_nested_attributes_for`.
188
+
189
+ Use nested inputs when the children are conceptually part of the parent (line items on an order, variants on a product, contact methods on a person) and don't deserve their own page.
190
+
191
+ ### Setup
192
+
193
+ ```ruby
194
+ # Model
195
+ class Post < ResourceRecord
196
+ has_many :comments
197
+ accepts_nested_attributes_for :comments, allow_destroy: true, reject_if: :all_blank
198
+ end
199
+
200
+ # Definition
201
+ class PostDefinition < ResourceDefinition
202
+ nested_input :comments do |definition|
203
+ definition.input :body, as: :text
204
+ end
205
+ end
206
+
207
+ # Policy — list the association name (NOT `comments_attributes`)
208
+ class PostPolicy < ResourcePolicy
209
+ def permitted_attributes_for_create
210
+ [:title, :body, :comments]
211
+ end
212
+ end
213
+ ```
214
+
215
+ ::: warning Permit the association, not the strong-params shape
216
+ List `:comments` in `permitted_attributes_for_*` — Plutonium translates it to `comments_attributes: [...]` for you. If you write the raw hash, the form renders the field name as a literal label instead of the nested editor.
217
+ :::
218
+
219
+ ### Result
220
+
221
+ ![Inline nested-input editor with Add Comment button](/images/guides/nested-inputs.png)
222
+
223
+ Each existing child renders as its own sub-form. A `Delete` checkbox appears when `allow_destroy: true`; the `+ Add` button appends a blank row.
224
+
225
+ ### Sourcing fields from an existing definition
226
+
227
+ If the child already has its own `Definition` and you want to reuse its inputs:
228
+
229
+ ```ruby
230
+ nested_input :comments, using: CommentDefinition, fields: %i[author body]
231
+ ```
232
+
233
+ ### Limits
234
+
235
+ ```ruby
236
+ nested_input :variants, limit: 5 # cap the number of children
237
+ nested_input :profile, macro: :has_one # singular sub-form, no Add button
238
+ ```
239
+
240
+ ### Nested *inputs* vs nested *resources*
241
+
242
+ | | Nested inputs (`nested_input :comments`) | Nested resources (this guide's main topic) |
243
+ |---|---|---|
244
+ | URL | None — inline in parent form | `/posts/:id/nested_comments` |
245
+ | Submit | One — saves parent + children together | Independent CRUD per child |
246
+ | Discoverability | Always visible in parent form | Tab on parent show page (with `permitted_associations`) |
247
+ | Best for | Tightly-owned children (line items, variants) | Children users browse on their own (orders, posts) |
248
+ | Backing | `accepts_nested_attributes_for` | Plutonium's nested controller routing |
249
+
250
+ You can use both on the same association — they're not mutually exclusive.
251
+
183
252
  ## Inline `+` add on the parent form
184
253
 
185
254
  When a form has an association select (e.g. picking the company on a Property form), the inline `+` button next to the select opens the parent's `:new` action. If the parent form is already in a modal, the `+` opens a **stacked secondary modal** so the in-progress form isn't lost. See [Reference › UI › Forms › Association inputs](/reference/ui/forms#association-inputs).
@@ -11,6 +11,8 @@ Users can:
11
11
  - Click scope buttons (top-of-list quick filters) for common queries like "Published" or "My posts".
12
12
  - Click column headers to sort.
13
13
 
14
+ ![Search box, scope tabs, filter button, sortable columns](/images/guides/search-filtering-index.png)
15
+
14
16
  ## The four pieces
15
17
 
16
18
  | DSL | Purpose |
@@ -141,6 +143,10 @@ end
141
143
  filter :price, with: PriceRangeFilter
142
144
  ```
143
145
 
146
+ Clicking **Filter** opens a slideover with one input per declared filter:
147
+
148
+ ![Filter slideover](/images/guides/search-filtering-panel.png)
149
+
144
150
  ## Scopes (quick-filter buttons)
145
151
 
146
152
  ```ruby
@@ -101,7 +101,11 @@ current_account # uses portal from DSL
101
101
  with_portal(:org) { ... } # scoped portal switch
102
102
  ```
103
103
 
104
- ### Non-Rodauth auth
104
+ ::: info Default Rodauth login expects password `"password123"`
105
+ `login_as` posts to `/<account_table>/login` with `password: "password123"` by default. Either create test accounts with that password (e.g. in fixtures or factories), or override the auth flow via `sign_in_for_tests` below.
106
+ :::
107
+
108
+ ### Non-Rodauth auth (or skipping Rodauth in tests)
105
109
 
106
110
  Define `sign_in_for_tests(account, portal:)` in your test class (or in `test/support/plutonium_testing.rb` for project-wide use):
107
111
 
@@ -48,6 +48,19 @@ end
48
48
 
49
49
  Logo / favicon resolved from `app/assets/images/`.
50
50
 
51
+ Default palette is turquoise on the left; swapping `primary` to indigo gives every `.pu-btn-primary`, focus ring, and selected-row highlight the new colour without touching any markup:
52
+
53
+ <div style="display:grid;grid-template-columns:1fr 1fr;gap:12px;">
54
+ <figure>
55
+ <img src="/images/guides/theming-before.png" alt="Default turquoise palette" />
56
+ <figcaption><em>Default (turquoise)</em></figcaption>
57
+ </figure>
58
+ <figure>
59
+ <img src="/images/guides/theming-after.png" alt="Indigo palette via tailwind override" />
60
+ <figcaption><em>After indigo override</em></figcaption>
61
+ </figure>
62
+ </div>
63
+
51
64
  ## Step 3: Customize colors via Tailwind
52
65
 
53
66
  ```javascript
@@ -30,8 +30,7 @@ Or with custom models:
30
30
  rails g pu:invites:install \
31
31
  --entity-model=Organization \
32
32
  --user-model=Customer \
33
- --membership-model=OrganizationCustomer \
34
- --roles=member,manager,admin
33
+ --membership-model=OrganizationCustomer
35
34
  ```
36
35
 
37
36
  | Option | Default | Description |
@@ -39,11 +38,14 @@ rails g pu:invites:install \
39
38
  | `--entity-model=NAME` | `Entity` | Entity model |
40
39
  | `--user-model=NAME` | `User` | User model |
41
40
  | `--invite-model=NAME` | `<EntityModel><UserModel>Invite` | Invite class name |
42
- | `--membership-model=NAME` | `EntityUser` | Membership join model |
43
- | `--roles` | `member,admin` | Comma-separated roles |
41
+ | `--membership-model=NAME` | `EntityUser` | Membership join model (must already exist) |
44
42
  | `--rodauth=NAME` | `user` | Rodauth configuration for signup |
45
43
  | `--enforce-domain` | `false` | Require email domain to match entity |
46
44
 
45
+ ::: info Roles come from the membership model
46
+ `pu:invites:install` reads the role list from the membership model's `enum :role` — it does not accept a `--roles=` flag. Define roles when you generate the membership model (`pu:saas:membership --roles=...`), or edit the enum directly. **Index 0 is the most privileged** (typically `owner`); the invite interaction excludes `owner` from selectable choices and defaults new invitees to the second role.
47
+ :::
48
+
47
49
  ### 2. Migrate
48
50
 
49
51
  ```bash
@@ -94,6 +96,10 @@ Token-based URL: `https://app.example.com/invitations/abc123...`
94
96
 
95
97
  ### 3. User accepts
96
98
 
99
+ Clicking the link lands on the invitation page:
100
+
101
+ ![Invitation landing page](/images/guides/user-invites-landing.png)
102
+
97
103
  **Existing user:** clicks link → logs in (or already logged in) → email validated → membership created.
98
104
 
99
105
  **New user:** clicks link → "Create Account" → signs up with the invited email → membership created.
@@ -12,6 +12,14 @@ A `/profile` URL that shows the user's personal fields plus a "Security" section
12
12
  - **Profile needs `pu:profile:conn` to be visible** — without it, no `/profile` route, no `profile_url` helper.
13
13
  - **Every user needs a profile row.** Add an `after_create :create_profile!` callback to the user model. Without it, `current_user.profile` is nil.
14
14
 
15
+ The show page renders the user's fields, then the **Security Settings** block with Rodauth-backed actions:
16
+
17
+ ![User profile show page with SecuritySection](/images/guides/user-profile-show.png)
18
+
19
+ Editing produces a regular Plutonium form — same form generator the rest of your resources use:
20
+
21
+ ![User profile edit form](/images/guides/user-profile-edit.png)
22
+
15
23
  ## Quick path
16
24
 
17
25
  ```bash