-
Notifications
You must be signed in to change notification settings - Fork 576
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fetch statusText
polyfill
#5530
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
//////////////////////////////////////////////////////////////////////////// | ||
// | ||
// Copyright 2023 Realm Inc. | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
// | ||
//////////////////////////////////////////////////////////////////////////// | ||
|
||
const HTTP_STATUS_TEXTS: Record<number, string | undefined> = { | ||
100: "Continue", | ||
101: "Switching Protocols", | ||
102: "Processing", | ||
200: "OK", | ||
201: "Created", | ||
202: "Accepted", | ||
203: "Non-Authoritative Information", | ||
204: "No Content", | ||
205: "Reset Content", | ||
206: "Partial Content", | ||
300: "Multiple Choices", | ||
301: "Moved Permanently", | ||
302: "Found", | ||
303: "See Other", | ||
304: "Not Modified", | ||
307: "Temporary Redirect", | ||
308: "Permanent Redirect", | ||
400: "Bad Request", | ||
401: "Unauthorized", | ||
402: "Payment Required", | ||
403: "Forbidden", | ||
404: "Not Found", | ||
405: "Method Not Allowed", | ||
406: "Not Acceptable", | ||
407: "Proxy Authentication Required", | ||
408: "Request Timeout", | ||
409: "Conflict", | ||
410: "Gone", | ||
411: "Length Required", | ||
412: "Precondition Failed", | ||
413: "Payload Too Large", | ||
414: "URI Too Long", | ||
415: "Unsupported Media Type", | ||
416: "Range Not Satisfiable", | ||
417: "Expectation Failed", | ||
418: "I'm a teapot", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🫖 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
422: "Unprocessable Entity", | ||
425: "Too Early", | ||
426: "Upgrade Required", | ||
429: "Too Many Requests", | ||
431: "Request Header Fields Too Large", | ||
451: "Unavailable For Legal Reasons", | ||
500: "Internal Server Error", | ||
501: "Not Implemented", | ||
502: "Bad Gateway", | ||
503: "Service Unavailable", | ||
504: "Gateway Timeout", | ||
505: "HTTP Version Not Supported", | ||
506: "Variant Also Negotiates", | ||
507: "Insufficient Storage", | ||
508: "Loop Detected", | ||
510: "Not Extended", | ||
511: "Network Authentication Required", | ||
Comment on lines
+23
to
+75
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can you add that as a comment in the code? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Done 👍 |
||
}; | ||
|
||
export function deriveStatusText(status: number): string | undefined { | ||
return HTTP_STATUS_TEXTS[status]; | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I just moved this up to be a
static
member, since it didn't need access to the instance.