08c5abfbdb
We were always quering auto_close_at https://37s.fizzy.37signals.com/collections/2/cards/743
23 lines
1.0 KiB
Plaintext
23 lines
1.0 KiB
Plaintext
<div hidden class="bubble bubble--<%= card.engagement_status %>"
|
|
data-controller="bubble" data-action="turbo:morph-element->bubble#update"
|
|
data-bubble-reminder-before-value="<%= Card::ENTROPY_REMINDER_BEFORE.in_days.to_i %>"
|
|
data-bubble-closes-at-value="<%= card.entropy_cleaned_at.iso8601 %>"
|
|
data-bubble-entropy-action-value="<%= card_entropy_action(card) %>">
|
|
<svg viewBox="0 0 200 100">
|
|
<path id="top-half" fill="transparent" d="M 20,100 A 80,80 0 0,1 180,100" />
|
|
<text text-anchor="middle" fill="currentColor">
|
|
<textPath href="#top-half" startOffset="50%" dominant-baseline="middle" data-bubble-target="top"></textPath>
|
|
</text>
|
|
</svg>
|
|
|
|
<span class="bubble__number" data-bubble-target="days">
|
|
</span>
|
|
|
|
<svg viewBox="0 0 200 100">
|
|
<path id="bottom-half" d="M 20,0 A 80,80 0 0,0 180,0" fill="transparent" />
|
|
<text text-anchor="middle" fill="currentColor">
|
|
<textPath href="#bottom-half" startOffset="50%" dominant-baseline="middle" data-bubble-target="bottom"></textPath>
|
|
</text>
|
|
</svg>
|
|
</div>
|