async function planningSwitchChanged() { showLoader(); var id = $('#switch-planning-include').data('regatta'); var include = $('#switch-planning-include').prop('checked'); var auth = { id: localStorage.getItem('auth_id'), hash: localStorage.getItem('auth_hash') } if (include) { // add to planning $.ajax({ url: QUERY_URL + 'planning_add', method: 'POST', data: { auth: auth, regatta: id }, error: function (xhr, status, error) { if (xhr.status == 401) { console.log('authentification failed'); toastError('Authentifizierung fehlgeschlagen. Versuche es erneut.'); } else if (xhr.status == 0) { toastError('Du bist momentan offline.
Stelle eine Internetverbindung her, um die Änderungen zu speichern'); } else { console.log('planning_add: unbekannter Fehler', status, error); console.log(xhr); toastError('Ein unbekannter Fehler ist aufgetreten. Bitte versuche es noch einmal', 5000); } $('#menu-edit').hideMenu(); hideLoader(); }, success: async function (data, status, xhr) { await sync(); planningEdit(id); hideLoader(); } }); } else { // remove from planning $.ajax({ url: QUERY_URL + 'planning_remove', method: 'POST', data: { auth: auth, regatta: id }, error: function (xhr, status, error) { if (xhr.status == 401) { console.log('authentification failed'); toastError('Authentifizierung fehlgeschlagen. Versuche es erneut.'); } else if (xhr.status == 0) { toastError('Du bist momentan offline.
Stelle eine Internetverbindung her, um die Änderungen zu speichern'); } else { console.log('planning_remove: unbekannter Fehler', status, error); console.log(xhr); toastError('Ein unbekannter Fehler ist aufgetreten. Bitte versuche es noch einmal', 5000); } $('#menu-edit').hideMenu(); hideLoader(); }, success: async function (data, status, xhr) { await sync(); planningEdit(id); hideLoader(); } }); } } var sailorIsSteuermann; var sailors = []; async function sailorSelected(sid) { $('#menu-sailor').hideMenu(); showLoader(); var rid = $('#switch-planning-include').data('regatta'); var action = (sailorIsSteuermann ? 'planning_set_steuermann' : 'planning_add_crew'); // add sailor var auth = { id: localStorage.getItem('auth_id'), hash: localStorage.getItem('auth_hash') } $.ajax({ url: QUERY_URL + action, method: 'POST', data: { auth: auth, regatta: rid, sailor: sid }, error: function (xhr, status, error) { if (xhr.status == 401) { console.log('authentification failed'); toastError('Authentifizierung fehlgeschlagen. Versuche es erneut.'); } else if (xhr.status == 0) { toastError('Du bist momentan offline.
Stelle eine Internetverbindung her, um die Änderungen zu speichern'); } else { console.log(action + ': unbekannter Fehler', status, error); console.log(xhr); toastError('Ein unbekannter Fehler ist aufgetreten. Bitte versuche es noch einmal', 5000); } hideLoader(); }, success: async function (data, status, xhr) { await sync(); planningEdit(rid); hideLoader(); } }); } async function sailorsSearch() { $('.item-sailor-search').remove(); if (sailorIsSteuermann) { var item = ''; item += 'noch unklar'; item += ''; item += ''; $('#menu-sailor').find('.content').find('.list-group').append(item); } if ($('#input-edit-search').val().length >= 3) { sailors.forEach(function (entry) { if (search($('#input-edit-search').val(), entry.keywords)) { $('#menu-sailor').find('.content').find('.list-group').append(entry.content); } }); } else { var item = ''; $('#menu-sailor').find('.content').find('.list-group').append(item); } } async function initSailors() { sailors = []; var dbSailors = await dbGetData('sailors'); dbSailors.sort(function(a,b){ return a.name.localeCompare(b.name); }); for (s in dbSailors) { var item = ''; item += '' + dbSailors[s].name + ''; item += ''; item += ''; sailors.push({ keywords: [dbSailors[s].name], content: item }); } } async function planningChangeCrew(sid = null) { if (sid !== null) { showLoader(); var rid = $('#switch-planning-include').data('regatta'); // remove sailor var auth = { id: localStorage.getItem('auth_id'), hash: localStorage.getItem('auth_hash') } $.ajax({ url: QUERY_URL + 'planning_remove_crew', method: 'POST', data: { auth: auth, regatta: rid, sailor: sid }, error: function (xhr, status, error) { if (xhr.status == 401) { console.log('authentification failed'); toastError('Authentifizierung fehlgeschlagen. Versuche es erneut.'); } else if (xhr.status == 0) { toastError('Du bist momentan offline.
Stelle eine Internetverbindung her, um die Änderungen zu speichern'); } else { console.log('planning_remove_crew: unbekannter Fehler', status, error); console.log(xhr); toastError('Ein unbekannter Fehler ist aufgetreten. Bitte versuche es noch einmal', 5000); } $('#menu-edit').hideMenu(); hideLoader(); }, success: async function (data, status, xhr) { await sync(); planningEdit(rid); hideLoader(); } }); } else { sailorIsSteuermann = false; $('#input-edit-search').val('').trigger('focusin').trigger('focusout'); sailorsSearch(); $('#menu-edit').hideMenu(); $('#menu-sailor').find('.menu-title').find('h1').text('Crew hinzufügen'); $('#menu-sailor').showMenu(); } } async function planningChangeSteuermann() { sailorIsSteuermann = true; $('#input-edit-search').val('').trigger('focusin').trigger('focusout'); sailorsSearch(); $('#menu-edit').hideMenu(); $('#menu-sailor').find('.menu-title').find('h1').text('Steuermann/-frau bearbeiten'); $('#menu-sailor').showMenu(); } async function planningEdit(id) { var regatta = await dbGetData('regattas', id); $('#menu-edit').find('.menu-title').find('p').text(regatta.name); var plannings = await dbGetDataIndex('plannings', 'regatta', regatta['id']); var planning = null; if (isLoggedIn()) { for (i in plannings) { if (plannings[i]['user'] == USER_ID) { planning = plannings[i]; break; } } } $('#switch-planning-include').data('regatta', id); if (planning !== null) { $('#switch-planning-include').prop('checked', true); $('#item-steuermann').show(); if (planning.steuermann !== null) { $('#item-steuermann').find('span').text('Steuer: ' + (await dbGetData('sailors', planning.steuermann)).name); } else { $('#item-steuermann').find('span').html('Steuer: noch unklar'); } $('.item-crew').remove(); var crew = planning.crew.split(','); for (c in crew) { var sailor = await dbGetData('sailors', crew[c]); if (sailor !== null) { var item = ''; item += '' + sailor.name + ''; item += ''; item += ''; $('#menu-edit').find('.content').find('.list-group').append(item); } } var item = ''; item += 'Weiteren Segler hinzufügen'; item += ''; item += ''; $('#menu-edit').find('.content').find('.list-group').append(item); } else { $('#switch-planning-include').prop('checked', false); $('#item-steuermann').hide(); $('.item-crew').remove(); } $('#menu-edit').showMenu(); } function selectChange() { var val = $('#select-year').val(); if (typeof siteScript === 'function') { history.replaceState(null, '', '?year=' + val); siteScript(); } } function initYear() { var year = findGetParameter('year'); if (year === null) year = new Date().getFullYear(); $('#select-year').html(''); $('#select-year').val(year); } var firstCall = true; var rows = []; var today; async function drawList () { window.setTimeout(function () { var list = ''; rows.forEach(function (entry) { if (entry == null) { list += '
Heute ist der ' + formatDate('d.m.Y', today) + '
'; } else if (search($('#input-search').val(), entry.keywords)) { list += entry.content; } }); $('#div-regattas').html(list); }, 0); } var siteScript = async function() { if (!isLoggedIn()) { location.href = LINK_PRE + 'planning'; return; } if (firstCall) { firstCall = false; initYear(); $('#select-year').change(selectChange); $('#input-search').on('input', drawList); $('#switch-planning-include').parent().parent().click(planningSwitchChanged); $('#item-steuermann').click(planningChangeSteuermann); $('#input-edit-search').on('input', sailorsSearch); initSailors(); } today = getToday(); var selectedYear = $('#select-year').val(); var minDate = parseDate(selectedYear + '-01-01'); var maxDate = parseDate(selectedYear + '-12-31'); var regattas = await dbGetRegattasRange(minDate, maxDate); var plannings = await dbGetDataIndex('plannings', 'user', USER_ID); for (var i = regattas.length - 1; i >= 0; i --) { var entry = regattas[i]; var okay = false; for (p in plannings) { if (plannings[p].regatta == entry.id) { regattas[i].planning = plannings[p]; okay = true; break; } } if (!okay) { regattas[i].planning = null; } } var years = await dbGetData('years'); years.sort(function (a, b) { if (a['year'] > b['year']) return -1; if (a['year'] < b['year']) return 1; return 0; }); var options = ''; for (id in years) { var year = years[id]['year']; options += ''; } $('#select-year').html(options); $('#select-year').val(selectedYear); var count = regattas.length; if (count > 0) { if (count == 1) { $('#p-count').html('Es wurde 1 Regatta gefunden!'); } else { $('#p-count').html('Es wurden ' + count + ' Regatten gefunden!'); } $('#div-regattas').show(); $('#input-search').parent().show(); var heute = false; rows = []; for (id in regattas) { var entry = regattas[id]; var club = null; if (entry['club'] != null) club = await dbGetData('clubs', entry['club']); if (entry.planning !== null) { if (entry.planning.steuermann !== null) { entry.planning.steuermann = (await dbGetData('sailors', entry.planning.steuermann)).name; } var crewString = entry.planning.crew.split(','); entry.planning.crew = []; for (c in crewString) { var sailor = await dbGetData('sailors', crewString[c]); if (sailor !== null) { entry.planning.crew.push(sailor.name); } } } var dateFrom = entry['dateFrom']; var dateTo = entry['dateTo']; var row = { keywords: [], content: '' }; row.keywords.push(entry['name']); if (entry['number'] != null) row.keywords.push(entry['number']); if (club != null) row.keywords.push(club['kurz'], club['name']); if (!heute && (today <= dateFrom)) { rows.push(null); heute = true; } if (entry.planning !== null) { row.content += '
'; } else { row.content += '
'; } // ZEILE 1 // Name row.content += '
' + (entry['canceled'] == 1 ? '' : '') + entry['name'] + (entry['canceled'] == 1 ? '' : '') + '
'; // ZEILE 2 row.content += '
'; // Number row.content += '
' + ((entry['number'] != null) ? ('# ' + entry['number']) : '') + '
'; // Special row.content += '
' + entry['special'] + '
'; // Club row.content += '
' + ((club != null) ? club['kurz'] : '') + '
'; row.content += '
'; // ZEILE 3 row.content += '
'; // Date if (entry['length'] < 1) { if (formatDate('d.m', dateFrom) == '01.01') { row.content += '
Datum noch unklar
'; } else { row.content += '
' + formatDate("d.m.Y", dateFrom) + ' - Datum nicht final
'; } } else { row.content += '
' + formatDate("d.m.Y", dateFrom) + ' - ' + formatDate("d.m.Y", dateTo) + '
'; } // RLF row.content += '
' + parseFloat(entry['rlf']).toFixed(2) + '
'; row.content += '
'; if (entry.planning !== null) { // ZEILE 4 row.content += '
'; // ZEILE 5 row.content += '
'; row.content += '
' + (entry.planning.steuermann !== null ? entry.planning.steuermann : 'noch unklar') + '
'; row.content += '
'; // ZEILE 6... for (var i in entry.planning.crew) { row.content += '
'; row.content += '
' + entry.planning.crew[i] + '
'; row.content += '
'; } } else { row.content += '
Du planst nicht, hierhin zu fahren
'; } row.content += '
'; rows.push(row); } if (!heute) { rows.push(null); } drawList(); } else { $('#p-count').html('Keine Regatten gefunden!'); $('#div-regattas').hide(); $('#input-search').parent().hide(); } hideLoader(); }