- ✅ Ticket 1.1: Estructura Clean Architecture en backend - ✅ Ticket 1.2: Schemas Zod compartidos - ✅ Ticket 1.3: Refactorización drugs.ts (1362 → 8 archivos modulares) - ✅ Ticket 1.4: Refactorización procedures.ts (3583 → 6 archivos modulares) - ✅ Ticket 1.5: Eliminación de duplicidades (~50 líneas) Cambios principales: - Creada estructura Clean Architecture en backend/src/ - Schemas Zod compartidos en backend/src/shared/schemas/ - Refactorización modular de drugs y procedures - Utilidades genéricas en src/utils/ (filter, validation) - Eliminados scripts obsoletos y documentación antigua - Corregidos errores: QueryClient, import test-error-handling - Build verificado y funcionando correctamente
80 lines
1.7 KiB
JavaScript
80 lines
1.7 KiB
JavaScript
let browserslist = require('browserslist')
|
|
let { agents } = require('caniuse-lite/dist/unpacker/agents')
|
|
|
|
let utils = require('./utils')
|
|
|
|
class Browsers {
|
|
constructor(data, requirements, options, browserslistOpts) {
|
|
this.data = data
|
|
this.options = options || {}
|
|
this.browserslistOpts = browserslistOpts || {}
|
|
this.selected = this.parse(requirements)
|
|
}
|
|
|
|
/**
|
|
* Return all prefixes for default browser data
|
|
*/
|
|
static prefixes() {
|
|
if (this.prefixesCache) {
|
|
return this.prefixesCache
|
|
}
|
|
|
|
this.prefixesCache = []
|
|
for (let name in agents) {
|
|
this.prefixesCache.push(`-${agents[name].prefix}-`)
|
|
}
|
|
|
|
this.prefixesCache = utils
|
|
.uniq(this.prefixesCache)
|
|
.sort((a, b) => b.length - a.length)
|
|
|
|
return this.prefixesCache
|
|
}
|
|
|
|
/**
|
|
* Check is value contain any possible prefix
|
|
*/
|
|
static withPrefix(value) {
|
|
if (!this.prefixesRegexp) {
|
|
this.prefixesRegexp = new RegExp(this.prefixes().join('|'))
|
|
}
|
|
|
|
return this.prefixesRegexp.test(value)
|
|
}
|
|
|
|
/**
|
|
* Is browser is selected by requirements
|
|
*/
|
|
isSelected(browser) {
|
|
return this.selected.includes(browser)
|
|
}
|
|
|
|
/**
|
|
* Return browsers selected by requirements
|
|
*/
|
|
parse(requirements) {
|
|
let opts = {}
|
|
for (let i in this.browserslistOpts) {
|
|
opts[i] = this.browserslistOpts[i]
|
|
}
|
|
opts.path = this.options.from
|
|
return browserslist(requirements, opts)
|
|
}
|
|
|
|
/**
|
|
* Return prefix for selected browser
|
|
*/
|
|
prefix(browser) {
|
|
let [name, version] = browser.split(' ')
|
|
let data = this.data[name]
|
|
|
|
let prefix = data.prefix_exceptions && data.prefix_exceptions[version]
|
|
if (!prefix) {
|
|
prefix = data.prefix
|
|
}
|
|
return `-${prefix}-`
|
|
}
|
|
}
|
|
|
|
module.exports = Browsers
|