svelte-i18n/src/cli/extract.ts
2019-11-22 13:51:18 -03:00

221 lines
5.7 KiB
TypeScript

import {
Node,
ObjectExpression,
Property,
ImportDeclaration,
ImportSpecifier,
CallExpression,
Identifier,
} from 'estree'
import resolvePath from 'object-resolve-path'
import { walk } from 'estree-walker'
import { Ast } from 'svelte/types/compiler/interfaces'
import { parse } from 'svelte/compiler'
const LIB_NAME = 'svelte-i18n'
const DEFINE_MESSAGES_METHOD_NAME = 'defineMessages'
const FORMAT_METHOD_NAMES = new Set(['format', '_'])
interface Message {
node: Node
meta: {
id?: string
default?: string
[key: string]: any
}
}
const isNumberString = (n: string) => !Number.isNaN(parseInt(n))
function deepSet(obj: any, path: string, value: any) {
const parts = path.replace(/\[(\w+)\]/gi, '.$1').split('.')
return parts.reduce((ref, part, i) => {
if (part in ref) return (ref = ref[part])
if (i < parts.length - 1) {
if (isNumberString(parts[i + 1])) {
return (ref = ref[part] = [])
}
return (ref = ref[part] = {})
}
return (ref[part] = value)
}, obj)
}
function isFormatCall(node: Node, imports: Set<string>) {
if (node.type !== 'CallExpression') return false
let identifier: Identifier
if (node.callee.type === 'MemberExpression') {
identifier = node.callee.object as Identifier
} else if (node.callee.type === 'Identifier') {
identifier = node.callee
}
if (!identifier || identifier.type !== 'Identifier') {
return false
}
const methodName = identifier.name.slice(1)
return imports.has(methodName)
}
function isMessagesDefinitionCall(node: Node, methodName: string) {
if (node.type !== 'CallExpression') return false
return (
node.callee &&
node.callee.type === 'Identifier' &&
node.callee.name === methodName
)
}
function getLibImportDeclarations(ast: Ast) {
return (ast.instance
? ast.instance.content.body.filter(
node =>
node.type === 'ImportDeclaration' && node.source.value === LIB_NAME,
)
: []) as ImportDeclaration[]
}
function getDefineMessagesSpecifier(decl: ImportDeclaration) {
return decl.specifiers.find(
spec =>
'imported' in spec && spec.imported.name === DEFINE_MESSAGES_METHOD_NAME,
) as ImportSpecifier
}
function getFormatSpecifiers(decl: ImportDeclaration) {
return decl.specifiers.filter(
spec => 'imported' in spec && FORMAT_METHOD_NAMES.has(spec.imported.name),
) as ImportSpecifier[]
}
function getObjFromExpression(exprNode: Node | ObjectExpression) {
if (exprNode.type !== 'ObjectExpression') return null
return exprNode.properties.reduce<Message>(
(acc, prop: Property) => {
// we only want primitives
if (prop.value.type !== 'Literal') return acc
if (prop.value.value !== Object(prop.value.value)) {
const key = (prop.key as Identifier).name as string
acc.meta[key] = prop.value.value
}
return acc
},
{ node: exprNode, meta: {} },
)
}
export function collectFormatCalls(ast: Ast) {
const importDecls = getLibImportDeclarations(ast)
if (importDecls.length === 0) return []
const imports = new Set(
importDecls.flatMap(decl =>
getFormatSpecifiers(decl).map(n => n.local.name),
),
)
if (imports.size === 0) return []
const calls: CallExpression[] = []
function formatCallsWalker(node: Node) {
if (isFormatCall(node, imports)) {
calls.push(node as CallExpression)
this.skip()
}
}
walk(ast.instance as any, { enter: formatCallsWalker })
walk(ast.html as any, { enter: formatCallsWalker })
return calls
}
export function collectMessageDefinitions(ast: Ast) {
const definitions: ObjectExpression[] = []
const defineImportDecl = getLibImportDeclarations(ast).find(
getDefineMessagesSpecifier,
)
if (defineImportDecl == null) return []
const defineMethodName = getDefineMessagesSpecifier(defineImportDecl).local
.name
walk(ast.instance as any, {
enter(node: Node) {
if (isMessagesDefinitionCall(node, defineMethodName) === false) return
const [arg] = (node as CallExpression).arguments
if (arg.type === 'ObjectExpression') {
definitions.push(arg)
this.skip()
}
},
})
return definitions.flatMap(definitionDict =>
definitionDict.properties.map(propNode => propNode.value),
)
}
export function collectMessages(markup: string): Message[] {
const ast = parse(markup)
const calls = collectFormatCalls(ast)
const definitions = collectMessageDefinitions(ast)
return [
...definitions.map(definition => getObjFromExpression(definition)),
...calls.map(call => {
const [pathNode, options] = call.arguments
if (pathNode.type === 'ObjectExpression') {
return getObjFromExpression(pathNode)
}
if (pathNode.type !== 'Literal' || typeof pathNode.value !== 'string') {
return null
}
if (options && options.type === 'ObjectExpression') {
const messageObj = getObjFromExpression(options)
messageObj.meta.id = pathNode.value
return messageObj
}
return {
node: pathNode,
meta: { id: pathNode.value },
}
}),
].filter(Boolean)
}
export function extractMessages(
markup: string,
{ accumulator = {}, shallow = false, overwrite = false } = {} as any,
) {
collectMessages(markup).forEach(message => {
let defaultValue = message.meta.default
if (typeof defaultValue === 'undefined') {
defaultValue = ''
}
if (shallow) {
if (overwrite === false && message.meta.id in accumulator) {
return
}
accumulator[message.meta.id] = defaultValue
} else {
if (
overwrite === false &&
typeof resolvePath(accumulator, message.meta.id) !== 'undefined'
) {
return
}
deepSet(accumulator, message.meta.id, defaultValue)
}
})
return accumulator
}