-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
singular-bookshelf-ajax.php
191 lines (156 loc) · 5.9 KB
/
singular-bookshelf-ajax.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
<?php
/**
* Template Name: Bookshelf AJAX
*
* Page template for rendering all the user's custom lists such as Follows,
* Reminders, and anything else. You can still add regular content here but
* the point of that is highly debatable.
*
* @package WordPress
* @subpackage Fictioneer
* @since 5.0.0
*/
// Only for logged-in users...
if ( ! is_user_logged_in() && ! get_option( 'fictioneer_enable_public_cache_compatibility' ) ) {
wp_safe_redirect( home_url() );
exit;
}
// Try to prevent caching of the page
if ( ! defined( 'DONOTCACHEPAGE' ) ) {
define( 'DONOTCACHEPAGE', true );
}
do_action( 'litespeed_control_set_nocache', 'nocache due to user-specific page.' );
// Setup
$current_tab = sanitize_key( $_GET['tab'] ?? '' );
$order = fictioneer_sanitize_query_var( $_GET['order'] ?? 0, ['desc', 'asc'], 'desc' );
$current_page = get_query_var( 'pg', 1 ) ?: 1;
$max_pages = 1;
$tabs = [];
// Follows?
if ( get_option( 'fictioneer_enable_follows' ) ) {
// Add to tabs
$tabs['follows'] = array(
'name' => fcntr( 'follows' ),
'classes' => [],
'action' => 'fictioneer_ajax_get_follows_list'
);
}
// Reminders?
if ( get_option( 'fictioneer_enable_reminders' ) ) {
// Add to tabs
$tabs['reminders'] = array(
'name' => fcntr( 'reminders' ),
'classes' => [],
'action' => 'fictioneer_ajax_get_reminders_list'
);
}
// Checkmarks?
if ( get_option( 'fictioneer_enable_checkmarks' ) ) {
// Add to tabs
$tabs['finished'] = array(
'name' => __( 'Finished', 'fictioneer' ),
'classes' => [],
'action' => 'fictioneer_ajax_get_finished_checkmarks_list'
);
}
// Return home if nothing to display
if ( count( $tabs ) < 1 ) {
wp_redirect( home_url() );
exit();
}
// Use first tab if queried tab is not available
if ( ! array_key_exists( $current_tab, $tabs ) ) {
$current_tab = array_key_first( $tabs );
}
// Select tab
$tabs[ $current_tab ]['classes'][] = '_current';
// Header
get_header( null, array( 'no_index' => 1 ) );
?>
<main id="main" class="main singular bookshelf">
<?php do_action( 'fictioneer_main', 'singular-bookmarks-ajax' ); ?>
<div class="main__wrapper">
<?php do_action( 'fictioneer_main_wrapper' ); ?>
<?php while ( have_posts() ) : the_post(); ?>
<?php
// Inner setup
$title = trim( get_the_title() );
$title = empty( $title ) ? __( 'Bookshelf', 'fictioneer' ) : $title;
$this_breadcrumb = [$title, get_the_permalink()];
$current_url = get_the_permalink();
$order_link = add_query_arg(
array(
'tab' => $current_tab,
'order' => $order === 'desc' ? 'asc' : 'desc'
),
$current_url
) . '#main';
?>
<article id="singular-<?php the_ID(); ?>" class="singular__article">
<?php if ( ! empty( $title ) ) : ?>
<header class="singular__header">
<h1 class="singular__title"><?php echo $title; ?></h1>
</header>
<?php endif; ?>
<?php if ( get_the_content() ) : ?>
<section class="singular__content content-section">
<?php the_content(); ?>
</section>
<?php endif; ?>
<?php if ( count( $tabs ) > 1 ) : ?>
<section id="tabs" class="bookshelf__tabs tabs-wrapper spacing-top">
<div class="tabs">
<?php foreach ( $tabs as $key => $value ) : ?>
<a href="<?php echo esc_url( add_query_arg( array( 'tab' => $key, 'order' => $order ), $current_url ) . '#main'); ?>" class="tabs__item <?php echo implode( ' ', $value['classes'] )?>">
<?php echo $value['name']; ?>
<?php if ( $current_tab == $key ) : ?>
<span class="item-number">(<i class="fa-solid fa-spinner fa-spin" style="--fa-animation-duration: .8s;"></i>)</span>
<?php endif; ?>
</a>
<?php endforeach; ?>
</div>
<div class="bookshelf__sorting">
<a class="list-button _order <?php echo $order == 'desc' ? '_on' : '_off'; ?>" href="<?php echo esc_url( $order_link ); ?>">
<i class="fa-solid fa-arrow-up-short-wide _off"></i>
<i class="fa-solid fa-arrow-down-wide-short _on"></i>
</a>
</div>
</section>
<?php endif; ?>
<section id="list" class="bookshelf__list container-inline-size">
<ul id="ajax-bookshelf-target" data-tab="<?php echo $current_tab; ?>" data-action="<?php echo $tabs[ $current_tab ]['action']; ?>" data-page="<?php echo get_query_var( 'pg', 1 ); ?>" data-order="<?php echo $order; ?>" class="card-list">
<?php for ( $i = 0; $i < 3; $i++ ) : ?>
<li class="card _skeleton">
<div class="card__body polygon">
<div class="card__header _large"><h3 class="card__title"></h3></div>
<div class="card__main _grid _large">
<div class="card__image cell-img"></div>
<div class="card__content cell-desc truncate _3-4"></div>
<div class="card__tag-list cell-tax"><span></span><span></span><span></span></div>
</div>
<div class="card__footer"><div class="card__left text-overflow-ellipsis"></div></div>
</div>
</li>
<?php endfor; ?>
</ul>
</section>
<footer class="singular__footer"><?php do_action( 'fictioneer_singular_footer' ); ?></footer>
</article>
<?php endwhile; ?>
</div>
<?php do_action( 'fictioneer_main_end', 'singular-bookmarks-ajax' ); ?>
</main>
<?php
// Footer arguments
$footer_args = array(
'post_type' => 'page',
'post_id' => get_the_ID(),
'breadcrumbs' => array(
[fcntr( 'frontpage' ), get_home_url()]
)
);
// Add current breadcrumb
$footer_args['breadcrumbs'][] = $this_breadcrumb;
// Get footer with breadcrumbs
get_footer( null, $footer_args );
?>