-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.cursorrules
222 lines (163 loc) · 6.1 KB
/
.cursorrules
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
# Cursor Rules for Code Writing
# General
## ALWAYS be aware of the exact database structure and data attributes from db/schema.rb. When generating controllers and views, NEVER include attributes that don't exist in /db/schema.rb.
For example if the schema.rb shows this
```
create_table "users", force: :cascade do |t|
t.string "first_name", default: "", null: false
end
```
Never try to output `@user.last_name` in a view, because `last_name` doesn't exist in the schema.
# Sign out links
Do sign out links like this exactly
```
<% if user_signed_in? %>
<%= link_to destroy_user_session_path, class: "ui-button --minimal", "hx-boost": false do %>
Log out
<%= inline_svg_tag("heroicons/arrow-right-on-rectangle.svg", class: "w-5 h-5 ml-2") %>
<% end %>
<% end %>
```
# Routes
- Neve use the `resources :myresource` pattern in routes. Always use the explicit patterns shown below.
Add new get routes like this (swap "events" for the relevant model)
```
get '/events',
to: 'events#index',
as: 'events'
```
Add new start routes like this (swap "events" for the relevant model)
```
get '/events/start',
to: 'events#start',
as: 'start_event'
```
Add new combined get/post routes like this (swap "events" for the relevant model)
```
match '/events/:shortcode/edit',
to: 'events#edit',
as: 'edit_event',
via: [:get,:post]
```
# Controllers
A start controller action should look like this
```
def start
@event = Event.new
if @event.save(validate:false)
redirect_to edit_event_path(@event.shortcode)
end
end
```
An edit controller action should look like this.
```
def edit
@event = Event.find_by(shortcode:params[:shortcode])
if request.post?
@event.update(event_params)
if @event.save
flash.now[:toasts] = [
{ title: "Event Saved", message: "We've saved your event"}
]
end
end
end
```
If a controller action should respond as a modal, add a before action like so:
```
before_action :renders_in_modal
```
# Commands
On hearing "make this a modal" or "This should be a modal" make sure the following structure is added
At the top:
```
<div class="--modal-top-section">
<div class="flex justify-between w-full">
<div class="ui-titlepair">
<div class="--title">
The History of Coffee
</div>
</div>
<div class="ui-button --rounded --minimal" :click="modalOpen=false;modalLoading=true">
<%= inline_svg_tag('heroicons/x-mark.svg') %>
</div>
</div>
</div>
```
Inside the form at the bottom:
```
<div class="--modal-bottom-section">
<div class="flex w-full justify-end">
<%= f.button class: "ui-button --solid" do |button| %>
Continue
<%= inline_svg_tag("misc/spinner.svg", class:"shown-while-loading") %>
<% end %>
</div>
</div>
```
# Views
### The only css classes that should exist in html.erb files should be either A) Tailwind classes, or B) Classes that appear in base-styles.html.erb
### The only paths that should exist in html. erb files should exist in config/routes.rb. Before writing views, check the file at config/routes.rb - only write paths that exist in this file into the view.
- A view that loads in a modal should have a title and a close modal button. See the first 13 or so lines of `app/views/h1rails/demos/coffee.html.erb` for an example.
## Icons
1. When suggesting icons, only suggest icons that exist in `/app/assets/icons/heroicons` and `/app/assets/icons/misc`.
3. Include loading spinner icons with the class "shown-while-loading" for all buttons.
4. Use icons from the Heroicons set for all buttons.
## Form Controllers
- When generating controllers that serve forms, do the following:
- Create a controller action at `/start` which creates the initial object.
- Creat a controller action for edit which responds to both get and post methods.
- On successful save, redirect to the most relevant path and include `close_modal:true` in the params.
- On successful save, create a toast notification. See the `demos_controller.rb` file for an example.
## Form Views
- Use `form_for` to create forms. Don't use `form_with`.
- Always add class `ui-form` to the form.
- Basically, use the following structure to start forms.
```
<%= form_for @pet, url: edit_pet_path(@pet), method: "{method}", html: { class: "ui-form" } do |form| %>
```
## CSS Classes from base-styles/0.0.4.css
### UI Components
- `ui-form`: Use for form elements
- `ui-button`: Base button class
- `ui-link`: Use for styled links
- `ui-box`: Container with box styling
- `ui-modal`: For modal dialogs
- `ui-table`: Styled tables
- `ui-toggle`: Toggle switch component
- `ui-tooltip`: For tooltips
- `ui-tabnav`: Tab navigation
- `ui-titlepair`: Title and description pairs
- `ui-styled-text`: For styled text content
- `ui-shimmer`: Loading placeholder animation
### Layout and Spacing
- `ui-container`: Main content wrapper with responsive widths
- `ui-body`: Full-height body styling
### Form Elements
- `ui-floating-input`: Floating label input fields
- `ui-search-input`: Styled search input
### Utility Classes
- `ui-view-transition`: For view transition animations
## Specific Component Guidelines
1. Use `ui-button` class for buttons, with modifiers like `--solid`, `--minimal`, or `--rounded`.
2. Implement tooltips using `ui-tooltip--{position}` classes (e.g., `ui-tooltip--top`, `ui-tooltip--bottom`).
3. For modals, use the `ui-modal` class with `--visible` for showing the modal.
4. Style text content with `ui-styled-text` for consistent typography.
5. Use `ui-shimmer` for loading placeholder animations.
## Icons & Buttons
Use this structure for form submit buttons
```
<%= f.button class: "ui-button --solid" do |button| %>
Continue
<%= inline_svg_tag("heroicons/arrow-right.svg", class: "hidden-while-loading") %>
<%= inline_svg_tag("misc/spinner.svg", class:"shown-while-loading") %>
<% end %>
```
Use this structure for other links
```
<%= link_to "Continue", "#", class: "ui-button --solid", :"hx-indicator" => "this" do %>
Continue
<%= inline_svg_tag("heroicons/arrow-right.svg", class: "hidden-while-loading") %>
<%= inline_svg_tag("misc/spinner.svg", class:"shown-while-loading") %>
<% end %>
```