完成iframe适配,支持js插入
This commit is contained in:
parent
7bb80e84f6
commit
06cad663e0
|
@ -38,3 +38,4 @@ venv.bak/
|
|||
idea/
|
||||
|
||||
# etc
|
||||
config.toml
|
|
@ -0,0 +1,18 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Test Document</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="sacn_comments"></div>
|
||||
<script src="http://127.0.0.1:8020/loader.js"></script>
|
||||
<script>
|
||||
load_comments("/test")
|
||||
</script>
|
||||
</body>
|
||||
|
||||
</html>
|
|
@ -125,9 +125,14 @@ async def init(key: str):
|
|||
return 0
|
||||
|
||||
|
||||
@app.get("/loader.js")
|
||||
async def loader():
|
||||
return templates.TemplateResponse("loader.js", {"request": {}})
|
||||
|
||||
|
||||
@app.get("/{route:path}")
|
||||
async def show(route: str = "", session: Annotated[str | None, Cookie()] = None):
|
||||
if (await check_token(session) != ""):
|
||||
if (session is not None and await check_token(session) != ""):
|
||||
islogin = 1
|
||||
else:
|
||||
islogin = 0
|
||||
|
|
|
@ -0,0 +1,11 @@
|
|||
window.addEventListener('message', function (event) {
|
||||
if (event.data.sacn_height) {
|
||||
const iframe = document.getElementById('sacn_comments');
|
||||
iframe.style.height = event.data.sacn_height + 'px';
|
||||
}
|
||||
});
|
||||
function load_comments(route) {
|
||||
var tmpl = `<iframe src="http://127.0.0.1:8020` + route + `" frameborder="0" scrolling="no" width="100%" height="800px"
|
||||
id="sacn_comments">Comments</iframe>`
|
||||
document.getElementById('sacn_comments').outerHTML = tmpl;
|
||||
}
|
|
@ -18,6 +18,15 @@
|
|||
padding: 0;
|
||||
min-width: 320px;
|
||||
max-width: 700px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.root {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
min-width: 320px;
|
||||
max-width: 700px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.main-card {
|
||||
|
@ -139,6 +148,7 @@
|
|||
</head>
|
||||
|
||||
<body>
|
||||
<div class="root">
|
||||
<div id="comment_tmpl" class="hides"> <!-- 评论模板 -->
|
||||
<mdui-card variant="outlined" class="comment-card">
|
||||
<div class="comment-user"> <!-- 用户 -->
|
||||
|
@ -175,7 +185,7 @@
|
|||
<div class="show-more-card"> <!-- 显示更多 -->
|
||||
<mdui-chip class="show-more-chip" elevated onclick="next_page()">点我显示更多</mdui-chip>
|
||||
</div>
|
||||
</body>
|
||||
</div>
|
||||
<script>
|
||||
setTimeout(function () {
|
||||
var hashs = window.location.hash
|
||||
|
@ -219,6 +229,13 @@
|
|||
document.getElementById("insert_pos").insertAdjacentHTML('beforebegin', virtualelem.innerHTML);
|
||||
comment_id++;
|
||||
}
|
||||
setTimeout(function () {
|
||||
window.location.hash = "h=" + document.getElementsByClassName("root")[0].offsetHeight;
|
||||
if (window.parent) {
|
||||
window.parent.postMessage({ sacn_height: document.getElementsByClassName("root")[0].offsetHeight }, '*');
|
||||
}
|
||||
}, 0);
|
||||
|
||||
}
|
||||
function show_more(ids) {
|
||||
if (document.getElementById(ids).getElementsByClassName("comment-text")[0].classList.contains("comment-show-all")) {
|
||||
|
@ -274,4 +291,6 @@
|
|||
next_page()
|
||||
</script>
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
Loading…
Reference in New Issue