QoL frontend fixes
This commit is contained in:
parent
aa95418b70
commit
d368fb8bc0
2
base.inc
2
base.inc
@ -50,7 +50,7 @@
|
|||||||
</header>
|
</header>
|
||||||
<main>{% content() %}</main>
|
<main>{% content() %}</main>
|
||||||
<footer>
|
<footer>
|
||||||
<p>Running Ikibooru v0.1</p>
|
<p>Running <a href="https://mid.net.ua/ikibooru.html">Ikibooru</a> v0.0.0.1</p>
|
||||||
</footer>
|
</footer>
|
||||||
<script defer src="/static/datetimes.js"></script>
|
<script defer src="/static/datetimes.js"></script>
|
||||||
</body>
|
</body>
|
||||||
|
13
index.html.l
13
index.html.l
@ -67,16 +67,25 @@
|
|||||||
var box = document.getElementById("alltags")
|
var box = document.getElementById("alltags")
|
||||||
var datags = []
|
var datags = []
|
||||||
ajax.responseText.split("\n").slice(0, -1).forEach(function(line) {
|
ajax.responseText.split("\n").slice(0, -1).forEach(function(line) {
|
||||||
|
var tagID = line.split(",")[0]
|
||||||
|
|
||||||
var newtag = document.createElement("div")
|
var newtag = document.createElement("div")
|
||||||
newtag.classList.toggle("tag")
|
newtag.classList.toggle("tag")
|
||||||
newtag.classList.toggle("tc" + line.split(",")[2])
|
newtag.classList.toggle("tc" + line.split(",")[2])
|
||||||
newtag.setAttribute("data-tagid", line.split(",")[0])
|
newtag.setAttribute("data-tagid", tagID)
|
||||||
newtag.setAttribute("data-tc", line.split(",")[2])
|
newtag.setAttribute("data-tc", line.split(",")[2])
|
||||||
newtag.innerText = line.split(",")[1]
|
newtag.innerText = line.split(",")[1]
|
||||||
|
|
||||||
datags.push(newtag)
|
datags.push(newtag)
|
||||||
})
|
})
|
||||||
datags.sort(function(a, b) {return a.getAttribute("data-tc") - b.getAttribute("data-tc")})
|
datags.sort(function(a, b) {return a.getAttribute("data-tc") - b.getAttribute("data-tc")})
|
||||||
datags.forEach(function(x) { box.insertBefore(x, null) })
|
datags.forEach(function(x) {
|
||||||
|
var newa = document.createElement("a")
|
||||||
|
newa.setAttribute("href", "/search?n=&t=" + x.getAttribute("data-tagid") + "&h");
|
||||||
|
newa.appendChild(x);
|
||||||
|
|
||||||
|
box.insertBefore(newa, null)
|
||||||
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
ajax.send()
|
ajax.send()
|
||||||
|
@ -55,7 +55,7 @@
|
|||||||
</ul>
|
</ul>
|
||||||
<div>
|
<div>
|
||||||
{% for _,tag in pairs(DB.getobjtags(obj.id)) do %}
|
{% for _,tag in pairs(DB.getobjtags(obj.id)) do %}
|
||||||
<div class="tag tc{{ tag.category }}" data-tagid="{{ tag.id }}">{{ Escapes.htmlescape(tag.name) }}</div>
|
<a href="/search?n=&t={{ tag.id }}&o"><div class="tag tc{{ tag.category }}" data-tagid="{{ tag.id }}">{{ Escapes.htmlescape(tag.name) }}</div></a>
|
||||||
{% end %}
|
{% end %}
|
||||||
</div>
|
</div>
|
||||||
{% if verified and verified.privs >= DB.USER_PRIVS_APPROVED then %}
|
{% if verified and verified.privs >= DB.USER_PRIVS_APPROVED then %}
|
||||||
|
@ -22,6 +22,7 @@ div.tag {
|
|||||||
border: 1px solid blue;
|
border: 1px solid blue;
|
||||||
padding: 0.1em;
|
padding: 0.1em;
|
||||||
margin: 0.1em;
|
margin: 0.1em;
|
||||||
|
color: black;
|
||||||
}
|
}
|
||||||
div.tag.selected {
|
div.tag.selected {
|
||||||
border-width: 2px;
|
border-width: 2px;
|
||||||
|
Loading…
Reference in New Issue
Block a user