-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Modified user create, edit and update routes to use right http verbs
- Loading branch information
Showing
17 changed files
with
263 additions
and
85 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,129 @@ | ||
(function() { | ||
/** @type {import("../htmx").HtmxInternalApi} */ | ||
var api | ||
|
||
var attrPrefix = 'hx-target-' | ||
|
||
// IE11 doesn't support string.startsWith | ||
function startsWith(str, prefix) { | ||
return str.substring(0, prefix.length) === prefix | ||
} | ||
|
||
/** | ||
* @param {HTMLElement} elt | ||
* @param {number} respCode | ||
* @returns {HTMLElement | null} | ||
*/ | ||
function getRespCodeTarget(elt, respCodeNumber) { | ||
if (!elt || !respCodeNumber) return null | ||
|
||
var respCode = respCodeNumber.toString() | ||
|
||
// '*' is the original syntax, as the obvious character for a wildcard. | ||
// The 'x' alternative was added for maximum compatibility with HTML | ||
// templating engines, due to ambiguity around which characters are | ||
// supported in HTML attributes. | ||
// | ||
// Start with the most specific possible attribute and generalize from | ||
// there. | ||
var attrPossibilities = [ | ||
respCode, | ||
|
||
respCode.substr(0, 2) + '*', | ||
respCode.substr(0, 2) + 'x', | ||
|
||
respCode.substr(0, 1) + '*', | ||
respCode.substr(0, 1) + 'x', | ||
respCode.substr(0, 1) + '**', | ||
respCode.substr(0, 1) + 'xx', | ||
|
||
'*', | ||
'x', | ||
'***', | ||
'xxx' | ||
] | ||
if (startsWith(respCode, '4') || startsWith(respCode, '5')) { | ||
attrPossibilities.push('error') | ||
} | ||
|
||
for (var i = 0; i < attrPossibilities.length; i++) { | ||
var attr = attrPrefix + attrPossibilities[i] | ||
var attrValue = api.getClosestAttributeValue(elt, attr) | ||
if (attrValue) { | ||
if (attrValue === 'this') { | ||
return api.findThisElement(elt, attr) | ||
} else { | ||
return api.querySelectorExt(elt, attrValue) | ||
} | ||
} | ||
} | ||
|
||
return null | ||
} | ||
|
||
/** @param {Event} evt */ | ||
function handleErrorFlag(evt) { | ||
if (evt.detail.isError) { | ||
if (htmx.config.responseTargetUnsetsError) { | ||
evt.detail.isError = false | ||
} | ||
} else if (htmx.config.responseTargetSetsError) { | ||
evt.detail.isError = true | ||
} | ||
} | ||
|
||
htmx.defineExtension('response-targets', { | ||
|
||
/** @param {import("../htmx").HtmxInternalApi} apiRef */ | ||
init: function(apiRef) { | ||
api = apiRef | ||
|
||
if (htmx.config.responseTargetUnsetsError === undefined) { | ||
htmx.config.responseTargetUnsetsError = true | ||
} | ||
if (htmx.config.responseTargetSetsError === undefined) { | ||
htmx.config.responseTargetSetsError = false | ||
} | ||
if (htmx.config.responseTargetPrefersExisting === undefined) { | ||
htmx.config.responseTargetPrefersExisting = false | ||
} | ||
if (htmx.config.responseTargetPrefersRetargetHeader === undefined) { | ||
htmx.config.responseTargetPrefersRetargetHeader = true | ||
} | ||
}, | ||
|
||
/** | ||
* @param {string} name | ||
* @param {Event} evt | ||
*/ | ||
onEvent: function(name, evt) { | ||
if (name === 'htmx:beforeSwap' && | ||
evt.detail.xhr && | ||
evt.detail.xhr.status !== 200) { | ||
if (evt.detail.target) { | ||
if (htmx.config.responseTargetPrefersExisting) { | ||
evt.detail.shouldSwap = true | ||
handleErrorFlag(evt) | ||
return true | ||
} | ||
if (htmx.config.responseTargetPrefersRetargetHeader && | ||
evt.detail.xhr.getAllResponseHeaders().match(/HX-Retarget:/i)) { | ||
evt.detail.shouldSwap = true | ||
handleErrorFlag(evt) | ||
return true | ||
} | ||
} | ||
if (!evt.detail.requestConfig) { | ||
return true | ||
} | ||
var target = getRespCodeTarget(evt.detail.requestConfig.elt, evt.detail.xhr.status) | ||
if (target) { | ||
handleErrorFlag(evt) | ||
evt.detail.shouldSwap = true | ||
evt.detail.target = target | ||
} | ||
return true | ||
} | ||
} | ||
}) | ||
})() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
document.body.addEventListener('htmx:afterRequest', function (evt) { | ||
const errorTarget = document.getElementById("box-error") | ||
const unexpectedServerError = errorTarget.getAttribute("data-unexpected-server-error") | ||
const unexpectedError = errorTarget.getAttribute("data-unexpected-error") | ||
if (evt.detail.successful) { | ||
// Successful request, clear out alert | ||
errorTarget.setAttribute("hidden", "true") | ||
errorTarget.innerText = ""; | ||
} else if (evt.detail.failed && evt.detail.xhr) { | ||
// Server error with response contents, equivalent to htmx:responseError | ||
const xhr = evt.detail.xhr; | ||
if (xhr.status == "403") { | ||
return location.reload() | ||
} | ||
|
||
console.warn("Server error", evt.detail) | ||
errorTarget.innerText = unexpectedServerError + `${xhr.status} - ${xhr.statusText}` | ||
errorTarget.removeAttribute("hidden") | ||
} else { | ||
// Unspecified failure, usually caused by network error | ||
console.error("Unexpected htmx error", evt.detail) | ||
errorTarget.innerText = unexpectedError | ||
errorTarget.removeAttribute("hidden") | ||
} | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
<div class="container mt-5"> | ||
{{if .RemainingIndexingTime}} | ||
<div class="row text-start"> | ||
<div class="alert alert-warning" role="alert"> | ||
<p>{{t .Lang "Indexing in progress, search results may not be accurate."}}</p> | ||
<div class="progress" role="progressbar" aria-label='{{t .Lang "Indexing progress"}}' aria-valuenow="0" aria-valuemin="0" aria-valuemax="100"> | ||
<div class="progress-bar" style="width: {{.IndexingProgressPercentage}}%">{{.IndexingProgressPercentage}}%</div> | ||
</div> | ||
<p class="text-end"><small>{{t .Lang "Remaining time: %s minutes" .RemainingIndexingTime}}</small></p> | ||
</div> | ||
</div> | ||
{{end}} | ||
|
||
<div class="row text-start"> | ||
<div class="alert alert-danger" role="alert" hidden id="box-error" data-unexpected-error='{{t .Lang "Unexpected error, check your connection and try to refresh the page."}}' data-unexpected-server-error='{{t .Lang "Unexpected server error"}}'> | ||
</div> | ||
</div> | ||
|
||
{{if .Error}} | ||
<div class="row text-start"> | ||
<div class="alert alert-danger" role="alert"> | ||
{{t .Lang .Error}} | ||
</div> | ||
</div> | ||
{{end}} | ||
|
||
{{if .Warning}} | ||
<div class="row text-start"> | ||
<div class="alert alert-warning" role="alert"> | ||
{{t .Lang .Warning}} | ||
</div> | ||
</div> | ||
{{end}} | ||
|
||
{{if .Message}} | ||
<div class="row text-start"> | ||
<div class="alert alert-success" role="alert"> | ||
{{t .Lang .Message}} | ||
</div> | ||
</div> | ||
{{end}} | ||
|
||
{{embed}} | ||
</div> |
Oops, something went wrong.