|
import { removeBrackets, camelcaseOptionName } from "./utils.ts"; |
|
interface OptionConfig { |
|
default?: any; |
|
type?: any[]; |
|
} |
|
export default class Option { |
|
|
|
name: string; |
|
|
|
|
|
names: string[]; |
|
isBoolean?: boolean; |
|
|
|
required?: boolean; |
|
config: OptionConfig; |
|
negated: boolean; |
|
|
|
constructor(public rawName: string, public description: string, config?: OptionConfig) { |
|
this.config = Object.assign({}, config); |
|
|
|
rawName = rawName.replace(/\.\*/g, ''); |
|
this.negated = false; |
|
this.names = removeBrackets(rawName).split(',').map((v: string) => { |
|
let name = v.trim().replace(/^-{1,2}/, ''); |
|
|
|
if (name.startsWith('no-')) { |
|
this.negated = true; |
|
name = name.replace(/^no-/, ''); |
|
} |
|
|
|
return camelcaseOptionName(name); |
|
}).sort((a, b) => a.length > b.length ? 1 : -1); |
|
|
|
|
|
this.name = this.names[this.names.length - 1]; |
|
|
|
if (this.negated && this.config.default == null) { |
|
this.config.default = true; |
|
} |
|
|
|
if (rawName.includes('<')) { |
|
this.required = true; |
|
} else if (rawName.includes('[')) { |
|
this.required = false; |
|
} else { |
|
|
|
this.isBoolean = true; |
|
} |
|
} |
|
|
|
} |
|
export type { OptionConfig }; |