fix: Final restoration with port 80
✅ COMPLETED: 1. Dockerfile uses port 80 (astro preview) 2. BaseLayout imports globals.css 3. globals.css with Tailwind v4 @theme syntax 4. index.astro has Header, Footer, FixedContact 5. All image references fixed to existing files 6. Hero uses hdpe_pipe_main.jpg 7. Product cards use hdpe001.jpg 8. pt-20 on main for fixed header ✅ TESTED LOCALLY: - Build: 15 pages in 1.27s - Docker build successful - Port 80 working - Images load - CSS works Ready for Easypanel deployment.
This commit is contained in:
421
node_modules/path-to-regexp/index.js
generated
vendored
Normal file
421
node_modules/path-to-regexp/index.js
generated
vendored
Normal file
@@ -0,0 +1,421 @@
|
||||
/**
|
||||
* Expose `pathToRegexp`.
|
||||
*/
|
||||
module.exports = pathToRegexp
|
||||
module.exports.match = match
|
||||
module.exports.regexpToFunction = regexpToFunction
|
||||
module.exports.parse = parse
|
||||
module.exports.compile = compile
|
||||
module.exports.tokensToFunction = tokensToFunction
|
||||
module.exports.tokensToRegExp = tokensToRegExp
|
||||
|
||||
/**
|
||||
* Default configs.
|
||||
*/
|
||||
var DEFAULT_DELIMITER = '/'
|
||||
|
||||
/**
|
||||
* The main path matching regexp utility.
|
||||
*
|
||||
* @type {RegExp}
|
||||
*/
|
||||
var PATH_REGEXP = new RegExp([
|
||||
// Match escaped characters that would otherwise appear in future matches.
|
||||
// This allows the user to escape special characters that won't transform.
|
||||
'(\\\\.)',
|
||||
// Match Express-style parameters and un-named parameters with a prefix
|
||||
// and optional suffixes. Matches appear as:
|
||||
//
|
||||
// ":test(\\d+)?" => ["test", "\d+", undefined, "?"]
|
||||
// "(\\d+)" => [undefined, undefined, "\d+", undefined]
|
||||
'(?:\\:(\\w+)(?:\\(((?:\\\\.|[^\\\\()])+)\\))?|\\(((?:\\\\.|[^\\\\()])+)\\))([+*?])?'
|
||||
].join('|'), 'g')
|
||||
|
||||
/**
|
||||
* Parse a string for the raw tokens.
|
||||
*
|
||||
* @param {string} str
|
||||
* @param {Object=} options
|
||||
* @return {!Array}
|
||||
*/
|
||||
function parse (str, options) {
|
||||
var tokens = []
|
||||
var key = 0
|
||||
var index = 0
|
||||
var path = ''
|
||||
var defaultDelimiter = (options && options.delimiter) || DEFAULT_DELIMITER
|
||||
var whitelist = (options && options.whitelist) || undefined
|
||||
var pathEscaped = false
|
||||
var res
|
||||
|
||||
while ((res = PATH_REGEXP.exec(str)) !== null) {
|
||||
var m = res[0]
|
||||
var escaped = res[1]
|
||||
var offset = res.index
|
||||
path += str.slice(index, offset)
|
||||
index = offset + m.length
|
||||
|
||||
// Ignore already escaped sequences.
|
||||
if (escaped) {
|
||||
path += escaped[1]
|
||||
pathEscaped = true
|
||||
continue
|
||||
}
|
||||
|
||||
var prev = ''
|
||||
var name = res[2]
|
||||
var capture = res[3]
|
||||
var group = res[4]
|
||||
var modifier = res[5]
|
||||
|
||||
if (!pathEscaped && path.length) {
|
||||
var k = path.length - 1
|
||||
var c = path[k]
|
||||
var matches = whitelist ? whitelist.indexOf(c) > -1 : true
|
||||
|
||||
if (matches) {
|
||||
prev = c
|
||||
path = path.slice(0, k)
|
||||
}
|
||||
}
|
||||
|
||||
// Push the current path onto the tokens.
|
||||
if (path) {
|
||||
tokens.push(path)
|
||||
path = ''
|
||||
pathEscaped = false
|
||||
}
|
||||
|
||||
var repeat = modifier === '+' || modifier === '*'
|
||||
var optional = modifier === '?' || modifier === '*'
|
||||
var pattern = capture || group
|
||||
var delimiter = prev || defaultDelimiter
|
||||
var prevText = prev || (typeof tokens[tokens.length - 1] === 'string' ? tokens[tokens.length - 1] : '')
|
||||
|
||||
tokens.push({
|
||||
name: name || key++,
|
||||
prefix: prev,
|
||||
delimiter: delimiter,
|
||||
optional: optional,
|
||||
repeat: repeat,
|
||||
pattern: pattern
|
||||
? escapeGroup(pattern)
|
||||
: restrictBacktrack(delimiter, defaultDelimiter, prevText)
|
||||
})
|
||||
}
|
||||
|
||||
// Push any remaining characters.
|
||||
if (path || index < str.length) {
|
||||
tokens.push(path + str.substr(index))
|
||||
}
|
||||
|
||||
return tokens
|
||||
}
|
||||
|
||||
function restrictBacktrack (delimiter, defaultDelimiter, prevText) {
|
||||
var charGroup = '[^' + escapeString(delimiter === defaultDelimiter ? delimiter : (delimiter + defaultDelimiter)) + ']'
|
||||
|
||||
if (!prevText || prevText.indexOf(delimiter) > -1 || prevText.indexOf(defaultDelimiter) > -1) {
|
||||
return charGroup + '+?'
|
||||
}
|
||||
|
||||
return escapeString(prevText) + '|(?:(?!' + escapeString(prevText) + ')' + charGroup + ')+?'
|
||||
}
|
||||
|
||||
/**
|
||||
* Compile a string to a template function for the path.
|
||||
*
|
||||
* @param {string} str
|
||||
* @param {Object=} options
|
||||
* @return {!function(Object=, Object=)}
|
||||
*/
|
||||
function compile (str, options) {
|
||||
return tokensToFunction(parse(str, options), options)
|
||||
}
|
||||
|
||||
/**
|
||||
* Create path match function from `path-to-regexp` spec.
|
||||
*/
|
||||
function match (str, options) {
|
||||
var keys = []
|
||||
var re = pathToRegexp(str, keys, options)
|
||||
return regexpToFunction(re, keys)
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a path match function from `path-to-regexp` output.
|
||||
*/
|
||||
function regexpToFunction (re, keys) {
|
||||
return function (pathname, options) {
|
||||
var m = re.exec(pathname)
|
||||
if (!m) return false
|
||||
|
||||
var path = m[0]
|
||||
var index = m.index
|
||||
var params = {}
|
||||
var decode = (options && options.decode) || decodeURIComponent
|
||||
|
||||
for (var i = 1; i < m.length; i++) {
|
||||
if (m[i] === undefined) continue
|
||||
|
||||
var key = keys[i - 1]
|
||||
|
||||
if (key.repeat) {
|
||||
params[key.name] = m[i].split(key.delimiter).map(function (value) {
|
||||
return decode(value, key)
|
||||
})
|
||||
} else {
|
||||
params[key.name] = decode(m[i], key)
|
||||
}
|
||||
}
|
||||
|
||||
return { path: path, index: index, params: params }
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Expose a method for transforming tokens into the path function.
|
||||
*/
|
||||
function tokensToFunction (tokens, options) {
|
||||
// Compile all the tokens into regexps.
|
||||
var matches = new Array(tokens.length)
|
||||
|
||||
// Compile all the patterns before compilation.
|
||||
for (var i = 0; i < tokens.length; i++) {
|
||||
if (typeof tokens[i] === 'object') {
|
||||
matches[i] = new RegExp('^(?:' + tokens[i].pattern + ')$', flags(options))
|
||||
}
|
||||
}
|
||||
|
||||
return function (data, options) {
|
||||
var path = ''
|
||||
var encode = (options && options.encode) || encodeURIComponent
|
||||
var validate = options ? options.validate !== false : true
|
||||
|
||||
for (var i = 0; i < tokens.length; i++) {
|
||||
var token = tokens[i]
|
||||
|
||||
if (typeof token === 'string') {
|
||||
path += token
|
||||
continue
|
||||
}
|
||||
|
||||
var value = data ? data[token.name] : undefined
|
||||
var segment
|
||||
|
||||
if (Array.isArray(value)) {
|
||||
if (!token.repeat) {
|
||||
throw new TypeError('Expected "' + token.name + '" to not repeat, but got array')
|
||||
}
|
||||
|
||||
if (value.length === 0) {
|
||||
if (token.optional) continue
|
||||
|
||||
throw new TypeError('Expected "' + token.name + '" to not be empty')
|
||||
}
|
||||
|
||||
for (var j = 0; j < value.length; j++) {
|
||||
segment = encode(value[j], token)
|
||||
|
||||
if (validate && !matches[i].test(segment)) {
|
||||
throw new TypeError('Expected all "' + token.name + '" to match "' + token.pattern + '"')
|
||||
}
|
||||
|
||||
path += (j === 0 ? token.prefix : token.delimiter) + segment
|
||||
}
|
||||
|
||||
continue
|
||||
}
|
||||
|
||||
if (typeof value === 'string' || typeof value === 'number' || typeof value === 'boolean') {
|
||||
segment = encode(String(value), token)
|
||||
|
||||
if (validate && !matches[i].test(segment)) {
|
||||
throw new TypeError('Expected "' + token.name + '" to match "' + token.pattern + '", but got "' + segment + '"')
|
||||
}
|
||||
|
||||
path += token.prefix + segment
|
||||
continue
|
||||
}
|
||||
|
||||
if (token.optional) continue
|
||||
|
||||
throw new TypeError('Expected "' + token.name + '" to be ' + (token.repeat ? 'an array' : 'a string'))
|
||||
}
|
||||
|
||||
return path
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Escape a regular expression string.
|
||||
*
|
||||
* @param {string} str
|
||||
* @return {string}
|
||||
*/
|
||||
function escapeString (str) {
|
||||
return str.replace(/([.+*?=^!:${}()[\]|/\\])/g, '\\$1')
|
||||
}
|
||||
|
||||
/**
|
||||
* Escape the capturing group by escaping special characters and meaning.
|
||||
*
|
||||
* @param {string} group
|
||||
* @return {string}
|
||||
*/
|
||||
function escapeGroup (group) {
|
||||
return group.replace(/([=!:$/()])/g, '\\$1')
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the flags for a regexp from the options.
|
||||
*
|
||||
* @param {Object} options
|
||||
* @return {string}
|
||||
*/
|
||||
function flags (options) {
|
||||
return options && options.sensitive ? '' : 'i'
|
||||
}
|
||||
|
||||
/**
|
||||
* Pull out keys from a regexp.
|
||||
*
|
||||
* @param {!RegExp} path
|
||||
* @param {Array=} keys
|
||||
* @return {!RegExp}
|
||||
*/
|
||||
function regexpToRegexp (path, keys) {
|
||||
if (!keys) return path
|
||||
|
||||
// Use a negative lookahead to match only capturing groups.
|
||||
var groups = path.source.match(/\((?!\?)/g)
|
||||
|
||||
if (groups) {
|
||||
for (var i = 0; i < groups.length; i++) {
|
||||
keys.push({
|
||||
name: i,
|
||||
prefix: null,
|
||||
delimiter: null,
|
||||
optional: false,
|
||||
repeat: false,
|
||||
pattern: null
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
return path
|
||||
}
|
||||
|
||||
/**
|
||||
* Transform an array into a regexp.
|
||||
*
|
||||
* @param {!Array} path
|
||||
* @param {Array=} keys
|
||||
* @param {Object=} options
|
||||
* @return {!RegExp}
|
||||
*/
|
||||
function arrayToRegexp (path, keys, options) {
|
||||
var parts = []
|
||||
|
||||
for (var i = 0; i < path.length; i++) {
|
||||
parts.push(pathToRegexp(path[i], keys, options).source)
|
||||
}
|
||||
|
||||
return new RegExp('(?:' + parts.join('|') + ')', flags(options))
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a path regexp from string input.
|
||||
*
|
||||
* @param {string} path
|
||||
* @param {Array=} keys
|
||||
* @param {Object=} options
|
||||
* @return {!RegExp}
|
||||
*/
|
||||
function stringToRegexp (path, keys, options) {
|
||||
return tokensToRegExp(parse(path, options), keys, options)
|
||||
}
|
||||
|
||||
/**
|
||||
* Expose a function for taking tokens and returning a RegExp.
|
||||
*
|
||||
* @param {!Array} tokens
|
||||
* @param {Array=} keys
|
||||
* @param {Object=} options
|
||||
* @return {!RegExp}
|
||||
*/
|
||||
function tokensToRegExp (tokens, keys, options) {
|
||||
options = options || {}
|
||||
|
||||
var strict = options.strict
|
||||
var start = options.start !== false
|
||||
var end = options.end !== false
|
||||
var delimiter = options.delimiter || DEFAULT_DELIMITER
|
||||
var endsWith = [].concat(options.endsWith || []).map(escapeString).concat('$').join('|')
|
||||
var route = start ? '^' : ''
|
||||
|
||||
// Iterate over the tokens and create our regexp string.
|
||||
for (var i = 0; i < tokens.length; i++) {
|
||||
var token = tokens[i]
|
||||
|
||||
if (typeof token === 'string') {
|
||||
route += escapeString(token)
|
||||
} else {
|
||||
var capture = token.repeat
|
||||
? '(?:' + token.pattern + ')(?:' + escapeString(token.delimiter) + '(?:' + token.pattern + '))*'
|
||||
: token.pattern
|
||||
|
||||
if (keys) keys.push(token)
|
||||
|
||||
if (token.optional) {
|
||||
if (!token.prefix) {
|
||||
route += '(' + capture + ')?'
|
||||
} else {
|
||||
route += '(?:' + escapeString(token.prefix) + '(' + capture + '))?'
|
||||
}
|
||||
} else {
|
||||
route += escapeString(token.prefix) + '(' + capture + ')'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (end) {
|
||||
if (!strict) route += '(?:' + escapeString(delimiter) + ')?'
|
||||
|
||||
route += endsWith === '$' ? '$' : '(?=' + endsWith + ')'
|
||||
} else {
|
||||
var endToken = tokens[tokens.length - 1]
|
||||
var isEndDelimited = typeof endToken === 'string'
|
||||
? endToken[endToken.length - 1] === delimiter
|
||||
: endToken === undefined
|
||||
|
||||
if (!strict) route += '(?:' + escapeString(delimiter) + '(?=' + endsWith + '))?'
|
||||
if (!isEndDelimited) route += '(?=' + escapeString(delimiter) + '|' + endsWith + ')'
|
||||
}
|
||||
|
||||
return new RegExp(route, flags(options))
|
||||
}
|
||||
|
||||
/**
|
||||
* Normalize the given path string, returning a regular expression.
|
||||
*
|
||||
* An empty array can be passed in for the keys, which will hold the
|
||||
* placeholder key descriptions. For example, using `/user/:id`, `keys` will
|
||||
* contain `[{ name: 'id', delimiter: '/', optional: false, repeat: false }]`.
|
||||
*
|
||||
* @param {(string|RegExp|Array)} path
|
||||
* @param {Array=} keys
|
||||
* @param {Object=} options
|
||||
* @return {!RegExp}
|
||||
*/
|
||||
function pathToRegexp (path, keys, options) {
|
||||
if (path instanceof RegExp) {
|
||||
return regexpToRegexp(path, keys)
|
||||
}
|
||||
|
||||
if (Array.isArray(path)) {
|
||||
return arrayToRegexp(/** @type {!Array} */ (path), keys, options)
|
||||
}
|
||||
|
||||
return stringToRegexp(/** @type {string} */ (path), keys, options)
|
||||
}
|
||||
Reference in New Issue
Block a user