-
Notifications
You must be signed in to change notification settings - Fork 56
/
Copy path_pagination.scss
96 lines (88 loc) · 4.25 KB
/
_pagination.scss
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
// Pagination
// scss-docs-start pagination-mixin
@mixin pagination-size($padding-y, $padding-x, $font-size, $border-radius) {
--#{$prefix}pagination-padding-x: #{$padding-x};
--#{$prefix}pagination-padding-y: #{$padding-y};
@include rfs($font-size, --#{$prefix}pagination-font-size);
--#{$prefix}pagination-border-radius: #{$border-radius};
}
// scss-docs-end pagination-mixin
// scss-docs-start pagination-max-items-mixin
// Boosted mod
// The pagination list ((m) items) should display exactly (n) items and is built in 3 parts:
// - the begining of the list is made of the first (n/2) items
// - the end of the list is made of the last (n/2) items (or (n/2 - 1) depending on the active element)
// - the last part of the list is made of the active element
// - n should be greater than 0:
// - between 0 and 6 included, it displays the smallest version
// - above 7 included, it displays at least two arrows, the first, the active and the last and might have 2 three dots
@mixin pagination-max-items($pagination-max-items: 12) {
display: none;
@if $pagination-max-items >= 7 {
// this determines the number of displayed numbers required at the beginning and end of a list
$half-first-items: $pagination-max-items * .5;
$half-last-items: $pagination-max-items * .5;
@if $pagination-max-items % 2 != 0 {
$half-first-items: ($pagination-max-items - 1) * .5;
$half-last-items: ($pagination-max-items + 1) * .5;
}
// rule 0: don't display any item unless they are part of the following list:
// - the active item
// - the (n/2 - 1) first items
// - the (n/2) last items
// - the (n/2) first item where m equals n
&.active,
&:nth-child(-n + #{$half-first-items - 1}),
&:nth-last-child(-n + #{$half-last-items}),
&:nth-child(#{$half-first-items}):nth-last-child(#{$half-last-items + 1}) {
display: flex;
}
// rule 1: display `...` on:
// - the (n/2 - 1) first item if not the last child
// - the active item when it's:
// - not in (n/2 - 1) first items
// - not in (n/2) last items
// - not the (n/2) first item when m equals n
&:nth-child(#{$half-first-items - 1}):not(:last-child),
&:nth-child(#{$half-first-items - 1}) ~ .active:not(:nth-last-child(-n + #{$half-last-items})):not(:nth-child(#{$half-first-items}):nth-last-child(#{$half-last-items + 1})) {
&::after {
display: flex;
align-items: center;
justify-content: center;
width: calc((var(--#{$prefix}pagination-icon-size) + var(--#{$prefix}pagination-border-width) * 2)); // stylelint-disable-line function-disallowed-list
content: "...";
background-color: var(--#{$prefix}pagination-bg);
}
}
// rule 2: cover the three dots when:
// - the (n/2) first item when:
// - it's the active item
// - it's in a list where m is less or equal n
&.active:nth-child(#{$half-first-items}),
&:nth-child(#{$half-first-items}):nth-last-child(-n + #{$half-last-items + 1}) {
margin-left: calc(-1 * (var(--#{$prefix}pagination-icon-size) + var(--#{$prefix}pagination-border-width) * 2)); // stylelint-disable-line function-disallowed-list
}
// rule 3: remove some extra items due to three dots:
// - the (n/2) last item when it follows the active item situated between the (n/2 - 1) first item and (n/2 + 1) last item (excluded) and m doesn't equal n
// - the (n/2 - 1) last item when it follows the active item situated between the (n/2) first item and (n/2) last item (excluded)
&:nth-child(#{$half-first-items}) ~ .active:not(:nth-last-child(#{$half-last-items})) ~ :nth-last-child(#{$half-last-items - 1}),
&:nth-child(#{$half-first-items - 1}) ~ .active:not(:nth-child(#{$half-first-items}):nth-last-child(#{$half-last-items + 1})) ~ :nth-last-child(#{$half-last-items}) {
display: none;
}
} @else {
// smallest version of the pagination
&.active,
&:first-child,
&:last-child {
display: flex;
}
&.active .page-link {
--bs-pagination-padding-y: 0;
--bs-pagination-padding-x: .625rem;
color: var(--#{$prefix}pagination-color);
background-color: var(--#{$prefix}pagination-bg);
border-color: transparent;
}
}
}
// scss-docs-end pagination-max-items-mixin