// vim: et:ts=4:sw=4:sts=4:ft=js /*@ Ox.ListMap ListMap Object () -> ListMap Object (options) -> ListMap Object (options, self) -> ListMap Object options Options object addPlace height labels places selected width self shared private variable @*/ Ox.ListMap = function(options, self) { var self = self || {}, that = Ox.Element({}, self) .defaults({ addPlace: null, height: 256, labels: false, places: null, selected: [], width: 256 }) .addClass('OxListMap') .options(options || {}) .css({ width: self.options.width + 'px', height: self.options.height + 'px' }); self.columns = [ { addable: false, // fixme: implement id: 'id', unique: true, visible: false }, { format: function(value) { return $('') .attr({ // fixme: not the right place to do this src: Ox.PATH + 'Ox.Geo/png/icons/16/' + (value || 'NTHH') + '.png' }) .css({ width: '14px', height: '14px', marginLeft: '-3px', marginTop: 0 }); /* .css({ width: '21px', height: '14px' }) .load(function() { var $this = $(this); Ox.print($this.width() / $this.height()) $this.css({ width: Math.round(14 * $this.width() / $this.height()) + 'px', height: '14px', padding: '1px 0 0 1px' }); }); */ }, id: 'countryCode', resizable: false, // fixme: implement title: '', visible: true, width: 16 }, { editable: true, id: 'name', operator: '+', removable: false, title: 'Name', visible: true, width: 144 }, { editable: true, id: 'geoname', removable: false, operator: '+', sort: function(v) { return v.split(', ').reverse().join(', ') }, title: 'Geoname', visible: true, width: 192 }, { align: 'right', format: {type: 'area', args: [0]}, id: 'size', operator: '-', title: 'Size', visible: true, width: 128 }, { align: 'right', format: toFixed, id: 'lat', operator: '+', title: 'Latitude', visible: true, width: 96 }, { align: 'right', format: toFixed, id: 'lng', operator: '+', title: 'Longitude', visible: true, width: 96 }, { align: 'right', format: toFixed, id: 'south', operator: '+', title: 'South', visible: false, width: 96 }, { align: 'right', id: 'west', operator: '+', title: 'West', visible: false, width: 96 }, { align: 'right', format: toFixed, id: 'north', operator: '+', title: 'North', visible: false, width: 96 }, { align: 'right', format: toFixed, id: 'east', operator: '+', title: 'East', visible: false, width: 96 }, { id: 'user', operator: '+', title: 'User', visible: false, width: 96 }, { format: 'date', id: 'created', operator: '-', title: 'Date Created', visible: false, width: 96, }, { format: 'date', id: 'modified', operator: '-', title: 'Date Modified', visible: false, width: 96, }, { align: 'right', id: 'matches', operator: '-', title: 'Matches', visible: false, width: 96, } ]; self.$listToolbar = Ox.Bar({ size: 24 }); self.$findElement = Ox.FormElementGroup({ elements: [ self.$findSelect = Ox.Select({ items: [ {id: 'all', title: 'Find: All'}, {id: 'name', title: 'Find: Name'}, {id: 'geoname', title: 'Find: Geoname'}, {id: 'country', title: 'Find: Country'} ], overlap: 'right', width: 128 }), self.$findInput = Ox.Input({ clear: true, width: 192 }) ] }) .css({float: 'right', margin: '4px'}) .appendTo(self.$listToolbar) self.$list = Ox.TextList({ columns: self.columns, columnsRemovable: true, columnsVisible: true, items: self.options.places, pageLength: 100, scrollbarVisible: true, sort: [ {key: 'name', operator: '+'} ] }) .bindEvent({ 'delete': removeItem, init: initList, load: function() { that.triggerEvent('loadlist'); }, open: openItem, select: selectItem }); self.$listStatusbar = Ox.Bar({ size: 16 }); self.$status = Ox.Element() .css({paddingTop: '2px', margin: 'auto', fontSize: '9px', textAlign: 'center'}) .html(self.options.places.length + ' Place' + (self.options.places.length == 1 ? '' : 's')) .appendTo(self.$listStatusbar); self.$placeTitlebar = Ox.Bar({ size: 24 }); self.$placeTitleFlag = $('') .addClass('OxFlag') .attr({ src: Ox.PATH + 'Ox.Geo/png/icons/16/NTHH.png' }) .css({float: 'left', margin: '4px 0 0 4px'}) .appendTo(self.$placeTitlebar.$element); self.$placeTitleName = Ox.Label({ title: '', width: 228 }) .css({float: 'left', margin: '4px'}) .appendTo(self.$placeTitlebar); self.$placeFormItems = Ox.merge([ Ox.Input({ id: 'name', label: 'Name', labelWidth: 64, width: 240 }), Ox.Input({ id: 'geoname', label: 'Geoname', labelWidth: 64, width: 240 }), Ox.ArrayInput({ id: 'alternativeNames', label: 'Alternative Names', max: 10, //sort: true, values: [], width: 240 }), ], ['South', 'West', 'North', 'East', 'Latitude', 'Longitude'].map(function(v) { var id = ( v == 'Latitude' ? 'lat' : v == 'Longitude' ? 'lng' : v ).toLowerCase(), max = ['Latitude', 'South', 'North'].indexOf(v) > -1 ? Ox.MAX_LATITUDE : 180; return Ox.Input({ decimals: 8, disabled: ['Latitude', 'Longitude'].indexOf(v) > -1, id: id, label: v, labelWidth: 80, min: -max, max: max, type: 'float', width: 240 }); }), [ Ox.Input({ disabled: true, id: 'size', label: 'Size', labelWidth: 80, textAlign: 'right', width: 240 }) ]); self.$placeForm = Ox.Form({ items: self.$placeFormItems, width: 240 }) .css({margin: '8px'}); self.$placeStatusbar = Ox.Bar({ size: 16 }) .addClass('OxVideoPlayer'); // fixme! self.$savePlaceButton = Ox.Button({ disabled: true, id: 'savePlace', title: 'check', style: 'symbol', tooltip: 'Save Place', type: 'image', //width: 80 }) .css({float: 'right'}) .appendTo(self.$placeStatusbar); /* self.mapResize = [ Math.round(self.options.width * 0.25), Math.round(self.options.width * 0.5), Math.round(self.options.width * 0.75) ]; */ if (Ox.isArray(self.options.places)) { init(self.options.places) } else { self.options.places({}, function(result) { Ox.print('$$$$', result.data.items) self.options.places({ keys: self.columns.map(function(column) { return column.id }), range: [0, result.data.items] }, function(result) { Ox.print('DATA', result) init(result.data.items); }); }); } function init(places) { //Ox.print('PLACES', places) self.$map = Ox.Map({ clickable: true, editable: true, findPlaceholder: 'Find on Map', height: self.options.height, places: places, toolbar: true, width: self.options.width - 514,//self.mapResize[1], zoombar: true }) .bindEvent({ addplace: function(event, data) { that.triggerEvent('addplace', data); }, changeplace: function(event, data) { self.$placeForm.values(Ox.map(data, function(val, key) { return key == 'size' ? Ox.formatArea(val) : val; })); }, geocode: function(event, data) { that.triggerEvent('geocode', data); }, resize: function() { self.$map.resizeMap(); // fixme: don't need event }, selectplace: selectPlace }); that.$element.replaceWith( that.$element = Ox.SplitPanel({ elements: [ { element: Ox.SplitPanel({ elements: [ { element: self.$listToolbar, size: 24 }, { element: self.$list }, { element: self.$listStatusbar, size: 16 } ], orientation: 'vertical' }), resizable: true, resize: [256, 384, 512], size: 256 }, { element: self.$map, }, { collapsible: true, element: Ox.SplitPanel({ elements: [ { element: self.$placeTitlebar, size: 24 }, { element: self.$placeForm }, { element: self.$placeStatusbar, size: 16 } ], orientation: 'vertical' }) .bindEvent({ resize: function(foo, size) { self.$placeTitleName.options({width: size - 28}); // fixme: pass width through form self.$placeFormItems.forEach(function($item) { $item.options({width: size - 16}); }); } }), resizable: true, resize: [128, 256, 384], size: 256 } ], orientation: 'horizontal' }).$element ); } function initList(event, data) { self.$status.html(data.items + ' place' + (data.items == 1 ? '' : 's')) } function openItem(event, data) { selectItem(event, data); self.$map.zoomToPlace(data.ids[0]); } function removeItem(event, data) { var id = data.ids[0]; that.triggerEvent('removeplace', {id: id}); self.$map.removePlace(id); } function selectItem(event, data) { Ox.print('selectItem', data.ids[0]) var id = data.ids.length ? data.ids[0] : null; self.$map.options({selected: id}); id && self.$map.panToPlace(); } function selectPlace(place) { var country = place.id ? Ox.getCountryByGeoname(place.geoname) : '', code = country ? country.code : 'NTHH'; place.id && place.id[0] != '_' && self.$list.options({ selected: place.id ? [place.id] : [] }); self.$placeTitleFlag.attr({ src: Ox.PATH + 'Ox.Geo/png/icons/16/' + code + '.png' }); self.$placeTitleName.options({title: place.geoname || ''}); self.$placeForm.values(Ox.map(place, function(val, key) { return key == 'size' ? Ox.formatArea(val) : val; })); } function toFixed(val) { return val.toFixed(8); } /*@ setOption setOption @*/ self.setOption = function(key, value) { Ox.print('ONCHANGE') if (key == 'height' || key == 'width') { Ox.print('ONCHANGE...') self.$map.options({ height: self.options.height, width: self.options.width }) } else if (key == 'selected') { self.$list.options({selected: value}); } } /*@ focusList focusList @*/ that.focusList = function() { self.$list.gainFocus(); return that; } /*@ reloadList reloadList @*/ that.reloadList = function() { self.$list.reloadList(); return that; } /*@ resizeMap resizeMap @*/ that.resizeMap = function() { Ox.print('Ox.ListMap.resizeMap()') self.$map.resizeMap(); return that; }; return that; };