-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathread.php
224 lines (199 loc) · 6 KB
/
read.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
<?php
include("load.php");
?>
<html>
<head>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
<title><?=$_GET['s']?> <?php if($next) { echo "- Page " . $_GET['p']; }?></title>
<style type="text/css">
body {
background-color: #E9ECEF;
}
.hide {
display: none;
}
</style>
</head>
<body>
<main role="main">
<div class="jumbotron">
<div class="container">
<div class="row">
<div class="col-3 col-sm-3">
<a class="nav-link prev-link <?php if(!$prev) { ?>hide<?php } ?>" style="font-size: 1.2rem;" href="<?=$last?>"><< Last Page</a>
</div>
<div class="col-6 col-sm-6 text-center">
<h2 class="title-header"><?php echo $_GET['s']; ?></h2>
</div>
<div class="col-3 col-sm-3 text-right">
<a class="nav-link next-link <?php if(!$next) { ?>hide<?php } ?>" style="font-size: 1.2rem;" href="<?=$next?>">Next Page >></a>
</div>
</div>
</div>
<hr />
<div style="font-size: 2rem;" id="main-body">
<?=$r['text']?>
</div>
<hr />
<div class="container">
<div class="row">
<div class="col-3 col-sm-3">
<a class="nav-link prev-link <?php if(!$prev) { ?>hide<?php } ?>" style="font-size: 1.2rem;" href="<?=$last?>"><< Last Page</a>
</div>
<div class="col-6 col-sm-6 text-center">
<h2 class="title-header"><?php echo $_GET['s']; ?></h2>
</div>
<div class="col-3 col-sm-3 text-right">
<a class="nav-link next-link <?php if(!$next) { ?>hide<?php } ?>" style="font-size: 1.2rem;" href="<?=$next?>">Next Page >></a>
</div>
</div>
</div>
</div>
</main>
<script type="text/javascript" src="<?=$base?>jquery.min.js"></script>
<script type="text/javascript">
function loadList(back = false) {
$.get("<?=$base?>load.php?a=true", function(data, status) {
if(status == "success") {
s = true;
$("#main-body").fadeOut(400, function() {
$("#main-body").html(data);
}).fadeIn(400);
document.title = "Select a story";
if(back) {
console.log("replace");
history.replaceState(null, null, "<?=$base?>read/");
} else {
console.log("push");
history.pushState(null, null, "<?=$base?>read/");
}
$(".title-header").html("Select a story");
hideDirections();
}
});
return false;
}
function loadStoryList(story, back = false) {
$.get("<?=$base?>load.php?a=true&s=" + story, function(data, status) {
if(status == "success") {
s = true;
$("#main-body").fadeOut(400, function() {
$("#main-body").html(data);
}).fadeIn(400);
document.title = story;
if(back) {
console.log("replace");
history.replaceState(null, null, "<?=$base?>read/" + story);
} else {
console.log("push");
history.pushState(null, null, "<?=$base?>read/" + story);
}
$(".title-header").html(story);
hideDirections();
}
});
return false;
}
function loadMe(story, chapter, back = false) {
$.get("<?=$base?>load.php?a=true&s=" + story + "&p=" + chapter, function(data, status) {
if(status == "success") {
s = true;
$("#main-body").fadeOut(400, function() {
$("#main-body").html(data);
}).fadeIn(400);
document.title = story + " - Page " + chapter;
if(back) {
console.log("replace");
history.replaceState(null, null, "<?=$base?>read/" + story + "/" + chapter);
} else {
console.log("push");
history.pushState(null, null, "<?=$base?>read/" + story + "/" + chapter);
}
$(".title-header").html(story);
showDirections(story, chapter);
}
});
return false;
}
$(".next-link").click(function() {
const regex = /\/read\/([\w\W]+)\/([\d]+)/gm;
const str = window.location.pathname;
let m;
m = regex.exec(str);
var s = m[1].replace(/([\%20])+/gm, " ");
var p = parseInt(m[2]);
p = (p+1);
$.get("<?=$base?>load.php?a=true&s=" + s + "&p=" + p, function(data, status) {
if(status == "success") {
$("#main-body").fadeOut(400, function() {
$("#main-body").html(data);
}).fadeIn(400);
document.title = s + " - Page " + p;
history.pushState(null, null, "<?=$base?>read/" + s + "/" + p);
$(".title-header").html(s);
showDirections(s, p);
window.scrollTo(0,0);
}
});
return false;
});
$(".prev-link").click(function() {
const regex = /\/read\/([\w\W]+)\/([\d]+)/gm;
const str = window.location.pathname;
let m;
m = regex.exec(str);
var s = m[1].replace(/([\%20])+/gm, " ");
var p = parseInt(m[2]);
p = (p-1);
$.get("<?=$base?>load.php?a=true&s=" + s + "&p=" + p, function(data, status) {
if(status == "success") {
$("#main-body").fadeOut(400, function() {
$("#main-body").html(data);
}).fadeIn(400);
document.title = s + " - Page " + p;
history.pushState(null, null, "<?=$base?>read/" + s + "/" + p);
$(".title-header").html(s);
showDirections(s, p);
window.scrollTo(0,0);
}
});
return false;
});
function hideDirections() {
$(".next-link").addClass("hide");
$(".prev-link").addClass("hide");
}
function showDirections(story, chapter) {
next = (parseInt(chapter)+1);
prev = (parseInt(chapter)-1);
$(".next-link").attr("href", "<?=$base?>read/" + story + "/" + next).removeClass("hide");
if(prev > 0) {
$(".prev-link").attr("href", "<?=$base?>read/" + story + "/" + prev).removeClass("hide");
} else {
$(".prev-link").addClass("hide");
}
}
window.onpopstate = function(event) {
page = /\/read\/([a-zA-Z\%20]+)\/([\d]+)/gm;
story = /\/read\/([a-zA-Z\%20]+)/gm;
list = /\/read\/?/gm;
newloc = String(document.location);
let r;
if(page.test(newloc)) {
page.exec("");
r = page.exec(newloc);
r[1] = r[1].replace(/([\%20])+/gm, " ");
loadMe(r[1], r[2], true);
} else if(story.test(newloc)) {
story.exec("");
r = story.exec(newloc);
r[1] = r[1].replace(/([\%20])+/gm, " ");
loadStoryList(r[1], true);
} else if(list.test(newloc)) {
loadList(true);
} else {
history.back();
}
};
</script>
</body>