Skip to content

Commit ec1a2c3

Browse files
committed
page index with ellipses
1 parent 926eb9e commit ec1a2c3

File tree

5 files changed

+105
-10
lines changed

5 files changed

+105
-10
lines changed

lib/pageindex.app

+22-10
Original file line numberDiff line numberDiff line change
@@ -30,25 +30,36 @@ module lib/pageindex
3030
}
3131
}
3232

33+
function boolLog(x: String): Bool { log(x); return true; }
34+
3335
function showIndex(i: Int, idx: Int, pages: Int, max: Int, middle: Int, end: Int): Bool {
34-
return pages <= max
35-
|| idx <= end + 1 + middle && i <= end + 1 + 2 * middle
36-
|| idx >= max - end + 1 - middle && i >= max - end + 1 - 2 * middle
37-
|| i <= end
38-
|| i > max - end
39-
|| (i > idx - middle && i <= idx + middle);
36+
log("i:" + i + " idx:" + idx + " pages:" + pages + " max:" + max + " middle: " + middle + " end:" + end);
37+
38+
if(pages <= max && boolLog("a:" + i + " pages: " + pages + " max: " + max)) {
39+
return true;
40+
} else { if(idx <= end + 1 + middle) {
41+
return i <= end + 1 + 2 * middle && boolLog("b:" + i)
42+
|| i > pages - end && boolLog("e:" + i);
43+
} else { if(idx >= pages - end + 1 - middle) {
44+
return i >= pages - end + 1 - 2 * middle && boolLog("c:" + i)
45+
|| i <= end && boolLog("d:" + i);
46+
} else {
47+
return i <= end && boolLog("d:" + i)
48+
|| i > pages - end && boolLog("e:" + i)
49+
|| (i > idx - middle && i <= idx + middle) && boolLog("f:" + i);
50+
} } }
4051
}
4152

4253
function showGap(i: Int, idx: Int, pages: Int, max: Int, middle: Int, end: Int): Bool {
4354
return pages > max
4455
&& ((i == end + 1 && idx > end + 1 + middle)
45-
|| (i == max - end - 1 && idx < max - end + 1 - middle));
56+
|| (i == pages - end - 1 && idx < pages - end + 1 - middle));
4657
}
4758

4859
define pageIndex(index : Int, count : Int, perpage : Int, max: Int, end: Int) {
4960
var idx := max(1,index)
5061
var pages : Int := 1 + count/perpage
51-
var middle := max - 2 * (end + 1)
62+
var middle := (max - (2 * (end + 1)))/2
5263
container[class="pageIndex"] {
5364
if(pages > 1) {
5465
if(idx > 1) {
@@ -64,8 +75,9 @@ module lib/pageindex
6475
} else {
6576
container[class="indexEntryActive"]{ pageIndexLink(i, i + "") }
6677
}
67-
} else { if(showGap(i, idx, pages, max, middle, end)) { "..." }
68-
}
78+
} else { if(showGap(i, idx, pages, max, middle, end)) {
79+
container[class="indexEntryGap"]{ "..." }
80+
} }
6981
}
7082

7183
if(idx < pages) {

stylesheets/ie.css

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
/* Welcome to Compass. Use this file to write IE specific override styles.
2+
* Import this file using the following HTML or equivalent:
3+
* <!--[if IE]>
4+
* <link href="/stylesheets/ie.css" media="screen, projection" rel="stylesheet" type="text/css" />
5+
* <![endif]--> */

stylesheets/print.css

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
/* Welcome to Compass. Use this file to define print styles.
2+
* Import this file using the following HTML or equivalent:
3+
* <link href="/stylesheets/print.css" media="print" rel="stylesheet" type="text/css" /> */

stylesheets/screen.css

+69
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
/* Welcome to Compass.
2+
* In this file you should write your main styles. (or centralize your imports)
3+
* Import this file using the following HTML or equivalent:
4+
* <link href="/stylesheets/screen.css" media="screen, projection" rel="stylesheet" type="text/css" /> */
5+
/* line 17, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
6+
html, body, div, span, applet, object, iframe,
7+
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
8+
a, abbr, acronym, address, big, cite, code,
9+
del, dfn, em, img, ins, kbd, q, s, samp,
10+
small, strike, strong, sub, sup, tt, var,
11+
b, u, i, center,
12+
dl, dt, dd, ol, ul, li,
13+
fieldset, form, label, legend,
14+
table, caption, tbody, tfoot, thead, tr, th, td,
15+
article, aside, canvas, details, embed,
16+
figure, figcaption, footer, header, hgroup,
17+
menu, nav, output, ruby, section, summary,
18+
time, mark, audio, video {
19+
margin: 0;
20+
padding: 0;
21+
border: 0;
22+
font-size: 100%;
23+
font: inherit;
24+
vertical-align: baseline;
25+
}
26+
27+
/* line 20, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
28+
body {
29+
line-height: 1;
30+
}
31+
32+
/* line 22, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
33+
ol, ul {
34+
list-style: none;
35+
}
36+
37+
/* line 24, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
38+
table {
39+
border-collapse: collapse;
40+
border-spacing: 0;
41+
}
42+
43+
/* line 26, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
44+
caption, th, td {
45+
text-align: left;
46+
font-weight: normal;
47+
vertical-align: middle;
48+
}
49+
50+
/* line 28, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
51+
q, blockquote {
52+
quotes: none;
53+
}
54+
/* line 101, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
55+
q:before, q:after, blockquote:before, blockquote:after {
56+
content: "";
57+
content: none;
58+
}
59+
60+
/* line 30, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
61+
a img {
62+
border: none;
63+
}
64+
65+
/* line 115, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
66+
article, aside, details, figcaption, figure,
67+
footer, header, hgroup, menu, nav, section {
68+
display: block;
69+
}

stylesheets/style.css

+6
Original file line numberDiff line numberDiff line change
@@ -479,6 +479,12 @@ span.indexEntryCurrent {
479479
background: #657b83;
480480
color: #eee8d5; }
481481

482+
span.indexEntryGap {
483+
border: 1px solid #bbbbbb;
484+
color: #bbbbbb;
485+
padding: 4px;
486+
margin: 0 6px 0 0; }
487+
482488
span.indexEntryActive a {
483489
border: 1px solid #657b83;
484490
text-decoration: none;

0 commit comments

Comments
 (0)