mirror of
https://github.com/we-promise/sure.git
synced 2026-04-09 07:14:47 +00:00
* [claudesquad] update from 'component-namespacing' on 18 Jul 25 07:23 EDT * [claudesquad] update from 'component-namespacing' on 18 Jul 25 07:30 EDT * Update stimulus controller references to use namespace * Fix remaining tests
50 lines
1.8 KiB
Plaintext
50 lines
1.8 KiB
Plaintext
<%# locals: (form:) %>
|
|
|
|
<% condition = form.object %>
|
|
<% rule = condition.rule %>
|
|
|
|
<li data-controller="rule--conditions" class="border border-secondary rounded-md p-4 space-y-3">
|
|
|
|
<%= form.hidden_field :condition_type, value: "compound" %>
|
|
|
|
<div class="flex items-center justify-between gap-2">
|
|
<div class="flex items-center gap-2">
|
|
<%# Show prefix on condition groups, except the first one %>
|
|
<div class="pl-2" data-condition-prefix>
|
|
<span class="font-medium uppercase text-xs">and</span>
|
|
</div>
|
|
<p class="text-sm text-secondary">match</p>
|
|
<%= form.select :operator, [["all", "and"], ["any", "or"]], { container_class: "w-fit" }, data: { rules_target: "operatorField" } %>
|
|
<p class="text-sm text-secondary">of the following conditions</p>
|
|
</div>
|
|
|
|
<%= icon(
|
|
"trash-2",
|
|
as_button: true,
|
|
size: "sm",
|
|
data: { action: "rule--conditions#remove" }
|
|
) %>
|
|
</div>
|
|
|
|
<%# Sub-condition template, used by Stimulus controller to add new sub-conditions dynamically %>
|
|
<template data-rule--conditions-target="subConditionTemplate">
|
|
<%= form.fields_for :sub_conditions, Rule::Condition.new(parent: condition, condition_type: rule.condition_filters.first.key), child_index: "IDX_CHILD_PLACEHOLDER" do |scf| %>
|
|
<%= render "rule/conditions/condition", form: scf, show_prefix: false %>
|
|
<% end %>
|
|
</template>
|
|
|
|
<ul data-rule--conditions-target="subConditionsList" class="space-y-3">
|
|
<%= form.fields_for :sub_conditions, condition.sub_conditions.select(&:persisted?) do |scf| %>
|
|
<%= render "rule/conditions/condition", form: scf, show_prefix: false %>
|
|
<% end %>
|
|
</ul>
|
|
|
|
<%= render DS::Button.new(
|
|
text: "Add condition",
|
|
leading_icon: "plus",
|
|
variant: "ghost",
|
|
type: "button",
|
|
data: { action: "rule--conditions#addSubCondition" }
|
|
) %>
|
|
</li>
|