From 064b91e4dda1ff3015604cbee90b6400961880c9 Mon Sep 17 00:00:00 2001 From: Rendall Date: Fri, 18 Sep 2020 13:43:18 +0300 Subject: [PATCH 1/2] Allow localhost:xxxx domains when adding websites Adding `localhost:` domains to websites fail to validate, but it would help for local development --- lib/constants.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/constants.js b/lib/constants.js index 4f5c6e4c..cf1ca87b 100644 --- a/lib/constants.js +++ b/lib/constants.js @@ -23,7 +23,7 @@ export const FILTER_DOMAIN_ONLY = 0; export const FILTER_COMBINED = 1; export const FILTER_RAW = 2; -export const DOMAIN_REGEX = /((?=[a-z0-9-]{1,63}\.)(xn--)?[a-z0-9]+(-[a-z0-9]+)*\.)+[a-z]{2,63}/; +export const DOMAIN_REGEX = /localhost:\d{1,5}|((?=[a-z0-9-]{1,63}\.)(xn--)?[a-z0-9]+(-[a-z0-9]+)*\.)+[a-z]{2,63}/; export const DESKTOP_SCREEN_WIDTH = 1920; export const LAPTOP_SCREEN_WIDTH = 1024; From be74091ca30d3ba21527b0ded8beeadc36f87c22 Mon Sep 17 00:00:00 2001 From: Rendall Date: Sat, 19 Sep 2020 01:02:55 +0300 Subject: [PATCH 2/2] Make port optional when website is localhost --- lib/constants.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/constants.js b/lib/constants.js index cf1ca87b..23e0b1f8 100644 --- a/lib/constants.js +++ b/lib/constants.js @@ -23,7 +23,7 @@ export const FILTER_DOMAIN_ONLY = 0; export const FILTER_COMBINED = 1; export const FILTER_RAW = 2; -export const DOMAIN_REGEX = /localhost:\d{1,5}|((?=[a-z0-9-]{1,63}\.)(xn--)?[a-z0-9]+(-[a-z0-9]+)*\.)+[a-z]{2,63}/; +export const DOMAIN_REGEX = /localhost(:\d{1,5})?|((?=[a-z0-9-]{1,63}\.)(xn--)?[a-z0-9]+(-[a-z0-9]+)*\.)+[a-z]{2,63}/; export const DESKTOP_SCREEN_WIDTH = 1920; export const LAPTOP_SCREEN_WIDTH = 1024;