impress/app/assets/javascripts/outfits/new.js

303 lines
8.5 KiB
JavaScript
Raw Normal View History

2012-08-01 10:34:54 -07:00
var disqus_shortname = 'dresstoimpress';
2010-11-05 15:45:05 -07:00
(function () { // don't need to export anything in here
var preview_el = $('#pet-preview'),
img_el = preview_el.find('img'),
response_el = preview_el.find('span'),
name_el = $('#main-pet-name');
2010-11-05 15:45:05 -07:00
2014-09-10 13:38:26 -07:00
var defaultPreviewUrl = img_el.attr('src');
2010-11-05 15:45:05 -07:00
preview_el.click(function () {
Preview.Job.current.visit();
2010-11-05 15:45:05 -07:00
});
var Preview = {
clear: function () {
if(typeof Preview.Job.fallback != 'undefined') Preview.Job.fallback.setAsCurrent();
},
displayLoading: function () {
preview_el.addClass('loading');
response_el.text('Loading...');
},
2013-01-10 16:24:12 -08:00
failed: function () {
2010-11-05 15:45:05 -07:00
preview_el.addClass('hidden');
2013-01-10 16:24:12 -08:00
},
notFound: function (key, options) {
Preview.failed();
response_el.empty();
$('#preview-' + key + '-template').tmpl(options).appendTo(response_el);
2010-11-05 15:45:05 -07:00
},
updateWithName: function () {
var name = name_el.val(), job;
if(name) {
currentName = name;
if(!Preview.Job.current || name != Preview.Job.current.name) {
job = new Preview.Job.Name(name);
job.setAsCurrent();
Preview.displayLoading();
}
} else {
Preview.clear();
}
}
}
2014-09-10 13:38:26 -07:00
function loadNotable() {
$.getJSON('http://notables.openneo.net/api/1/days/ago/1?callback=?', function (response) {
var notables = response.notables;
var i = Math.floor(Math.random() * notables.length);
Preview.Job.fallback = new Preview.Job.Name(notables[i].petName);
if(!Preview.Job.current) {
Preview.Job.fallback.setAsCurrent();
}
});
}
function loadFeature() {
$.getJSON('/donations/features', function(features) {
if (features.length > 0) {
var feature = features[Math.floor(Math.random() * features.length)];
Preview.Job.fallback = new Preview.Job.Feature(feature);
if (!Preview.Job.current) {
Preview.Job.fallback.setAsCurrent();
}
} else {
loadNotable();
}
});
}
loadFeature();
2010-11-05 15:45:05 -07:00
Preview.Job = function (key, base) {
var job = this,
quality = 2;
job.loading = false;
function getImageSrc() {
if (key.substr(0, 3) === 'a:-') {
// lol lazy code for prank image :P
return "http://swfimages.impress.openneo.net" +
"/biology/000/000/0-2/" + key.substr(2) + "/300x300.png";
2014-09-10 13:38:26 -07:00
} else if (base === 'cp' || base === 'cpn') {
return petImage(base + '/' + key, quality);
2014-09-10 13:38:26 -07:00
} else if (base === 'url') {
return key;
} else {
throw new Error("unrecognized image base " + base);
}
2010-11-05 15:45:05 -07:00
}
function load() {
job.loading = true;
img_el.attr('src', getImageSrc());
}
this.increaseQualityIfPossible = function () {
if(quality == 2) {
quality = 4;
load();
}
}
this.setAsCurrent = function () {
Preview.Job.current = job;
load();
}
2014-09-10 13:38:26 -07:00
this.notFound = function() {
Preview.notFound('pet-not-found');
}
2010-11-05 15:45:05 -07:00
}
Preview.Job.Name = function (name) {
this.name = name;
Preview.Job.apply(this, [name, 'cpn']);
this.visit = function() {
name_el.val(this.name).closest('form').submit();
}
2010-11-05 15:45:05 -07:00
}
Preview.Job.Hash = function (hash) {
Preview.Job.apply(this, [hash, 'cp']);
this.visit = function() {
window.location = "/wardrobe?color=" + $('#color').val() + "&species=" +
$('#species').val();
}
2010-11-05 15:45:05 -07:00
}
2014-09-10 13:38:26 -07:00
Preview.Job.Feature = function(feature) {
Preview.Job.apply(this, [feature.outfit_image_url, 'url']);
this.name = "Thanks for donating, " + feature.donor_name + "!"; // TODO: i18n
this.visit = function() {
window.location = '/donate';
}
this.notFound = function() {
// The outfit thumbnail hasn't generated or is missing or something.
// Let's fall back to a boring image for now.
var boring = new Preview.Job.Feature({
donor_name: feature.donor_name,
outfit_image_url: defaultPreviewUrl
});
boring.setAsCurrent();
}
}
2010-11-05 15:45:05 -07:00
$(function () {
var previewWithNameTimeout;
name_el.val(PetQuery.name);
Preview.updateWithName();
name_el.keyup(function () {
if(previewWithNameTimeout) {
clearTimeout(previewWithNameTimeout);
Preview.Job.current.loading = false;
}
previewWithNameTimeout = setTimeout(Preview.updateWithName, 250);
});
img_el.load(function () {
if(Preview.Job.current.loading) {
Preview.Job.loading = false;
Preview.Job.current.increaseQualityIfPossible();
preview_el.removeClass('loading').removeClass('hidden').addClass('loaded');
response_el.text(Preview.Job.current.name);
}
}).error(function () {
if(Preview.Job.current.loading) {
Preview.Job.loading = false;
2014-09-10 13:38:26 -07:00
Preview.Job.current.notFound();
2010-11-05 15:45:05 -07:00
}
});
var selectFields = $('#species, #color');
selectFields.change(function () {
2013-01-10 16:24:12 -08:00
var type = {}, nameComponents = {};
2010-11-05 15:45:05 -07:00
selectFields.each(function () {
2013-01-10 16:24:12 -08:00
var el = $(this), selectedEl = el.children(':selected'), key = el.attr('id');
type[key] = selectedEl.val();
nameComponents[key] = selectedEl.text();
2010-11-05 15:45:05 -07:00
});
2013-01-10 16:24:12 -08:00
name = nameComponents.color + ' ' + nameComponents.species;
2010-11-05 15:45:05 -07:00
Preview.displayLoading();
$.ajax({
2010-11-05 17:17:42 -07:00
url: '/species/' + type.species + '/color/' + type.color + '/pet_type.json',
2010-11-05 15:45:05 -07:00
data: {
2010-11-05 17:17:42 -07:00
'for': 'image'
2010-11-05 15:45:05 -07:00
},
dataType: 'json',
success: function (data) {
var job;
if(data) {
job = new Preview.Job.Hash(data.image_hash);
job.name = name;
job.setAsCurrent();
} else {
2013-01-10 16:24:12 -08:00
Preview.notFound('pet-type-not-found', {
color_name: nameComponents.color,
species_name: nameComponents.species
});
2010-11-05 15:45:05 -07:00
}
}
});
});
$.getJSON('http://blog.openneo.net/api/read/json?callback=?', function (data) {
var post = data.posts[0], el = $('#blog-preview'),
url = post['url-with-slug'], header = "Here's the latest!", body = '',
2012-08-01 10:34:54 -07:00
truncate_body_at = 500, image;
2010-11-05 15:45:05 -07:00
if(post.type == 'regular') {
header = post['regular-title'];
body = post['regular-body'];
} else if(post.type == 'link') {
header = post['link-text'];
body = post['link-description'];
} else if(post.type == 'photo') {
body = post['photo-caption'];
image = post['photo-url-75'];
}
2012-08-01 10:34:54 -07:00
// No truncation on this new layout
/*body = body.replace(/(<\/?[\S][^>]*>)/gi, '');
2010-11-05 15:45:05 -07:00
if(body.length > truncate_body_at) {
body = body.substring(0, truncate_body_at);
body = body.replace(/\s+\w+$/, '');
body += '&hellip;';
2012-08-01 10:34:54 -07:00
}*/
el.find('h2').text(header).wrapInner($('<a/>', {href: url}));
2013-02-06 08:59:25 -08:00
var contentEl = el.find('div');
contentEl.html(body);
2012-08-01 10:34:54 -07:00
$('<a/>', {'id': 'blog-preview-comments', href: url + '#disqus_thread'}).appendTo(el);
2010-11-05 15:45:05 -07:00
if(image) {
el.find('img').attr('src', image).parent().attr('href', url);
}
2013-02-06 08:59:25 -08:00
// Localize
var localizedBodies = {};
contentEl.find('.locale').each(function () {
var localizedBody = $(this);
var locale = localizedBody.attr('class').match(/locale-(\S+)/)[1];
localizedBodies[locale] = localizedBody;
});
var fallbacks = $('#locale option:selected').attr('data-fallbacks').split(',');
var bestLocale = null;
for(var i = 0; i < fallbacks.length; i++) {
if(localizedBodies.hasOwnProperty(fallbacks[i])) {
bestLocale = fallbacks[i];
break;
}
}
if(bestLocale) {
// I feel bad doing all this in JS rather than CSS, but sometimes you
// gotta do what you gotta do if you wanna support any number of locales.
for(var locale in localizedBodies) {
localizedBodies[locale].hide();
}
localizedBodies[bestLocale].show();
contentEl.find('.no-locale').hide();
}
2012-08-01 10:34:54 -07:00
el.fadeIn('medium');
addDisqusCount();
2010-11-05 15:45:05 -07:00
});
2014-04-04 13:53:53 -07:00
var neopiaError = document.location.search.match(/neopia%5Berror%5D=([^&]+)/);
if (neopiaError !== null) {
var message = decodeURI(neopiaError[1]).replace(/\+/g, ' ');
if (message === "pet not found") {
$('#pet-not-found').show();
} else {
var el = $('#neopia-error');
var text = el.text().replace('%{message}', message);
el.text(text).show();
}
}
$('#load-pet-to-wardrobe').submit(function(e) {
if (name_el.val() === "" && Preview.Job.current) {
e.preventDefault();
Preview.Job.current.visit();
}
});
2010-11-05 15:45:05 -07:00
});
2012-08-01 10:34:54 -07:00
function addDisqusCount() {
var s = document.createElement('script'); s.async = true;
s.type = 'text/javascript';
s.src = 'http://' + disqus_shortname + '.disqus.com/count.js';
(document.getElementsByTagName('HEAD')[0] || document.getElementsByTagName('BODY')[0]).appendChild(s);}
2010-11-05 15:45:05 -07:00
})();
2012-08-01 10:34:54 -07:00
2012-08-09 19:59:35 -07:00
$('#latest-contribution-created-at').timeago();