From 29b28092791c6d5fb004da65c43e11e713d69305 Mon Sep 17 00:00:00 2001 From: Yoswaris Lawpaiboon <22832362+kiznick@users.noreply.github.com> Date: Fri, 10 Mar 2023 22:04:47 +0700 Subject: [PATCH] Change Icon, Add missing var --- badge-list.md | 123 ----------- src/components/BadgeGeneratorDialog.vue | 264 +++++++++++++----------- src/components/PublicGroupList.vue | 3 +- src/icon.js | 2 + 4 files changed, 142 insertions(+), 250 deletions(-) delete mode 100644 badge-list.md diff --git a/badge-list.md b/badge-list.md deleted file mode 100644 index 958eb100..00000000 --- a/badge-list.md +++ /dev/null @@ -1,123 +0,0 @@ -/api/badge/:id/status -``` - label, - upLabel = "Up", - downLabel = "Down", - pendingLabel = "Pending", - maintenanceLabel = "Maintenance", - upColor = badgeConstants.defaultUpColor, - downColor = badgeConstants.defaultDownColor, - pendingColor = badgeConstants.defaultPendingColor, - maintenanceColor = badgeConstants.defaultMaintenanceColor, - style = badgeConstants.defaultStyle, - value, // for demo purpose only -``` - -``` -/api/badge/:id/uptime/:duration? - label, - labelPrefix, - labelSuffix = badgeConstants.defaultUptimeLabelSuffix, - prefix, - suffix = badgeConstants.defaultUptimeValueSuffix, - color, - labelColor, - style = badgeConstants.defaultStyle, - value, // for demo purpose only -``` - -``` -/api/badge/:id/ping/:duration? - label, - labelPrefix, - labelSuffix = badgeConstants.defaultPingLabelSuffix, - prefix, - suffix = badgeConstants.defaultPingValueSuffix, - color = badgeConstants.defaultPingColor, - labelColor, - style = badgeConstants.defaultStyle, - value, // for demo purpose only -``` - -``` -/api/badge/:id/avg-response/:duration? - label, - labelPrefix, - labelSuffix, - prefix, - suffix = badgeConstants.defaultPingValueSuffix, - color = badgeConstants.defaultPingColor, - labelColor, - style = badgeConstants.defaultStyle, - value, // for demo purpose only -``` - -``` -/api/badge/:id/cert-exp - label, - labelPrefix, - labelSuffix, - prefix, - suffix = date ? "" : badgeConstants.defaultCertExpValueSuffix, - upColor = badgeConstants.defaultUpColor, - warnColor = badgeConstants.defaultWarnColor, - downColor = badgeConstants.defaultDownColor, - warnDays = badgeConstants.defaultCertExpireWarnDays, - downDays = badgeConstants.defaultCertExpireDownDays, - labelColor, - style = badgeConstants.defaultStyle, - value, // for demo purpose only -``` - -``` -/api/badge/:id/response - label, - labelPrefix, - labelSuffix, - prefix, - suffix = badgeConstants.defaultPingValueSuffix, - color = badgeConstants.defaultPingColor, - labelColor, - style = badgeConstants.defaultStyle, - value, // for demo purpose only -``` - -``` -Use in all routes - label - prefix - suffix, - labelColor - style = badgeConstants.defaultStyle, - value // for demo purpose only -``` - -``` -Use in all routes except status and cert-exp - color -``` - -``` -Use in all routes except status - labelPrefix - labelSuffix -``` - -``` -Use in routes status and cert-exp - upColor = badgeConstants.defaultUpColor, - downColor = badgeConstants.defaultDownColor, -``` - -``` -Use in status route only - pendingColor = badgeConstants.defaultPendingColor, - maintenanceColor = badgeConstants.defaultMaintenanceColor, -``` - -``` -Use in cert-exp route only - warnColor = badgeConstants.defaultWarnColor, - warnDays = badgeConstants.defaultCertExpireWarnDays, - downDays = badgeConstants.defaultCertExpireDownDays, -``` \ No newline at end of file diff --git a/src/components/BadgeGeneratorDialog.vue b/src/components/BadgeGeneratorDialog.vue index b8d912fb..1ebcd525 100644 --- a/src/components/BadgeGeneratorDialog.vue +++ b/src/components/BadgeGeneratorDialog.vue @@ -1,133 +1,131 @@