Files
Pinry/pinry/static/js/bookmarklet.js

119 lines
3.7 KiB
JavaScript
Raw Normal View History

/**
* Bookmarklet for Pinry
* Descrip: This is trying to be as standalone a script as possible hence
* why it has built in helpers and such when the rest of the
* scripts make use of helpers.js. In the future i want to remove
* all dependencies on jQuery.
* Authors: Pinry Contributors
2013-03-03 11:06:22 -05:00
* Updated: Mar 3rd, 2013
* Require: None (dynamically loads jQuery if needed)
*/
// Start jQuery Check
if (!window.jQuery) {
var body = document.getElementsByTagName('body')[0];
2013-02-25 04:34:49 +00:00
var script = document.createElement('script');
script.src = '//cdnjs.cloudflare.com/ajax/libs/jquery/1.8.3/jquery.min.js';
2013-03-03 11:06:22 -05:00
body.appendChild(script);
2013-02-25 04:34:49 +00:00
}
// End jQuery Check
2013-02-25 04:34:49 +00:00
$(document).ready(function() {
// Start Helper Functions
function getFormUrl() {
var hostUrl = $('#pinry-bookmarklet').attr('src').split('/')[2];
var formUrl = '/pins/pin-form/?pin-image-url=';
return 'http://'+hostUrl+formUrl;
}
function normalizeImageUrl(imageUrl) {
var protocol = imageUrl.split(':')[0];
if (protocol != 'http' && protocol != 'https') {
if (imageUrl[1] != '/')
imageUrl = 'http://'+window.location.host+imageUrl;
}
return imageUrl;
}
// End Helper Functions
2013-02-25 04:34:49 +00:00
// Start View Functions
function pageView() {
var pinryImages = document.createElement('div');
pinryImages.id = 'pinry-images';
$(pinryImages).css({
2013-02-25 04:34:49 +00:00
'position': 'absolute',
'z-index': '9001',
'background': 'rgba(0, 0, 0, 0.7)',
2013-03-03 13:05:38 +00:00
'padding-top': '70px',
2013-02-25 04:34:49 +00:00
'top': '0',
'left': '0',
'right': '0',
2013-03-03 13:05:38 +00:00
'height': $(document).height(),
'text-align': 'center',
'width': '100%'
2013-02-25 04:34:49 +00:00
});
2013-03-03 13:05:38 +00:00
var pinryBar = document.createElement('div');
pinryBar.id = 'pinry-bar';
$(pinryBar).css({
'background': 'black',
'padding': '15px',
'position': 'fixed',
'z-index': '9002',
'width': '100%',
'top': 0,
'border-bottom': '1px solid #555',
'color': 'white',
'text-align': 'center',
'font-size': '22px'
});
$('body').append(pinryImages);
$('#pinry-images').append(pinryBar);
$('#pinry-bar').html('Pinry Bookmarklet');
2013-02-25 04:34:49 +00:00
}
function imageView(imageUrl) {
// Requires that pageView has been created already
imageUrl = normalizeImageUrl(imageUrl);
var image = document.createElement('div');
$(image).css({
'background-image': 'url('+imageUrl+')',
'background-position': 'center center',
'background-repeat': 'no-repeat',
2013-02-25 04:34:49 +00:00
'display': 'inline-block',
'width': '200px',
'height': '200px',
'margin': '15px',
2013-03-03 13:05:38 +00:00
'cursor': 'pointer',
'border': '1px solid #555'
2013-02-25 04:34:49 +00:00
});
$(image).click(function() {
var popUrl = getFormUrl()+imageUrl;
window.open(popUrl, '', 'width=590,height=439,toolbar=0,menubar=0');
$('#pinry-images').remove();
2013-02-25 04:34:49 +00:00
});
return $('#pinry-images').append(image);
2013-02-25 04:34:49 +00:00
}
// End View Functions
2013-02-25 04:34:49 +00:00
// Start Active Functions
function addAllImagesToPageView() {
var images = $('body').find('img');
images.each(function() {
2013-03-03 13:05:38 +00:00
if ($(this).width() > 200 && $(this).height() > 200)
imageView($(this).attr('src'));
});
return images;
2013-02-25 04:34:49 +00:00
}
// End Active Functions
// Start Init
pageView(); // Build page before we insert images
addAllImagesToPageView(); // Add all images on page to our new pageView
// End Init
2013-02-25 04:34:49 +00:00
});