| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201 |
- @using bitforum.Helpers;
- @{
- ViewData["Title"] = "배너 위치";
- var bannerPositions = ViewBag.BannerPositions as List<bitforum.Models.Page.Banner.BannerPosition>;
- var total = ViewBag.Total.ToString("N0");
- }
- <partial name="~/Views/Page/Banner/_Navbar.cshtml" />
- <div class="container-fluid">
- <h3>@ViewData["Title"]</h3>
- <hr />
- <partial name="_StatusMessage" />
- <div class="row g-2 align-items-end">
- <div class="col">
- Total : @total
- </div>
- <div class="col text-end">
- <button type="button" id="btnAdd" class="btn btn-sm btn-primary" form="fAdminWrite">추가</button>
- <button type="submit" id="btnSave" class="btn btn-sm btn-success" form="fAdminWrite">저장</button>
- </div>
- </div>
- <div class="table-responsive">
- <form id="fAdminWrite" asp-action="Save" method="post" accept-charset="utf-8" autocomplete="off"></form>
- <table class="table table-striped table-bordered table-hover mt-3">
- <caption>
- 배너 위치에 등록된 배너가 있다면 삭제가 불가합니다.<br/>
- 배너 위치를 삭제하려면 등록된 배너를 먼저 삭제해주세요.
- </caption>
- <colgroup>
- <col width="5%" />
- <col width="*" />
- <col width="*" />
- <col width="*" />
- <col width="*" />
- <col width="*" />
- <col width="*" />
- <col width="*" />
- </colgroup>
- <thead>
- <tr>
- <th>ID</th>
- <th>Code</th>
- <th>위치 명</th>
- <th>배너 수</th>
- <th>사용</th>
- <th>등록일시</th>
- <th>수정일시</th>
- <th>비고</th>
- </tr>
- </thead>
- <tbody id="bannerPositions">
- @if (bannerPositions == null || !bannerPositions.Any())
- {
- <tr>
- <td colspan="8">No Data.</td>
- </tr>
- }
- else
- {
- @foreach (var row in bannerPositions)
- {
- var index = bannerPositions.IndexOf(row);
- <tr class="align-middle text-center">
- <td>
- <input type="text" name="request[@index].ID" readonly class="form-control-plaintext text-center" required form="fAdminWrite" value="@row.ID" />
- </td>
- <td>
- <input type="text" name="request[@index].Code" class="form-control" maxlength="30" required form="fAdminWrite" value="@row.Code" />
- </td>
- <td>
- <input type="text" name="request[@index].Subject" class="form-control" maxlength="255" required form="fAdminWrite" value="@row.Subject" />
- </td>
- <td>@row.BannerItem.Count</td>
- <td>
- <div class="form-check-inline">
- <input class="form-check-input" type="checkbox" id="request_@(index)_IsActive" name="request[@index].IsActive" checked="@bannerPositions[index].IsActive" form="fAdminWrite" value="true" />
- <label class="form-check-label" for="request_@(index)_IsActive">
- 사용
- </label>
- </div>
- </td>
- <td><input type="text" name="request[@index].CreatedAt" readonly class="form-control-plaintext text-center" form="fAdminWrite" value="@row.CreatedAt.GetDateAt()" /></td>
- <td><input type="text" name="request[@index].UpdatedAt" readonly class="form-control-plaintext text-center" form="fAdminWrite" value="@row.UpdatedAt.GetDateAt()" /></td>
- <td>
- <button type="button" class="btn btn-sm btn-danger btn-delete">삭제</button>
- </td>
- </tr>
- }
- }
- </tbody>
- </table>
- </div>
- </div>
- <script type="module">
- $(function() {
- let $bannerPositions = $("#bannerPositions");
- let total = Number(@total);
- // 추가
- $(document).on("click", "#btnAdd", function() {
- if (total <= 0) {
- $bannerPositions.empty();
- }
- let tableRow = `
- <tr>
- <td>-</td>
- <td>
- <input type="text" name="request[${total}].Code" class="form-control" maxlength="30" required form="fAdminWrite" />
- </td>
- <td>
- <input type="text" name="request[${total}].Subject" class="form-control" maxlength="255" required form="fAdminWrite" />
- </td>
- <td>-</td>
- <td>
- <div class="form-check-inline">
- <input class="form-check-input" type="checkbox" id="request_${total}_IsActive" name="request[${total}].IsActive" checked form="fAdminWrite" value="true" />
- <label class="form-check-label" for="request_${total}_IsActive">
- 사용
- </label>
- </div>
- </td>
- <td>-</td>
- <td>-</td>
- <td>
- <button type="button" class="btn btn-danger btn-sm btn-delete">삭제</button>
- </td>
- </tr>
- `;
- $bannerPositions.append(tableRow);
- total++;
- recalculateIndices();
- });
- // 삭제
- $(document).on("click", "button.btn-delete", function(e) {
- e.target.closest("tr").remove();
- total--;
- if (total <= 0) {
- $bannerPositions.append(
- `<tr><td colspan="8">No Data.</td></tr>`
- );
- total = 0;
- } else {
- recalculateIndices();
- }
- });
- // 저장
- $(document).on("click", "#btnSave", function() {
- if (confirm("저장 하시겠습니까?")) {
- let form = document.getElementById("fAdminWrite");
- if (form.checkValidity()) { // HTML5 폼 검증 수행
- form.submit();
- } else {
- form.reportValidity();
- }
- }
- return false;
- });
- // 인덱스 재계산 함수
- function recalculateIndices() {
- $bannerPositions.find("tr").each(function(index, tr) {
- $(tr)
- .find("input, label")
- .each(function() {
- let name = $(this).attr("name");
- let id = $(this).attr("id");
- if (name) {
- $(this).attr("name", name.replace(/\[\d+\]/, `[${index}]`));
- }
- if (id) {
- $(this).attr("id", id.replace(/_\d+_/, `_${index}_`));
- }
- });
- // 인덱스 기반으로 라벨의 `for` 속성도 수정
- $(tr)
- .find("label")
- .each(function() {
- let labelFor = $(this).attr("for");
- if (labelFor) {
- $(this).attr("for", labelFor.replace(/_\d+_/, `_${index}_`));
- }
- });
- });
- }
- });
- </script>
|