1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-07-05 16:04:24 +03:00
ifhub.club/application/frontend/common/js/geo.js
2013-10-02 21:05:44 +07:00

87 lines
2.3 KiB
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/**
* Гео-объекты
*
* @module ls/geo
*
* @license GNU General Public License, version 2
* @copyright 2013 OOO "ЛС-СОФТ" {@link http://livestreetcms.com}
* @author Denis Shakhov <denis.shakhov@gmail.com>
*/
var ls = ls || {};
ls.geo = (function ($) {
/**
* Инициализация селектов выбора гео-объекта
*/
this.initSelect = function() {
$.each($('.js-geo-select'),function(k,v){
$(v).find('.js-geo-country').bind('change',function(e){
this.loadRegions($(e.target));
}.bind(this));
$(v).find('.js-geo-region').bind('change',function(e){
this.loadCities($(e.target));
}.bind(this));
}.bind(this));
};
this.loadRegions = function($country) {
$region=$country.parents('.js-geo-select').find('.js-geo-region');
$city=$country.parents('.js-geo-select').find('.js-geo-city');
$region.empty();
$region.append('<option value="">'+ls.lang.get('geo_select_region')+'</option>');
$city.empty();
$city.hide();
if (!$country.val()) {
$region.hide();
return;
}
var url = aRouter['ajax']+'geo/get/regions/';
var params = {country: $country.val()};
ls.hook.marker('loadRegionsBefore');
ls.ajax.load(url, params, function(result) {
if (result.bStateError) {
ls.msg.error(null, result.sMsg);
} else {
$.each(result.aRegions,function(k,v){
$region.append('<option value="'+v.id+'">'+v.name+'</option>');
});
$region.show();
ls.hook.run('ls_geo_load_regions_after',[$country, result]);
}
});
};
this.loadCities = function($region) {
$city=$region.parents('.js-geo-select').find('.js-geo-city');
$city.empty();
$city.append('<option value="">'+ls.lang.get('geo_select_city')+'</option>');
if (!$region.val()) {
$city.hide();
return;
}
var url = aRouter['ajax']+'geo/get/cities/';
var params = {region: $region.val()};
ls.hook.marker('loadCitiesBefore');
ls.ajax.load(url, params, function(result) {
if (result.bStateError) {
ls.msg.error(null, result.sMsg);
} else {
$.each(result.aCities,function(k,v){
$city.append('<option value="'+v.id+'">'+v.name+'</option>');
});
$city.show();
ls.hook.run('ls_geo_load_cities_after',[$region, result]);
}
});
};
return this;
}).call(ls.geo || {},jQuery);