Updated search.js (ES2015)
This commit is contained in:
parent
9e976b1856
commit
35f37df707
BIN
dist/main.js
vendored
Normal file → Executable file
BIN
dist/main.js
vendored
Normal file → Executable file
Binary file not shown.
@ -1,6 +1,6 @@
|
||||
/**
|
||||
* @description Searches through your photos and albums.
|
||||
* @copyright 2015 by Tobias Reich
|
||||
* @description Searches through your photos and albums.
|
||||
* @copyright 2015 by Tobias Reich
|
||||
*/
|
||||
|
||||
search = {
|
||||
@ -11,89 +11,90 @@ search = {
|
||||
|
||||
search.find = function(term) {
|
||||
|
||||
var albumsData = '',
|
||||
photosData = '',
|
||||
html = '';
|
||||
clearTimeout($(window).data('timeout'))
|
||||
|
||||
clearTimeout($(window).data('timeout'));
|
||||
$(window).data('timeout', setTimeout(function() {
|
||||
|
||||
if ($('#search').val().length!==0) {
|
||||
|
||||
api.post('search', { term }, function(data) {
|
||||
|
||||
let html = '',
|
||||
albumsData = '',
|
||||
photosData = ''
|
||||
|
||||
// Build albums
|
||||
if (data&&data.albums) {
|
||||
albums.json = { albums: data.albums };
|
||||
if (data && data.albums) {
|
||||
albums.json = { albums: data.albums }
|
||||
$.each(albums.json.albums, function() {
|
||||
albums.parse(this);
|
||||
albumsData += build.album(this);
|
||||
});
|
||||
albums.parse(this)
|
||||
albumsData += build.album(this)
|
||||
})
|
||||
}
|
||||
|
||||
// Build photos
|
||||
if (data&&data.photos) {
|
||||
album.json = { content: data.photos };
|
||||
if (data && data.photos) {
|
||||
album.json = { content: data.photos }
|
||||
$.each(album.json.content, function() {
|
||||
photosData += build.photo(this);
|
||||
});
|
||||
photosData += build.photo(this)
|
||||
})
|
||||
}
|
||||
|
||||
// 1. No albums and photos found
|
||||
// 2. Only photos found
|
||||
// 3. Only albums found
|
||||
// 4. Albums and photos found
|
||||
if (albumsData===''&&photosData==='') html = 'error';
|
||||
else if (albumsData==='') html = build.divider('Photos') + photosData;
|
||||
else if (photosData==='') html = build.divider('Albums') + albumsData;
|
||||
else html = build.divider('Photos') + photosData + build.divider('Albums') + albumsData;
|
||||
// 1. No albums and photos
|
||||
// 2. Only photos
|
||||
// 3. Only albums
|
||||
// 4. Albums and photos
|
||||
if (albumsData==='' && photosData==='') html = 'error'
|
||||
else if (albumsData==='') html = build.divider('Photos') + photosData
|
||||
else if (photosData==='') html = build.divider('Albums') + albumsData
|
||||
else html = build.divider('Photos') + photosData + build.divider('Albums') + albumsData
|
||||
|
||||
// Only refresh view when search results are different
|
||||
if (search.hash!==data.hash) {
|
||||
|
||||
$('.no_content').remove();
|
||||
$('.no_content').remove()
|
||||
|
||||
lychee.animate('#content', 'contentZoomOut');
|
||||
lychee.animate('#content', 'contentZoomOut')
|
||||
|
||||
search.hash = data.hash;
|
||||
search.hash = data.hash
|
||||
|
||||
setTimeout(function() {
|
||||
setTimeout(() => {
|
||||
|
||||
if (html==='error') {
|
||||
lychee.content.html('');
|
||||
$('body').append(build.no_content('magnifying-glass'));
|
||||
lychee.content.html('')
|
||||
$('body').append(build.no_content('magnifying-glass'))
|
||||
} else {
|
||||
lychee.content.html(html);
|
||||
lychee.animate('#content', 'contentZoomIn');
|
||||
lychee.content.html(html)
|
||||
lychee.animate('#content', 'contentZoomIn')
|
||||
}
|
||||
|
||||
}, 300);
|
||||
}, 300)
|
||||
|
||||
}
|
||||
|
||||
});
|
||||
})
|
||||
|
||||
} else search.reset();
|
||||
} else search.reset()
|
||||
|
||||
}, 250));
|
||||
}, 250))
|
||||
|
||||
}
|
||||
|
||||
search.reset = function() {
|
||||
|
||||
$('#search').val('');
|
||||
$('.no_content').remove();
|
||||
$('#search').val('')
|
||||
$('.no_content').remove()
|
||||
|
||||
if (search.hash!==null) {
|
||||
|
||||
// Trash data
|
||||
albums.json = null;
|
||||
album.json = null;
|
||||
photo.json = null;
|
||||
search.hash = null;
|
||||
albums.json = null
|
||||
album.json = null
|
||||
photo.json = null
|
||||
search.hash = null
|
||||
|
||||
lychee.animate('.divider', 'fadeOut');
|
||||
albums.load();
|
||||
lychee.animate('.divider', 'fadeOut')
|
||||
albums.load()
|
||||
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user