75 lines
2.6 KiB
HTML
75 lines
2.6 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="vi">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>eBay Listing — Google Sheet Loader</title>
|
|
<link rel="stylesheet" href="styles.css" />
|
|
</head>
|
|
<body>
|
|
<div class="app">
|
|
<header class="app__header">
|
|
<h1>Danh sách sản phẩm</h1>
|
|
<p class="app__subtitle">Đọc Google Sheet → xem danh sách → đẩy sang AU / US</p>
|
|
</header>
|
|
|
|
<!-- Khu vực nhập & load file Google Sheet -->
|
|
<section class="loader">
|
|
<input
|
|
id="sheetUrl"
|
|
type="text"
|
|
class="loader__input"
|
|
placeholder="Dán link Google Sheet (đã share công khai) hoặc Spreadsheet ID..."
|
|
autocomplete="off"
|
|
value="https://docs.google.com/spreadsheets/d/146fVacsayB8OYUaUtaVN9l6BE0-5G2jQJS6xPtPhXzw/edit?gid=632973171#gid=632973171"
|
|
/>
|
|
<input
|
|
id="sheetName"
|
|
type="text"
|
|
class="loader__input loader__input--small"
|
|
placeholder="Tên tab (tuỳ chọn)"
|
|
autocomplete="off"
|
|
/>
|
|
<button id="loadBtn" class="btn btn--primary">
|
|
<span class="btn__label">Load</span>
|
|
<span class="btn__spinner" aria-hidden="true"></span>
|
|
</button>
|
|
</section>
|
|
|
|
<div id="status" class="status" role="status" aria-live="polite"></div>
|
|
|
|
<!-- Thanh tìm kiếm -->
|
|
<section class="toolbar" id="toolbar" hidden>
|
|
<input
|
|
id="searchInput"
|
|
type="search"
|
|
class="toolbar__search"
|
|
placeholder="Tìm theo Model, Title, Condition..."
|
|
autocomplete="off"
|
|
/>
|
|
<span id="resultCount" class="toolbar__count"></span>
|
|
</section>
|
|
|
|
<!-- Danh sách sản phẩm (scroll) -->
|
|
<section class="list" id="listWrap" hidden>
|
|
<div class="list__head">
|
|
<div class="cell cell--model textCenter">Model</div>
|
|
<div class="cell cell--cond textCenter">Condition</div>
|
|
<div class="cell cell--condeb textCenter">Condition eBay</div>
|
|
<div class="cell cell--title textCenter">Title</div>
|
|
<div class="cell cell--num textCenter">Giá AUD</div>
|
|
<div class="cell cell--num textCenter">Giá USD</div>
|
|
<div class="cell cell--pkg textCenter">Package Contain</div>
|
|
<div class="cell cell--actions textCenter">Listing</div>
|
|
</div>
|
|
<div class="list__body" id="listBody"></div>
|
|
</section>
|
|
</div>
|
|
|
|
<!-- config.local.js nạp TRƯỚC: cung cấp window.APP_SECRETS (token). Không commit. -->
|
|
<script src="config.local.js"></script>
|
|
<script src="config.js"></script>
|
|
<script src="app.js"></script>
|
|
</body>
|
|
</html>
|