mirror of
https://github.com/grocy/grocy.git
synced 2025-04-29 17:45:39 +00:00
112 lines
2.3 KiB
JavaScript
112 lines
2.3 KiB
JavaScript
$('#save-userentity-button').on('click', function(e)
|
|
{
|
|
e.preventDefault();
|
|
|
|
if (!Grocy.FrontendHelpers.ValidateForm("userentity-form", true))
|
|
{
|
|
return;
|
|
}
|
|
|
|
if ($(".combobox-menu-visible").length)
|
|
{
|
|
return;
|
|
}
|
|
|
|
var jsonData = $('#userentity-form').serializeJSON();
|
|
Grocy.FrontendHelpers.BeginUiBusy("userentity-form");
|
|
|
|
var redirectUrl = U("/userentities");
|
|
|
|
if (Grocy.EditMode === 'create')
|
|
{
|
|
Grocy.Api.Post('objects/userentities', jsonData,
|
|
function(result)
|
|
{
|
|
if (GetUriParam("embedded") !== undefined)
|
|
{
|
|
window.parent.postMessage(WindowMessageBag("Reload"), Grocy.BaseUrl);
|
|
}
|
|
else
|
|
{
|
|
window.location.href = redirectUrl;
|
|
}
|
|
},
|
|
function(xhr)
|
|
{
|
|
Grocy.FrontendHelpers.EndUiBusy("userentity-form");
|
|
Grocy.FrontendHelpers.ShowGenericError('Error while saving, probably this item already exists', xhr.response);
|
|
}
|
|
);
|
|
}
|
|
else
|
|
{
|
|
Grocy.Api.Put('objects/userentities/' + Grocy.EditObjectId, jsonData,
|
|
function(result)
|
|
{
|
|
if (GetUriParam("embedded") !== undefined)
|
|
{
|
|
window.parent.postMessage(WindowMessageBag("Reload"), Grocy.BaseUrl);
|
|
}
|
|
else
|
|
{
|
|
window.location.href = redirectUrl;
|
|
}
|
|
},
|
|
function(xhr)
|
|
{
|
|
Grocy.FrontendHelpers.EndUiBusy("userentity-form");
|
|
Grocy.FrontendHelpers.ShowGenericError('Error while saving, probably this item already exists', xhr.response);
|
|
}
|
|
);
|
|
}
|
|
});
|
|
|
|
$('#userentity-form input').keyup(function(event)
|
|
{
|
|
Grocy.FrontendHelpers.ValidateForm('userentity-form');
|
|
});
|
|
|
|
$('#userentity-form select').change(function(event)
|
|
{
|
|
Grocy.FrontendHelpers.ValidateForm('userentity-form');
|
|
});
|
|
|
|
$('#userentity-form input').keydown(function(event)
|
|
{
|
|
if (event.keyCode === 13) // Enter
|
|
{
|
|
event.preventDefault();
|
|
|
|
if (!Grocy.FrontendHelpers.ValidateForm('userentity-form'))
|
|
{
|
|
return false;
|
|
}
|
|
else
|
|
{
|
|
$('#save-userentity-button').click();
|
|
}
|
|
}
|
|
});
|
|
|
|
$("#show_in_sidebar_menu").on("click", function()
|
|
{
|
|
if (this.checked)
|
|
{
|
|
$("#icon_css_class").removeAttr("disabled");
|
|
}
|
|
else
|
|
{
|
|
$("#icon_css_class").attr("disabled", "");
|
|
}
|
|
});
|
|
|
|
Grocy.FrontendHelpers.ValidateForm('userentity-form');
|
|
setTimeout(function()
|
|
{
|
|
$('#name').focus();
|
|
}, 500);
|
|
|
|
// Click twice to trigger on-click but not change the actual checked state
|
|
$("#show_in_sidebar_menu").click();
|
|
$("#show_in_sidebar_menu").click();
|