2022-04-09 19:37:36 +09:00
|
|
|
{% extends "base.html" %} {% block content %}
|
|
|
|
|
|
|
|
|
|
<div class="input-group mb-2">
|
|
|
|
|
<input
|
|
|
|
|
id="input_search"
|
|
|
|
|
type="search"
|
|
|
|
|
class="form-control rounded"
|
|
|
|
|
placeholder="Search"
|
|
|
|
|
aria-label="Search"
|
|
|
|
|
aria-describedby="search-addon"
|
|
|
|
|
/>
|
|
|
|
|
<button id="btn_search" type="button" class="btn btn-outline-primary">
|
|
|
|
|
search
|
|
|
|
|
</button>
|
|
|
|
|
</div>
|
2022-04-06 23:45:15 +09:00
|
|
|
|
|
|
|
|
<div>
|
2022-04-09 19:37:36 +09:00
|
|
|
<div
|
|
|
|
|
id="anime_category"
|
|
|
|
|
class="btn-group"
|
|
|
|
|
role="group"
|
|
|
|
|
aria-label="Basic example"
|
|
|
|
|
>
|
|
|
|
|
<button id="ing" type="button" class="btn btn-success">방영중</button>
|
2022-04-10 14:24:23 +09:00
|
|
|
<button id="theater" type="button" class="btn btn-primary">극장판</button>
|
2022-04-09 19:37:36 +09:00
|
|
|
<button id="complete_anilist" type="button" class="btn btn-dark">
|
|
|
|
|
완결
|
|
|
|
|
</button>
|
|
|
|
|
</div>
|
|
|
|
|
<form id="airing_list_form">
|
|
|
|
|
<div id="airing_list"></div>
|
|
|
|
|
</form>
|
|
|
|
|
<form id="screen_movie_list_form">
|
|
|
|
|
<div id="screen_movie_list" class="container"></div>
|
|
|
|
|
</form>
|
|
|
|
|
<div class="text-center">
|
|
|
|
|
<div id="spinner" class="spinner-border" role="status">
|
|
|
|
|
<span class="sr-only">Loading...</span>
|
2022-04-06 23:45:15 +09:00
|
|
|
</div>
|
2022-04-09 19:37:36 +09:00
|
|
|
</div>
|
|
|
|
|
<form id="program_auto_form">
|
|
|
|
|
<div id="episode_list"></div>
|
|
|
|
|
</form>
|
|
|
|
|
</div>
|
|
|
|
|
<!--전체-->
|
|
|
|
|
|
|
|
|
|
<script
|
|
|
|
|
type="text/javascript"
|
|
|
|
|
src="https://cdn.jsdelivr.net/npm/lozad/dist/lozad.min.js"
|
|
|
|
|
></script>
|
2022-04-10 15:28:07 +09:00
|
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery.lazyload/1.9.1/jquery.lazyload.min.js" integrity="sha512-jNDtFf7qgU0eH/+Z42FG4fw3w7DM/9zbgNPe3wfJlCylVDTT3IgKW5r92Vy9IHa6U50vyMz5gRByIu4YIXFtaQ==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
|
2022-04-06 23:45:15 +09:00
|
|
|
<script type="text/javascript">
|
2022-04-09 19:37:36 +09:00
|
|
|
const package_name = "{{arg['package_name'] }}";
|
|
|
|
|
const sub = "{{arg['sub'] }}";
|
|
|
|
|
const ohli24_url = "{{arg['ohli24_url']}}";
|
|
|
|
|
let current_data = null;
|
2022-04-10 14:24:23 +09:00
|
|
|
let page = 1;
|
|
|
|
|
let next_page = Number
|
|
|
|
|
let current_cate = ''
|
2022-04-09 19:37:36 +09:00
|
|
|
|
|
|
|
|
const observer = lozad('.lozad', {
|
2022-04-10 14:24:23 +09:00
|
|
|
rootMargin: '10px 0px', // syntax similar to that of CSS Margin
|
|
|
|
|
threshold: 0.1, // ratio of element convergence
|
|
|
|
|
enableAutoReload: true // it will reload the new image when validating attributes changes
|
2022-04-09 19:37:36 +09:00
|
|
|
});
|
2022-04-10 14:24:23 +09:00
|
|
|
observer.observe();
|
2022-04-09 19:37:36 +09:00
|
|
|
|
|
|
|
|
|
|
|
|
|
const get_anime_list = (type, page) => {
|
|
|
|
|
console.log(`type: ${type}, page: ${page}`)
|
|
|
|
|
let url = ''
|
|
|
|
|
let data = {"page": page, "type": type}
|
|
|
|
|
|
|
|
|
|
switch (type) {
|
|
|
|
|
case 'ing':
|
|
|
|
|
url = '/' + package_name + '/ajax/'+sub+'/anime_list'
|
2022-04-10 14:24:23 +09:00
|
|
|
current_cate = 'ing'
|
2022-04-09 19:37:36 +09:00
|
|
|
break;
|
|
|
|
|
case 'movie':
|
2022-04-10 14:24:23 +09:00
|
|
|
url = '/' + package_name + '/ajax/'+sub+'/screen_movie_list'
|
|
|
|
|
current_cate = 'movie'
|
2022-04-09 19:37:36 +09:00
|
|
|
break;
|
2022-04-10 14:24:23 +09:00
|
|
|
case 'theater':
|
|
|
|
|
url = '/' + package_name + '/ajax/'+sub+'/anime_list'
|
|
|
|
|
current_cate = 'theater'
|
|
|
|
|
break;
|
|
|
|
|
case 'fin':
|
|
|
|
|
url = '/' + package_name + '/ajax/'+sub+'/complete_list'
|
|
|
|
|
current_cate = 'fin'
|
2022-04-09 19:37:36 +09:00
|
|
|
break
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$.ajax({
|
|
|
|
|
url: url,
|
|
|
|
|
type: "POST",
|
|
|
|
|
data: data,
|
|
|
|
|
cache: false,
|
|
|
|
|
dataType: "json",
|
|
|
|
|
success: (ret) => {
|
|
|
|
|
current_screen_movie_data = ret
|
|
|
|
|
console.log('ret::>', ret)
|
|
|
|
|
|
|
|
|
|
if (current_screen_movie_data !== '') {
|
|
|
|
|
if (type === "ing") {
|
2022-04-10 14:24:23 +09:00
|
|
|
make_airing_list(ret.data, page)
|
|
|
|
|
observer.observe();
|
|
|
|
|
} else if (type === "fin") {
|
|
|
|
|
make_screen_movie_list(ret.data, page)
|
|
|
|
|
observer.observe();
|
|
|
|
|
} else if (type === "theater") {
|
|
|
|
|
make_screen_movie_list(ret.data, page)
|
|
|
|
|
observer.observe();
|
2022-04-09 19:37:36 +09:00
|
|
|
} else {
|
2022-04-10 14:24:23 +09:00
|
|
|
make_screen_movie_list(ret.data, page)
|
2022-04-09 19:37:36 +09:00
|
|
|
}
|
|
|
|
|
div_visible = true
|
|
|
|
|
console.log(div_visible)
|
|
|
|
|
}
|
|
|
|
|
next_page = page + 1
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function make_airing_list(data, page) {
|
|
|
|
|
let str = ''
|
|
|
|
|
let tmp = ''
|
|
|
|
|
|
|
|
|
|
str += '<div>';
|
|
|
|
|
str += '<button type="button" class="btn btn-info">Page <span class="badge bg-warning">' + page + '</span></button>';
|
|
|
|
|
str += '</div>';
|
|
|
|
|
str += '<div id="inner_screen_movie" class="row infinite-scroll">';
|
|
|
|
|
for (let i in data.anime_list) {
|
|
|
|
|
|
|
|
|
|
tmp = '<div class="col-6 col-sm-4 col-md-3">';
|
|
|
|
|
tmp += '<div class="card">';
|
2022-04-10 15:28:07 +09:00
|
|
|
// tmp += '<img class="lozad" data-src="' + data.anime_list[i].image_link + '" />';
|
|
|
|
|
tmp += '<img class="lazyload" src="./static/img_loader_x200.svg" data-original="' + data.anime_list[i].image_link + '" />';
|
2022-04-09 19:37:36 +09:00
|
|
|
tmp += '<div class="card-body">'
|
2022-04-10 15:28:07 +09:00
|
|
|
// {#tmp += '<button id="code_button" data-code="' + data.episode[i].code + '" type="button" class="btn btn-primary code-button bootstrap-tooltip" data-toggle="button" data-tooltip="true" aria-pressed="true" autocomplete="off" data-placement="top">' +#}
|
2022-04-09 19:37:36 +09:00
|
|
|
// {# '<span data-tooltip-text="'+data.episode[i].title+'">' + data.episode[i].code + '</span></button></div>';#}
|
|
|
|
|
tmp += '<h5 class="card-title">' + data.anime_list[i].title + '</h5>';
|
|
|
|
|
tmp += '<p class="card-text">' + data.anime_list[i].code + '</p>';
|
|
|
|
|
tmp += '<a href="./request?code=' + data.anime_list[i].code + '" class="btn btn-primary cut-text">' + data.anime_list[i].title + '</a>';
|
|
|
|
|
tmp += '</div>';
|
|
|
|
|
tmp += '</div>';
|
|
|
|
|
tmp += '</div>';
|
|
|
|
|
str += tmp
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
str += '</div>';
|
|
|
|
|
str += m_hr_black();
|
|
|
|
|
|
|
|
|
|
if (page > 1) {
|
|
|
|
|
|
|
|
|
|
const temp = document.createElement('div')
|
|
|
|
|
temp.innerHTML = str;
|
|
|
|
|
while (temp.firstChild) {
|
|
|
|
|
document.getElementById("screen_movie_list").appendChild(temp.firstChild);
|
|
|
|
|
}
|
|
|
|
|
page++
|
|
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
|
|
document.getElementById("screen_movie_list").innerHTML = str;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2022-04-10 15:28:07 +09:00
|
|
|
$("img.lazyload").lazyload({
|
|
|
|
|
threshold : 10,
|
|
|
|
|
effect : "fadeIn",
|
|
|
|
|
});
|
|
|
|
|
|
2022-04-09 19:37:36 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function make_search_result_list(data, page) {
|
|
|
|
|
let str = ''
|
|
|
|
|
let tmp = ''
|
|
|
|
|
|
|
|
|
|
console.log(data.anime_list, page)
|
|
|
|
|
|
|
|
|
|
str += '<div>';
|
|
|
|
|
str += '<button type="button" class="btn btn-info">Page <span class="badge bg-warning">' + page + '</span></button>';
|
|
|
|
|
str += '</div>';
|
|
|
|
|
str += '<div id="inner_screen_movie" class="row infinite-scroll">';
|
|
|
|
|
for (let i in data.anime_list) {
|
2022-04-10 14:24:23 +09:00
|
|
|
if (data.anime_list[i].wr_id !== '') {
|
|
|
|
|
const re = /bo_table=([^&]+)/
|
|
|
|
|
const bo_table = data.anime_list[i].link.match(re)
|
|
|
|
|
// console.log(bo_table)
|
|
|
|
|
request_url = './request?code=' + data.anime_list[i].code + '&wr_id='+ data.anime_list[i].wr_id + '&bo_table='+bo_table[1]
|
|
|
|
|
} else {
|
|
|
|
|
request_url = './request?code=' + data.anime_list[i].code
|
|
|
|
|
}
|
2022-04-09 19:37:36 +09:00
|
|
|
|
|
|
|
|
tmp = '<div class="col-sm-4">';
|
|
|
|
|
tmp += '<div class="card">';
|
|
|
|
|
tmp += '<img class="card-img-top" src="' + data.anime_list[i].image_link + '" />';
|
|
|
|
|
tmp += '<div class="card-body">'
|
|
|
|
|
// {#tmp += '<button id="code_button" data-code="' + data.episode[i].code + '" type="button" class="btn btn-primary code-button bootstrap-tooltip" data-toggle="button" data-tooltip="true" aria-pressed="true" autocomplete="off" data-placement="top">' +#}
|
|
|
|
|
// {# '<span data-tooltip-text="'+data.episode[i].title+'">' + data.episode[i].code + '</span></button></div>';#}
|
|
|
|
|
tmp += '<h5 class="card-title">' + data.anime_list[i].title + '</h5>';
|
|
|
|
|
tmp += '<p class="card-text">' + data.anime_list[i].code + '</p>';
|
2022-04-10 14:24:23 +09:00
|
|
|
tmp += '<a href="'+request_url+'" class="btn btn-primary cut-text">' + data.anime_list[i].title + '</a>';
|
2022-04-09 19:37:36 +09:00
|
|
|
tmp += '</div>';
|
|
|
|
|
tmp += '</div>';
|
|
|
|
|
tmp += '</div>';
|
|
|
|
|
str += tmp
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
str += '</div>';
|
|
|
|
|
str += m_hr_black();
|
|
|
|
|
|
|
|
|
|
if (page > 1) {
|
|
|
|
|
|
|
|
|
|
const temp = document.createElement('div')
|
|
|
|
|
temp.innerHTML = str;
|
|
|
|
|
while (temp.firstChild) {
|
|
|
|
|
document.getElementById("screen_movie_list").appendChild(temp.firstChild);
|
|
|
|
|
}
|
|
|
|
|
page++
|
|
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
document.getElementById("screen_movie_list").innerHTML = str;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function make_screen_movie_list(data, page) {
|
|
|
|
|
let str = ''
|
|
|
|
|
let tmp = ''
|
|
|
|
|
|
|
|
|
|
console.log(data.anime_list, page)
|
|
|
|
|
|
|
|
|
|
str += '<div>';
|
|
|
|
|
str += '<button type="button" class="btn btn-info">Page <span class="badge bg-warning">' + page + '</span></button>';
|
|
|
|
|
str += '</div>';
|
|
|
|
|
str += '<div id="inner_screen_movie" class="row infinite-scroll">';
|
|
|
|
|
for (let i in data.anime_list) {
|
|
|
|
|
|
|
|
|
|
tmp = '<div class="col-sm-4">';
|
|
|
|
|
tmp += '<div class="card">';
|
|
|
|
|
tmp += '<img class="card-img-top" src="' + data.anime_list[i].image_link + '" />';
|
|
|
|
|
tmp += '<div class="card-body">'
|
|
|
|
|
tmp += '<h5 class="card-title">' + data.anime_list[i].title + '</h5>';
|
|
|
|
|
tmp += '<p class="card-text">' + data.anime_list[i].code + '</p>';
|
2022-04-10 14:24:23 +09:00
|
|
|
tmp += '<a href="./request?code=' + data.anime_list[i].code + '" class="btn btn-primary cut-text">' + data.anime_list[i].title + '</a>';
|
2022-04-09 19:37:36 +09:00
|
|
|
tmp += '</div>';
|
|
|
|
|
tmp += '</div>';
|
|
|
|
|
tmp += '</div>';
|
|
|
|
|
str += tmp
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
str += '</div>';
|
|
|
|
|
str += m_hr_black();
|
|
|
|
|
|
|
|
|
|
if (page > 1) {
|
|
|
|
|
|
|
|
|
|
const temp = document.createElement('div')
|
|
|
|
|
temp.innerHTML = str;
|
|
|
|
|
while (temp.firstChild) {
|
|
|
|
|
document.getElementById("screen_movie_list").appendChild(temp.firstChild);
|
|
|
|
|
}
|
|
|
|
|
page++
|
|
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
document.getElementById("screen_movie_list").innerHTML = str;
|
|
|
|
|
}
|
|
|
|
|
|
2022-04-10 15:28:07 +09:00
|
|
|
$("img.lazyload").lazyload({
|
|
|
|
|
threshold : 10,
|
|
|
|
|
effect : "fadeIn",
|
|
|
|
|
});
|
|
|
|
|
|
2022-04-09 19:37:36 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$(document).ready(function(){
|
|
|
|
|
|
|
|
|
|
// if ( "{{arg['ohli24_current_code']}}" !== "" ) {
|
|
|
|
|
// document.getElementById("code").value = "{{arg['ohli24_current_code']}}";
|
|
|
|
|
// // 값이 공백이 아니면 분석 버튼 계속 누름
|
|
|
|
|
// document.getElementById("analysis_btn").click();
|
|
|
|
|
// }
|
|
|
|
|
$("#input_search").keydown(function (key) {
|
|
|
|
|
if (key.keyCode === 13) {
|
|
|
|
|
// alert("엔터키를 눌렀습니다.");
|
|
|
|
|
$("#btn_search").trigger("click");
|
|
|
|
|
}
|
|
|
|
|
})
|
2022-04-06 23:45:15 +09:00
|
|
|
|
2022-04-09 19:37:36 +09:00
|
|
|
const observer = lozad('.lozad', {
|
|
|
|
|
rootMargin: '10px 0px', // syntax similar to that of CSS Margin
|
|
|
|
|
threshold: 0.1, // ratio of element convergence
|
|
|
|
|
enableAutoReload: true // it will reload the new image when validating attributes changes
|
|
|
|
|
});
|
|
|
|
|
observer.observe();
|
2022-04-06 23:45:15 +09:00
|
|
|
|
2022-04-09 19:37:36 +09:00
|
|
|
});
|
2022-04-06 23:45:15 +09:00
|
|
|
|
2022-04-09 19:37:36 +09:00
|
|
|
$("body").on("click", "#btn_search", function (e) {
|
|
|
|
|
e.preventDefault();
|
|
|
|
|
let query = $("#input_search").val();
|
|
|
|
|
console.log(query);
|
2022-04-06 23:45:15 +09:00
|
|
|
|
2022-04-09 19:37:36 +09:00
|
|
|
if ($("#input_search").val() === "") {
|
|
|
|
|
console.log("search keyword nothing");
|
|
|
|
|
return false;
|
2022-04-06 23:45:15 +09:00
|
|
|
}
|
|
|
|
|
|
2022-04-09 19:37:36 +09:00
|
|
|
$.ajax({
|
|
|
|
|
url: "/" + package_name + "/ajax/" + sub + "/search",
|
|
|
|
|
type: "POST",
|
|
|
|
|
cache: false,
|
|
|
|
|
data: { query: query },
|
|
|
|
|
// dataType: "json",
|
|
|
|
|
contentType: "application/x-www-form-urlencoded; charset=UTF-8",
|
|
|
|
|
success: function (ret) {
|
|
|
|
|
if (ret.ret) {
|
|
|
|
|
console.log('ret:::', ret)
|
|
|
|
|
make_search_result_list(ret.data, 1);
|
2022-04-06 23:45:15 +09:00
|
|
|
} else {
|
2022-04-09 19:37:36 +09:00
|
|
|
$.notify("<strong>분석 실패</strong><br>" + ret.log, {
|
|
|
|
|
type: "warning",
|
|
|
|
|
});
|
2022-04-06 23:45:15 +09:00
|
|
|
}
|
2022-04-09 19:37:36 +09:00
|
|
|
},
|
2022-04-06 23:45:15 +09:00
|
|
|
});
|
2022-04-09 19:37:36 +09:00
|
|
|
});
|
|
|
|
|
|
|
|
|
|
$('#anime_category #ing').on("click", function() {
|
2022-04-10 14:24:23 +09:00
|
|
|
// {#console.log(this.id)#}
|
|
|
|
|
let spinner = document.getElementById('spinner');
|
|
|
|
|
spinner.style.visibility = 'visible';
|
|
|
|
|
get_anime_list("ing", 1)
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
$('#anime_category #complete_anilist').on("click", function() {
|
|
|
|
|
// {#console.log(this.id)#}
|
|
|
|
|
let spinner = document.getElementById('spinner');
|
|
|
|
|
spinner.style.visibility = 'visible';
|
|
|
|
|
get_anime_list("fin", 1)
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
$('#anime_category #theater').on("click", function() {
|
2022-04-09 19:37:36 +09:00
|
|
|
// {#console.log(this.id)#}
|
|
|
|
|
let spinner = document.getElementById('spinner');
|
|
|
|
|
spinner.style.visibility = 'visible';
|
2022-04-10 14:24:23 +09:00
|
|
|
get_anime_list("theater", 1)
|
2022-04-09 19:37:36 +09:00
|
|
|
})
|
|
|
|
|
|
|
|
|
|
// 분석 버튼 클릭시 호출
|
|
|
|
|
$("body").on('click', '#analysis_btn', function(e) {
|
|
|
|
|
e.preventDefault();
|
|
|
|
|
const code = document.getElementById("code").value
|
|
|
|
|
console.log(code)
|
|
|
|
|
$.ajax({
|
|
|
|
|
url: '/' + package_name + '/ajax/' + sub + '/analysis',
|
|
|
|
|
type: "POST",
|
|
|
|
|
cache: false,
|
|
|
|
|
data: {code: code},
|
|
|
|
|
dataType: "json",
|
|
|
|
|
success: function (ret) {
|
|
|
|
|
if (ret.ret === 'success' && ret.data != null) {
|
|
|
|
|
// console.log(ret.code)
|
|
|
|
|
console.log(ret.data)
|
|
|
|
|
make_program(ret.data)
|
|
|
|
|
} else {
|
|
|
|
|
$.notify('<strong>분석 실패</strong><br>' + ret.log, {type: 'warning'});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$("body").on('click', '#go_ohli24_btn', function(e){
|
|
|
|
|
e.preventDefault();
|
|
|
|
|
window.open("{{arg['ohli24_url']}}", "_blank");
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
$("body").on('click', '#all_check_on_btn', function(e){
|
|
|
|
|
e.preventDefault();
|
|
|
|
|
$('input[id^="checkbox_"]').bootstrapToggle('on')
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
$("body").on('click', '#all_check_off_btn', function(e){
|
|
|
|
|
e.preventDefault();
|
|
|
|
|
$('input[id^="checkbox_"]').bootstrapToggle('off')
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
$("body").on('click', '#add_queue_btn', function(e){
|
|
|
|
|
e.preventDefault();
|
|
|
|
|
data = current_data.episode[$(this).data('idx')];
|
|
|
|
|
console.log('data:::>', data)
|
|
|
|
|
$.ajax({
|
|
|
|
|
url: '/' + package_name + '/ajax/' + sub + '/add_queue',
|
|
|
|
|
type: "POST",
|
|
|
|
|
cache: false,
|
|
|
|
|
data: {data:JSON.stringify(data)},
|
|
|
|
|
dataType: "json",
|
|
|
|
|
success: function (data) {
|
|
|
|
|
if (data.ret == 'enqueue_db_append' || data.ret == 'enqueue_db_exist') {
|
|
|
|
|
$.notify('<strong>다운로드 작업을 추가 하였습니다.</strong>', {type: 'success'});
|
|
|
|
|
} else if (data.ret == 'queue_exist') {
|
|
|
|
|
$.notify('<strong>이미 큐에 있습니다. 삭제 후 추가하세요.</strong>', {type: 'warning'});
|
|
|
|
|
} else if (data.ret == 'db_completed') {
|
|
|
|
|
$.notify('<strong>DB에 완료 기록이 있습니다.</strong>', {type: 'warning'});
|
|
|
|
|
} else {
|
|
|
|
|
$.notify('<strong>추가 실패</strong><br>' + ret.log, {type: 'warning'});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
// const observer = lozad();
|
|
|
|
|
// const el = document.querySelector('img');
|
|
|
|
|
// const observer = lozad(el); // passing a `NodeList` (e.g. `document.querySelectorAll()`) is also valid
|
|
|
|
|
// observer.observe();
|
2022-04-10 14:24:23 +09:00
|
|
|
const loadNextAnimes = (cate, page) => {
|
|
|
|
|
spinner.style.display = "block";
|
|
|
|
|
const data = { type: cate, page: String(page) };
|
|
|
|
|
let url = ''
|
|
|
|
|
switch (cate) {
|
|
|
|
|
case 'ing':
|
|
|
|
|
url = '/' + package_name + '/ajax/'+sub+'/anime_list'
|
|
|
|
|
current_cate = 'ing'
|
|
|
|
|
break;
|
|
|
|
|
case 'movie':
|
|
|
|
|
url = '/' + package_name + '/ajax/'+sub+'/screen_movie_list'
|
|
|
|
|
current_cate = 'movie'
|
|
|
|
|
break;
|
|
|
|
|
case 'theater':
|
|
|
|
|
url = '/' + package_name + '/ajax/'+sub+'/anime_list'
|
|
|
|
|
current_cate = 'theater'
|
|
|
|
|
break;
|
|
|
|
|
case 'fin':
|
|
|
|
|
url = '/' + package_name + '/ajax/'+sub+'/complete_list'
|
|
|
|
|
current_cate = 'fin'
|
|
|
|
|
break
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fetch(url, {
|
|
|
|
|
method: "POST",
|
|
|
|
|
cache: "no-cache",
|
|
|
|
|
headers: {
|
|
|
|
|
"Content-Type": "application/x-www-form-urlencoded",
|
|
|
|
|
},
|
|
|
|
|
body: new URLSearchParams(data),
|
|
|
|
|
})
|
|
|
|
|
.then((res) => res.json())
|
|
|
|
|
.then((response) => {
|
|
|
|
|
console.log("Success:", JSON.stringify(response));
|
|
|
|
|
// {#imagesContainer.appendChild()#}
|
|
|
|
|
console.log("return page:::> ", response.page);
|
|
|
|
|
// {#page = response.page#}
|
|
|
|
|
make_screen_movie_list(response.data, response.page);
|
2022-04-10 15:28:07 +09:00
|
|
|
|
2022-04-10 14:24:23 +09:00
|
|
|
page++;
|
|
|
|
|
next_page++;
|
|
|
|
|
})
|
|
|
|
|
.catch((error) => console.error("Error:", error));
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const onScroll = (e) => {
|
|
|
|
|
console.dir(e.target.scrollingElement.scrollHeight);
|
|
|
|
|
const { scrollTop, scrollHeight, clientHeight } = e.target.scrollingElement;
|
|
|
|
|
if (Math.round(scrollHeight - scrollTop) <= clientHeight) {
|
|
|
|
|
document.getElementById("spinner").style.display = "block";
|
|
|
|
|
console.log("loading");
|
|
|
|
|
console.log("now page::> ", page);
|
|
|
|
|
console.log("next_page::> ", next_page);
|
|
|
|
|
loadNextAnimes(current_cate, next_page);
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const debounce = (func, delay) => {
|
|
|
|
|
let timeoutId = null;
|
|
|
|
|
return (...args) => {
|
|
|
|
|
clearTimeout(timeoutId);
|
|
|
|
|
timeoutId = setTimeout(func.bind(null, ...args), delay);
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
document.addEventListener("scroll", debounce(onScroll, 300));
|
2022-04-06 23:45:15 +09:00
|
|
|
</script>
|
2022-04-09 19:37:36 +09:00
|
|
|
<style>
|
|
|
|
|
button.code-button {
|
|
|
|
|
min-width: 82px !important;
|
|
|
|
|
}
|
|
|
|
|
.tooltip {
|
|
|
|
|
position: relative;
|
|
|
|
|
display: block;
|
|
|
|
|
}
|
|
|
|
|
@media (min-width: 576px) {
|
|
|
|
|
.container {
|
|
|
|
|
max-width: 100%;
|
|
|
|
|
}
|
|
|
|
|
}
|
2022-04-07 16:06:36 +09:00
|
|
|
|
2022-04-09 19:37:36 +09:00
|
|
|
[data-tooltip-text]:hover {
|
|
|
|
|
position: relative;
|
|
|
|
|
}
|
2022-04-07 16:06:36 +09:00
|
|
|
|
2022-04-09 19:37:36 +09:00
|
|
|
[data-tooltip-text]:after {
|
|
|
|
|
-webkit-transition: bottom 0.3s ease-in-out, opacity 0.3s ease-in-out;
|
|
|
|
|
-moz-transition: bottom 0.3s ease-in-out, opacity 0.3s ease-in-out;
|
|
|
|
|
transition: bottom 0.3s ease-in-out, opacity 0.3s ease-in-out;
|
2022-04-07 16:06:36 +09:00
|
|
|
|
2022-04-09 19:37:36 +09:00
|
|
|
background-color: rgba(0, 0, 0, 0.8);
|
2022-04-07 16:06:36 +09:00
|
|
|
|
2022-04-09 19:37:36 +09:00
|
|
|
-webkit-box-shadow: 0px 0px 3px 1px rgba(50, 50, 50, 0.4);
|
|
|
|
|
-moz-box-shadow: 0px 0px 3px 1px rgba(50, 50, 50, 0.4);
|
|
|
|
|
box-shadow: 0px 0px 3px 1px rgba(50, 50, 50, 0.4);
|
2022-04-07 16:06:36 +09:00
|
|
|
|
2022-04-09 19:37:36 +09:00
|
|
|
-webkit-border-radius: 5px;
|
|
|
|
|
-moz-border-radius: 5px;
|
|
|
|
|
border-radius: 5px;
|
2022-04-07 16:06:36 +09:00
|
|
|
|
2022-04-09 19:37:36 +09:00
|
|
|
color: #ffffff;
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
margin-bottom: 10px;
|
|
|
|
|
padding: 7px 12px;
|
|
|
|
|
position: absolute;
|
|
|
|
|
width: auto;
|
|
|
|
|
min-width: 50px;
|
|
|
|
|
max-width: 300px;
|
|
|
|
|
word-wrap: break-word;
|
2022-04-07 16:06:36 +09:00
|
|
|
|
2022-04-09 19:37:36 +09:00
|
|
|
z-index: 9999;
|
2022-04-07 16:06:36 +09:00
|
|
|
|
2022-04-09 19:37:36 +09:00
|
|
|
opacity: 0;
|
|
|
|
|
left: -9999px;
|
2022-04-07 16:06:36 +09:00
|
|
|
top: 90%;
|
|
|
|
|
|
2022-04-09 19:37:36 +09:00
|
|
|
content: attr(data-tooltip-text);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[data-tooltip-text]:hover:after {
|
|
|
|
|
top: 230%;
|
|
|
|
|
left: 0;
|
|
|
|
|
opacity: 1;
|
|
|
|
|
}
|
|
|
|
|
[data-tooltip-text]:hover {
|
|
|
|
|
position: relative;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[data-tooltip-text]:after {
|
|
|
|
|
-webkit-transition: bottom 0.3s ease-in-out, opacity 0.3s ease-in-out;
|
|
|
|
|
-moz-transition: bottom 0.3s ease-in-out, opacity 0.3s ease-in-out;
|
|
|
|
|
transition: bottom 0.3s ease-in-out, opacity 0.3s ease-in-out;
|
|
|
|
|
|
|
|
|
|
background-color: rgba(0, 0, 0, 0.8);
|
|
|
|
|
|
|
|
|
|
-webkit-box-shadow: 0px 0px 3px 1px rgba(50, 50, 50, 0.4);
|
|
|
|
|
-moz-box-shadow: 0px 0px 3px 1px rgba(50, 50, 50, 0.4);
|
|
|
|
|
box-shadow: 0px 0px 3px 1px rgba(50, 50, 50, 0.4);
|
|
|
|
|
|
|
|
|
|
-webkit-border-radius: 5px;
|
|
|
|
|
-moz-border-radius: 5px;
|
|
|
|
|
border-radius: 5px;
|
|
|
|
|
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
margin-bottom: 10px;
|
|
|
|
|
padding: 7px 12px;
|
|
|
|
|
position: absolute;
|
|
|
|
|
width: auto;
|
|
|
|
|
min-width: 50px;
|
|
|
|
|
max-width: 300px;
|
|
|
|
|
word-wrap: break-word;
|
|
|
|
|
|
|
|
|
|
z-index: 9999;
|
|
|
|
|
|
|
|
|
|
opacity: 0;
|
|
|
|
|
left: -9999px;
|
|
|
|
|
top: -210% !important;
|
|
|
|
|
|
|
|
|
|
content: attr(data-tooltip-text);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[data-tooltip-text]:hover:after {
|
|
|
|
|
top: 130%;
|
|
|
|
|
left: 0;
|
|
|
|
|
opacity: 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#airing_list {
|
2022-04-07 16:06:36 +09:00
|
|
|
display: none;
|
2022-04-09 19:37:36 +09:00
|
|
|
}
|
2022-04-07 16:06:36 +09:00
|
|
|
|
2022-04-09 19:37:36 +09:00
|
|
|
.cut-text {
|
2022-04-07 16:06:36 +09:00
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
width: 100%;
|
2022-04-09 19:37:36 +09:00
|
|
|
}
|
2022-04-07 16:06:36 +09:00
|
|
|
|
2022-04-09 19:37:36 +09:00
|
|
|
#screen_movie_list {
|
|
|
|
|
margin-top: 10px;
|
|
|
|
|
}
|
|
|
|
|
</style>
|
|
|
|
|
{% endblock %}
|