mirror of
https://github.com/grocy/grocy.git
synced 2025-04-29 09:39:57 +00:00
84 lines
1.9 KiB
JavaScript
84 lines
1.9 KiB
JavaScript
$('#save-mealplansection-button').on('click', function(e)
|
|
{
|
|
e.preventDefault();
|
|
|
|
if (!Grocy.FrontendHelpers.ValidateForm("mealplansection-form", true))
|
|
{
|
|
return;
|
|
}
|
|
|
|
var jsonData = $('#mealplansection-form').serializeJSON();
|
|
Grocy.FrontendHelpers.BeginUiBusy("mealplansection-form");
|
|
|
|
if (Grocy.EditMode === 'create')
|
|
{
|
|
Grocy.Api.Post('objects/meal_plan_sections', jsonData,
|
|
function(result)
|
|
{
|
|
if (GetUriParam("embedded") !== undefined)
|
|
{
|
|
window.parent.postMessage(WindowMessageBag("Reload"), Grocy.BaseUrl);
|
|
}
|
|
else
|
|
{
|
|
window.location.href = U('/mealplansections');
|
|
}
|
|
},
|
|
function(xhr)
|
|
{
|
|
Grocy.FrontendHelpers.EndUiBusy("mealplansection-form");
|
|
Grocy.FrontendHelpers.ShowGenericError('Error while saving, probably this item already exists', xhr.response)
|
|
}
|
|
);
|
|
}
|
|
else
|
|
{
|
|
Grocy.Api.Put('objects/meal_plan_sections/' + Grocy.EditObjectId, jsonData,
|
|
function(result)
|
|
{
|
|
if (GetUriParam("embedded") !== undefined)
|
|
{
|
|
window.parent.postMessage(WindowMessageBag("Reload"), Grocy.BaseUrl);
|
|
}
|
|
else
|
|
{
|
|
window.location.href = U('/mealplansections');
|
|
}
|
|
},
|
|
function(xhr)
|
|
{
|
|
Grocy.FrontendHelpers.EndUiBusy("mealplansection-form");
|
|
Grocy.FrontendHelpers.ShowGenericError('Error while saving, probably this item already exists', xhr.response)
|
|
}
|
|
);
|
|
}
|
|
});
|
|
|
|
$('#mealplansection-form input').keyup(function(event)
|
|
{
|
|
Grocy.FrontendHelpers.ValidateForm('mealplansection-form');
|
|
});
|
|
|
|
$('#mealplansection-form input').keydown(function(event)
|
|
{
|
|
if (event.keyCode === 13) // Enter
|
|
{
|
|
event.preventDefault();
|
|
|
|
if (!Grocy.FrontendHelpers.ValidateForm('mealplansection-form'))
|
|
{
|
|
return false;
|
|
}
|
|
else
|
|
{
|
|
$('#save-mealplansections-button').click();
|
|
}
|
|
}
|
|
});
|
|
|
|
Grocy.FrontendHelpers.ValidateForm('mealplansection-form');
|
|
setTimeout(function()
|
|
{
|
|
$('#name').focus();
|
|
}, 500);
|