docbrown/app/views/admin/spaces/index.html.erb
Rajat Talesra 93f73636c7
Post bootstrap changes - remove headings from admin.scss (#19019)
* h1 and h2 design fixes

* h2 redesign fixes

* Removed incorrect code

* Revert incorrect test code

* h3 heading redesign

* h4,h4,h5 headings redesign

* Minor design fixes

* Fixed all heading styles

* Test case fix

* Revert incorrect if condition

* Revert incorrect if condition

* Removed non required div
2023-02-02 15:52:35 +05:30

50 lines
2.6 KiB
Text

<div class="crayons-card p-7 mb-7">
<header class="mb-7">
<div class="flex justify-between gap-4 items-center">
<h1 class="crayons-title fw-heavy">Spaces</h1>
<button type="button" class="c-btn crayons-tooltip__activator opacity-100" disabled>
Create space
<span data-testid="tooltip" class="crayons-tooltip__content">
Coming soon. We're working on it.
</span>
</button>
</div>
<p class="color-secondary fs-l">Configure permissions for your different types of posts.</p>
</header>
<%# Note: With data remote false, we submit the form via a non-XHR request (e.g. boring old web). %>
<%= form_with model: @space, url: admin_space_path(@space), method: :put, data: { remote: false, confirm: "Are you sure?" }, class: "crayons-card p-6 flex flex-col gap-6" do |form| %>
<div class="flex items-center gap-4">
<span class="p-3 crayons-card shrink-0">
<%= crayons_icon_tag(:folder) %>
</span>
<div>
<h2 class="crayons-subtitle-1">Uncategorized Posts</h2>
<p class="color-secondary lh-tight">All of your uncategorized posts will be in this space.</p>
</div>
</div>
<label for="space_limit_post_creation_to_admins" class="flex justify-between gap-8 items-start">
<div>
<p class="fw-medium">Make this space comment-only for members</p>
<p class="fs-s color-secondary">Only admins can publish posts. Other members can only react to and comment on posts.</p>
</div>
<span>
<%= form.check_box :limit_post_creation_to_admins, class: "c-toggle box-content p-05" %>
</span>
</label>
<div class="fs-s color-secondary">
<p><%= crayons_icon_tag("info") %> When you turn on comment-only for this space, it also means that for the time being…</p>
<ul>
<li>Active <a href="https://admin.forem.com/docs/advanced-customization/config/campaigns">campaigns</a> will be hidden.</li>
<li>Only admins who are part of an <a href="https://admin.forem.com/docs/managing-your-community/organization-pages#overview.">organization</a> will be able to post on behalf of that organization.</li>
<li>It will take about <%= pluralize(AsyncInfoController::NUMBER_OF_MINUTES_FOR_CACHE_EXPIRY, "minute") %> for <abbr title="User Interface">UI</abbr> changes to take effect for all members. <a href="https://developers.forem.com/technical-overview/caching">Learn more about Caching.</a></li>
</ul>
</div>
<div>
<%= form.button "Save", type: "submit", class: "c-btn c-btn--primary" %>
</div>
<% end %>
</div>