blob: 064bd67556e09ec3ffa5eb8198829d140f53a19f [file] [log] [blame]
/**
* @license Apache-2.0
*
* Copyright 2022 ocket8888
*
* 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.
*/
/** The allowed/known "level"s of Traffic Ops API Alerts. */
export const enum AlertLevel {
/** An error occurred, and the request could not be fulfilled. */
ERROR = "error",
/** Informative alert, not indicative of success or failure. */
INFO = "info",
/** The request succeeded, and the Alert text describes the action taken. */
SUCCESS = "success",
/** The request may have succeeded, but the user should be aware of something. */
WARNING = "warning"
}
/**
* An Alert is some human-readable notification sent back from the Traffic Ops
* API for the user, in addition to a response object where applicable.
*/
export interface Alert {
level: AlertLevel;
text: string;
}
/**
* Gets the text of any and all error-level Alerts.
*
* @param as Alerts to check for errors.
* @returns The `text` of each error-level Alert found in `as`.
*/
export function errors(as: Array<Alert>): Array<string> {
return as.filter(a=>a.level===AlertLevel.ERROR).map(a=>a.text);
}