Toggle navigation
Wialon Playground
Add library
jQuery latest
Bootstrap 3.3.1
Wialon Javascript SDK
Run
Get code
Fork
Save
Examples
Login
Get units
Change unit icon
Get messages
Get sensors
Edit sensors
Commands
Monitoring notification
Track layer
Get resources
Resources and accounts
Account parameters
Do payment
Management Driver
Get POIs
Create POI
Create notification
Get geofences
Geofence parameters
Create geofence
Export geofences
Gurtam map
Units on map
Unit trace
Create report template
Execute report
Execute custom report
Remaining SMS
Create driver
Bind driver to unit
Export resource props
Import resource props
Unit edit fields
Import fillings
Fuel by mail
Token login for site
Advanced authorization form
Token usage in app
Get location's geofences
Account hierarchy
Nearest units
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <title>Wialon Playground - Management Driver</title> <script type="text/javascript" src="//code.jquery.com/jquery-latest.min.js"></script> <script type="text/javascript" src="//hst-api.wialon.com/wsdk/script/wialon.js"></script> </head> <body> <div id="base"> <form id="driver_data"> <p>Resource: <select id="resource" name="resource"><option value="">-- select resource --</option></select></p> <p>Drivers: <select id="drivers" name="drivers"><option value="">-- select driver --</option></select></p> <table> <tbody> <tr> <td>Driver name</td> <td><input type="text" name="n" value="" placeholder="name"></td> </tr> <tr> <td>Driver id</td> <td><input type="text" name="id" value="" placeholder="id" disabled="disabled"></td> </tr> <tr> <td>Driver description</td> <td><input type="text" name="ds" value="" placeholder="name"></td> </tr> <tr> <td>Driver phone</td> <td><input type="text" name="p" value="" placeholder="phone"></td> </tr> </tbody> </table> <input class="btn" type="button" id="create" value="Create"> <input class="btn" type="button" id="update" value="Update"> <input class="btn" type="button" id="delete" value="delete"> </form> Log: <div id="log_cont"> <table> <tbody id="log"></tbody> </table> </div> </div> </body> </html>
HTML
.btn { cursor:pointer; } div { margin-bottom:20px; } #log_cont { background-color: #EEEEEE; height: 150px; overflow-y: scroll; font-size:75%; } #log_cont table { width:100%; }
CSS
var createDriver = { init: function () { var self = this; this.res = null; this.log("Logged successfully"); this.sess = wialon.core.Session.getInstance(); this.sess.loadLibrary("resourceDrivers"); // fetch data of resurse this.getResurse(); this.addEventListeners(); }, addEventListeners: function(){ var self = this; $('#resource').on('change', function(){ self.getDrivers(); }); $('#drivers').on('change', function(){ self.getDriverInfo(); }); $('#create').on('click', function(){ self.createDriver(); }); $('#update').on('click', function(){ self.updateDriver(); }); $('#delete').on('click', function(){ self.deleteDriver(); }); }, resetForm: function(){ this.curRes = null; $('#drivers').html('<option value="">-- select driver --</option>'); $('#driver_data input[type="text"], #drivers').val(''); }, getResurse: function(){ var self = this; // flags to specify what kind of data should be returned var flags = wialon.util.Number.or(wialon.item.Item.dataFlag.base, wialon.item.Resource.dataFlag.drivers, wialon.item.Resource.dataFlag.driverUnits); // 64 bit OR // Subscribe on resource data this.sess.updateDataFlags( // load items to current session [{type: "type", data: "avl_resource", flags: flags, mode: 0}], // Items specification function (code){ // updateDataFlags callback if (code) { self.log("Error: "+wialon.core.Errors.getErrorText(code)); return; // exit if error code } var ress = self.sess.getItems("avl_resource"); // get loaded 'avl_resource's items $('#resource').html('<option value="">-- select resource --</option>'); for (var i = 0; i < ress.length; i++) { $('#resource').append('<option value="'+ ress[i].getId() +'">'+ ress[i].getName() +'</option>'); } }); }, getDrivers: function(){ var self = this; // save resurse ID to private vearible this.resId = $('#resource').val(); if (!this.resId) { this.resetForm(); return; } var $drivers = $('#drivers'); if (!this.resId) { $drivers.val(''); return; } // save current resurse ID to private vearible this.curRes = this.sess.getItem( this.resId ); var drivers = this.sess.getItem( this.resId ).getDrivers() $drivers.html('<option value="">-- select driver --</option>'); for (var i in drivers) { $drivers.append('<option value="'+ drivers[i].id +'">'+ drivers[i].n +'</option>'); } }, getDriverInfo: function(){ var driverId = $('#drivers').val(); if ( !driverId ) { this.resetForm(); return; } if ( !driverId ) return; var driver = this.curRes.getDriver( driverId ); var $form = $('#driver_data'); // set value of inputs. base on attribute "name" for (var i in driver) { $form.find('input[name="' + i + '"]').val( driver[i] || '' ); } }, createDriver: function(){ var self = this; if (!this.curRes) { this.log('please select Resource'); return; } // create object var newDriver = { "itemId":this.curRes.getId(), // resourceId "id": 0, // item_id "callMode":"create", "c":"", // driver code "ck":0, // image checksum "ds": $('#driver_data [name="ds"]').val() || "", // description "n": $('#driver_data [name="n"]').val() || "", // name "p": $('#driver_data [name="p"]').val() || "", // phone "r":1, // image aspect ratio "f":0, // flags "jp":{} // additional fields } // create this.curRes.createDriver( newDriver , function(code, data) { self.log('Driver ' + ( (data && typeof data.n != 'undefined') ? "'" + data.n + "'" : '') + ' create result: ' + (code ? 'Error('+code+')' : 'Ok')); }); // reset form $('#resource').val(''); this.resetForm(); }, updateDriver: function(){ var self = this; var id = $('#driver_data input[name="id"]').val(); if ( !id ) { this.log( 'Error update driver\'s data: id = "' + id + '"' ); return; } var updateDriver = { "itemId":this.curRes.getId(), "callMode":"update", c: "", ck: 0, f: 0, p: "", r: 0 } // fetch data $('#driver_data input[type="text"]').each(function(){ if ( $(this).val() ) { if ($(this).attr('name') == 'id') { updateDriver[ $(this).attr('name') ] = parseInt( $(this).val() ); } else { updateDriver[ $(this).attr('name') ] = $(this).val(); } } }); this.curRes.updateDriver( updateDriver , function(code, data) { self.log('Driver ' + ( (data && typeof data.n != 'undefined') ? "'" + data.n + "'" : '') + ' update result: ' + (code ? 'Error('+code+')' : 'Ok')); }); $('#resource').val(''); this.resetForm(); }, deleteDriver: function(){ var self = this; var id = $('#driver_data [name="id"]').val(); if (!id) return; // confirm user for delete property; var answer = confirm('Do you really want to delete driver "' + $("#driver_data [name='n']").val() + '"?'); if (!answer) return; this.curRes.deleteDriver( id, function(code, data) { self.log('Driver ' + ( (data && typeof data.n != 'undefined') ? "'" + data.n + "'" : '') + ' delete result: ' + (code ? 'Error('+code+')' : 'Ok')); }); $('#resource').val(''); this.resetForm(); }, log: function(msg) { var $log = $('#log'), $log_cont = $('#log_cont'); $log.append('<tr><td>' + msg + '</td></tr>'); $log_cont.animate({ scrollTop: $log_cont[0].scrollHeight }, 300); } }; // execute when DOM ready $(document).ready(function () { wialon.core.Session.getInstance().initSession("https://hst-api.wialon.com"); // init session // For more info about how to generate token check // http://sdk.wialon.com/playground/demo/app_auth_token wialon.core.Session.getInstance().loginToken("5dce19710a5e26ab8b7b8986cb3c49e58C291791B7F0A7AEB8AFBFCEED7DC03BC48FF5F8", "", // try to login function (code) { // login callback if (code){ createDriver.log(wialon.core.Errors.getErrorText(code)); return; // exit if error code } createDriver.init(); // when login suceed then run init() function }); });
JS
Result
Source code of example
Close ✕
×
Source code