aboutsummaryrefslogtreecommitdiff
path: root/app/templates/todo/topics.html
blob: 5d3e7f91c2bd413a088446ca4e03bcce5296b4e5 (plain)
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
{% extends "base.html" %}

{% block title %}
Topics to be Added
{% endblock %}

{% block content %}
	<div class="float-right btn-group">
		{% if current_user.rank.atLeast(current_user.rank.EDITOR) %}
			{% if n >= 10000 %}
				<a class="btn btn-primary"
						href="{{ url_for('todo_topics_page', q=query, show_discarded=show_discarded, n=100, sort=sort_by) }}">
					Paginated List
				</a>
			{% else %}
				<a class="btn btn-primary"
						href="{{ url_for('todo_topics_page', q=query, show_discarded=show_discarded, n=10000, sort=sort_by) }}">
					Unlimited List
				</a>
			{% endif %}
		{% endif %}
		{% if sort_by == "name" %}
			<a class="btn btn-primary"
					href="{{ url_for('todo_topics_page', q=query, show_discarded=show_discarded, n=n, sort='date') }}">
				Sort by date
			</a>
		{% else %}
			<a class="btn btn-primary"
					href="{{ url_for('todo_topics_page', q=query, show_discarded=show_discarded, n=n, sort='name') }}">
				Sort by name
			</a>
		{% endif %}
		<a class="btn btn-primary" href="{{ url_for('todo_topics_page', q=query, show_discarded=not show_discarded, n=n, sort=sort_by) }}">
			{% if not show_discarded %}
				Show
			{% else %}
				Hide
			{% endif %}

			Discarded Topics
		</a>
	</div>

	<h1>Topics to be Added</h1>

	<p>
		{{ total - topic_count }} / {{ total }} topics have been added as packages to CDB.
		{{ topic_count }} remaining.
	</p>
	<div class="progress">
		{% set perc = 100 * (total - topic_count) /  total %}
		<div class="progress-bar bg-success" role="progressbar"
			style="width: {{ perc }}%" aria-valuenow="{{ perc }}" aria-valuemin="0" aria-valuemax="100"></div>
	</div>

	<form method="GET" action="{{ url_for('todo_topics_page') }}" class="my-4">
		<input class="" name="q" type="text" placeholder="Search topics" value="{{ query or ''}}">
		<input class="btn btn-secondary my-2 my-sm-0 mr-sm-2" type="submit" value="Search" />
	</form>

	{% from "macros/topics.html" import render_topics_table %}
	{{ render_topics_table(topics, show_discard=True) }}

	<ul class="pagination mt-4">
		<li class="page-item {% if not prev_url %}disabled{% endif %}">
			<a class="page-link" {% if prev_url %}href="{{ prev_url }}"{% endif %}>&laquo;</a>
		</li>
		{% for n in range(1, page_max+1) %}
			<li class="page-item {% if n == page %}active{% endif %}">
				<a class="page-link"
						href="{{ url_for('todo_topics_page', page=n) }}">
					{{ n }}
				</a>
			</li>
		{% endfor %}
		<li class="page-item {% if not next_url %}disabled{% endif %}">
			<a class="page-link" {% if next_url %}href="{{ next_url }}"{% endif %}>&raquo;</a>
		</li>
	</ul>
{% endblock %}

{% block scriptextra %}
	<script>
		var csrf_token = "{{ csrf_token() }}";
	</script>
	<script>
		$(".topic-discard").click(function() {
			var ele = $(this);
			var tid = ele.attr("data-tid");
			var discard = !ele.parent().parent().hasClass("discardtopic");
			fetch(new Request("{{ url_for('topic_set_discard') }}?tid=" + tid +
					"&discard=" + (discard ? "true" : "false"), {
				method: "post",
				credentials: "same-origin",
				headers: {
					"Accept": "application/json",
					"X-CSRFToken": csrf_token,
				},
			})).then(function(response) {
				response.text().then(function(txt) {
					console.log(JSON.parse(txt));
					if (JSON.parse(txt).discarded) {
						ele.parent().parent().addClass("discardtopic");
						ele.removeClass("btn-danger");
						ele.addClass("btn-success");
						ele.text("Show");
					} else {
						ele.parent().parent().removeClass("discardtopic");
						ele.removeClass("btn-success");
						ele.addClass("btn-danger");
						ele.text("Discard");
					}
				}).catch(console.log)
			}).catch(console.log)
		});
	</script>
{% endblock %}