Browse Source

tablesort

ansible-setup-and-deploy
Alex 6 years ago
parent
commit
6c557585f4
  1. BIN
      .DS_Store
  2. 11
      app/static/css/style.css
  3. 8
      app/static/js/app.js
  4. 122
      app/static/js/jquery.metadata.js
  5. 1031
      app/static/js/jquery.tablesorter.js
  6. 4
      app/static/js/jquery.tablesorter.min.js
  7. 7
      app/templates/base.html
  8. 4
      app/templates/show_books.html

BIN
.DS_Store

Binary file not shown.

11
app/static/css/style.css

@ -71,15 +71,24 @@ border-spacing:0; /* Removes the cell spacing via CSS */
.library_table th{
font-size: 21px;
cursor: pointer;
}
th.headerSortUp{
background-color: #E8E8E8!important;
}
.library_table tr:hover{
th.headerSortDown{
background-color: #E8E8E8!important;
}
.library_table tbody tr:hover{
background-color: #E8E8E8!important;
}
.library_table .title_col{
font-size: 21px;
padding-left: 10px;
}
.library_table .author_col{

8
app/static/js/app.js

@ -124,3 +124,11 @@ marquee.each(function() {
};
mar.data('interval', setInterval(mar.marquee, 10));
});
$(document).ready(function()
{
$("#table").tablesorter();
}
);

122
app/static/js/jquery.metadata.js

@ -0,0 +1,122 @@
/*
* Metadata - jQuery plugin for parsing metadata from elements
*
* Copyright (c) 2006 John Resig, Yehuda Katz, Jörn Zaefferer, Paul McLanahan
*
* Dual licensed under the MIT and GPL licenses:
* http://www.opensource.org/licenses/mit-license.php
* http://www.gnu.org/licenses/gpl.html
*
* Revision: $Id$
*
*/
/**
* Sets the type of metadata to use. Metadata is encoded in JSON, and each property
* in the JSON will become a property of the element itself.
*
* There are three supported types of metadata storage:
*
* attr: Inside an attribute. The name parameter indicates *which* attribute.
*
* class: Inside the class attribute, wrapped in curly braces: { }
*
* elem: Inside a child element (e.g. a script tag). The
* name parameter indicates *which* element.
*
* The metadata for an element is loaded the first time the element is accessed via jQuery.
*
* As a result, you can define the metadata type, use $(expr) to load the metadata into the elements
* matched by expr, then redefine the metadata type and run another $(expr) for other elements.
*
* @name $.metadata.setType
*
* @example <p id="one" class="some_class {item_id: 1, item_label: 'Label'}">This is a p</p>
* @before $.metadata.setType("class")
* @after $("#one").metadata().item_id == 1; $("#one").metadata().item_label == "Label"
* @desc Reads metadata from the class attribute
*
* @example <p id="one" class="some_class" data="{item_id: 1, item_label: 'Label'}">This is a p</p>
* @before $.metadata.setType("attr", "data")
* @after $("#one").metadata().item_id == 1; $("#one").metadata().item_label == "Label"
* @desc Reads metadata from a "data" attribute
*
* @example <p id="one" class="some_class"><script>{item_id: 1, item_label: 'Label'}</script>This is a p</p>
* @before $.metadata.setType("elem", "script")
* @after $("#one").metadata().item_id == 1; $("#one").metadata().item_label == "Label"
* @desc Reads metadata from a nested script element
*
* @param String type The encoding type
* @param String name The name of the attribute to be used to get metadata (optional)
* @cat Plugins/Metadata
* @descr Sets the type of encoding to be used when loading metadata for the first time
* @type undefined
* @see metadata()
*/
(function($) {
$.extend({
metadata : {
defaults : {
type: 'class',
name: 'metadata',
cre: /({.*})/,
single: 'metadata'
},
setType: function( type, name ){
this.defaults.type = type;
this.defaults.name = name;
},
get: function( elem, opts ){
var settings = $.extend({},this.defaults,opts);
// check for empty string in single property
if ( !settings.single.length ) settings.single = 'metadata';
var data = $.data(elem, settings.single);
// returned cached data if it already exists
if ( data ) return data;
data = "{}";
if ( settings.type == "class" ) {
var m = settings.cre.exec( elem.className );
if ( m )
data = m[1];
} else if ( settings.type == "elem" ) {
if( !elem.getElementsByTagName )
return undefined;
var e = elem.getElementsByTagName(settings.name);
if ( e.length )
data = $.trim(e[0].innerHTML);
} else if ( elem.getAttribute != undefined ) {
var attr = elem.getAttribute( settings.name );
if ( attr )
data = attr;
}
if ( data.indexOf( '{' ) <0 )
data = "{" + data + "}";
data = eval("(" + data + ")");
$.data( elem, settings.single, data );
return data;
}
}
});
/**
* Returns the metadata object for the first member of the jQuery object.
*
* @name metadata
* @descr Returns element's metadata object
* @param Object opts An object contianing settings to override the defaults
* @type jQuery
* @cat Plugins/Metadata
*/
$.fn.metadata = function( opts ){
return $.metadata.get( this[0], opts );
};
})(jQuery);

1031
app/static/js/jquery.tablesorter.js

File diff suppressed because it is too large

4
app/static/js/jquery.tablesorter.min.js

File diff suppressed because one or more lines are too long

7
app/templates/base.html

@ -43,9 +43,10 @@
{% block js %} {% endblock%}
<script src="https://code.jquery.com/jquery-2.1.4.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<script type="text/javascript" src="https://code.jquery.com/jquery-2.1.4.js"></script>
<script type="text/javascript" src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<script type="text/javascript" src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<script type="text/javascript" src="{{ url_for("static", filename="js/jquery.tablesorter.js") }}"></script>
<script src="{{ url_for("static", filename="js/app.js") }}"></script>
<script>

4
app/templates/show_books.html

@ -24,6 +24,7 @@
{% endwith %}
<table class="library_table" id="table" style="width:100%">
<thead>
<tr id="header">
<th>Cover</th>
<th>Title</th>
@ -32,6 +33,8 @@
<th>Category</th>
<th>Stack</th>
</tr>
</thead>
<tbody>
{% for book in books|sort(attribute='title', reverse = False) %}
<tr>
<td>
@ -59,6 +62,7 @@
</tr>
{% endfor %}
</tbody>
</table>

Loading…
Cancel
Save