本文整理汇总了TypeScript中babel-types.jSXAttribute函数的典型用法代码示例。如果您正苦于以下问题:TypeScript jSXAttribute函数的具体用法?TypeScript jSXAttribute怎么用?TypeScript jSXAttribute使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了jSXAttribute函数的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: buildRefTemplate
export function buildRefTemplate (name: string, refName?: string, loop?: boolean) {
return t.jSXElement(
t.jSXOpeningElement(t.jSXIdentifier('template'), [
t.jSXAttribute(t.jSXIdentifier('is'), t.stringLiteral(name)),
t.jSXAttribute(t.jSXIdentifier('data'), t.stringLiteral(`{{...${refName ? `${loop ? '' : '$$'}${refName}` : '__data'}}}`))
]),
t.jSXClosingElement(t.jSXIdentifier('template')),
[]
)
}
示例2: buildRefTemplate
export function buildRefTemplate (name: string, refName?: string, loop?: boolean, key?: t.JSXAttribute) {
const attrs = [
t.jSXAttribute(t.jSXIdentifier('is'), t.stringLiteral(name)),
t.jSXAttribute(t.jSXIdentifier('data'), t.stringLiteral(`{{...${refName ? `${loop ? '' : '$$'}${refName}` : '__data'}}}`))
]
if (key) {
attrs.push(key)
}
return t.jSXElement(
t.jSXOpeningElement(t.jSXIdentifier('template'), attrs),
t.jSXClosingElement(t.jSXIdentifier('template')),
[]
)
}
示例3: setJSXAttr
export function setJSXAttr (
jsx: t.JSXElement,
name: string,
value?: t.StringLiteral | t.JSXExpressionContainer
) {
jsx.openingElement.attributes.push(
t.jSXAttribute(t.jSXIdentifier(name), value)
)
}
示例4: parseAttribute
function parseAttribute (attr: Attribute) {
const { key, value } = attr
let jsxValue: null | t.JSXExpressionContainer | t.StringLiteral = null
if (value) {
const { type, content } = parseContent(value)
jsxValue =
type === 'raw'
? t.stringLiteral(content)
: t.jSXExpressionContainer(buildTemplate(content))
}
const jsxKey = handleAttrKey(key)
if (/^on[A-Z]/.test(jsxKey) && jsxValue && t.isStringLiteral(jsxValue)) {
jsxValue = t.jSXExpressionContainer(
t.memberExpression(t.thisExpression(), t.identifier(jsxValue.value))
)
}
return t.jSXAttribute(t.jSXIdentifier(jsxKey), jsxValue)
}
示例5: setJSXAttr
export function setJSXAttr (
jsx: t.JSXElement,
name: string,
value?: t.StringLiteral | t.JSXExpressionContainer | t.JSXElement,
path?: NodePath<t.JSXElement>
) {
const element = jsx.openingElement
if (!t.isJSXIdentifier(element.name)) {
return
}
if (element.name.name === 'Block' || element.name.name === 'block' || !path) {
jsx.openingElement.attributes.push(
t.jSXAttribute(t.jSXIdentifier(name), value)
)
} else {
const block = buildBlockElement()
setJSXAttr(block, name, value)
block.children = [jsx]
path.node = block
}
}
示例6: parseTemplate
export function parseTemplate (path: NodePath<t.JSXElement>, dirPath: string) {
const openingElement = path.get('openingElement')
const attrs = openingElement.get('attributes')
const is = attrs.find(attr => attr.get('name').isJSXIdentifier({ name: 'is' }))
const data = attrs.find(attr => attr.get('name').isJSXIdentifier({ name: 'data' }))
// const spread = attrs.find(attr => attr.get('name').isJSXIdentifier({ name: 'spread' }))
const name = attrs.find(attr => attr.get('name').isJSXIdentifier({ name: 'name' }))
const refIds = new Set<string>()
if (name) {
const value = name.node.value
if (value === null || !t.isStringLiteral(value)) {
throw new Error('template 的 `name` 属性只能是字符串')
}
const className = pascalName(value.value) + pascalName(basename(dirPath))
path.traverse({
Identifier (p) {
if (!p.isReferencedIdentifier()) {
return
}
const jsxExprContainer = p.findParent(p => p.isJSXExpressionContainer())
if (!jsxExprContainer || !jsxExprContainer.isJSXExpressionContainer()) {
return
}
refIds.add(p.node.name)
}
})
const block = buildBlockElement()
block.children = path.node.children
let render: t.ClassMethod
if (refIds.size === 0) {
// 无状态组件
render = buildRender(block, [], [])
} else if (refIds.size === 1) {
// 只有一个数据源
render = buildRender(block, [], Array.from(refIds), Array.from(refIds)[0])
} else {
// 使用 ...spread
render = buildRender(block, [], Array.from(refIds), [])
}
const classDecl = t.classDeclaration(
t.identifier(className),
t.memberExpression(t.identifier('Taro'), t.identifier('Component')),
t.classBody([render!]),
[]
)
path.remove()
return {
name: className,
ast: classDecl
}
} else if (is) {
const value = is.node.value
if (!value) {
throw new Error('template 的 `is` 属性不能为空')
}
if (t.isStringLiteral(value)) {
const className = pascalName(value.value)
let attributes: t.JSXAttribute[] = []
if (data) {
attributes.push(data.node)
}
path.replaceWith(t.jSXElement(
t.jSXOpeningElement(t.jSXIdentifier(className), attributes),
t.jSXClosingElement(t.jSXIdentifier(className)),
[],
true
))
} else if (t.isJSXExpressionContainer(value)) {
if (t.isStringLiteral(value.expression)) {
const className = pascalName(value.expression.value)
let attributes: t.JSXAttribute[] = []
if (data) {
attributes.push(data.node)
}
path.replaceWith(t.jSXElement(
t.jSXOpeningElement(t.jSXIdentifier(className), attributes),
t.jSXClosingElement(t.jSXIdentifier(className)),
[],
true
))
} else if (t.isConditional(value.expression)) {
const { test, consequent, alternate } = value.expression
if (!t.isStringLiteral(consequent) || !t.isStringLiteral(alternate)) {
throw new Error('当 template is 标签是三元表达式时,他的两个值都必须为字符串')
}
let attributes: t.JSXAttribute[] = []
if (data) {
attributes.push(data.node)
}
const block = buildBlockElement()
block.children = [t.jSXExpressionContainer(t.conditionalExpression(
test,
t.jSXElement(
t.jSXOpeningElement(t.jSXIdentifier('Template'), attributes.concat(
[t.jSXAttribute(t.jSXIdentifier('is'), consequent)]
)),
t.jSXClosingElement(t.jSXIdentifier('Template')),
[],
//.........这里部分代码省略.........
示例7: buildJSXAttr
export function buildJSXAttr (name: string, value: t.Identifier | t.Expression) {
return t.jSXAttribute(t.jSXIdentifier(name), t.jSXExpressionContainer(value))
}
示例8: parseAttribute
function parseAttribute (attr: Attribute) {
let { key, value } = attr
let jsxValue: null | t.JSXExpressionContainer | t.StringLiteral = null
if (value) {
if (key === 'class' && value.startsWith('[') && value.endsWith(']')) {
value = value.slice(1, value.length - 1).replace(',', '')
// tslint:disable-next-line
console.log(codeFrameError(attr, 'Taro/React 不支持 class 传入数组,此写法可能无法得到正确的 class'))
}
const { type, content } = parseContent(value)
if (type === 'raw') {
jsxValue = t.stringLiteral(content)
} else {
let expr: t.Expression
try {
expr = buildTemplate(content)
} catch (error) {
const pureContent = content.slice(1, content.length - 1)
if (reserveKeyWords.has(pureContent) && type !== 'raw') {
const err = `转换模板参数: \`${key}: ${value}\` 报错: \`${pureContent}\` 是 JavaScript 保留字,请不要使用它作为值。`
if (key === WX_KEY) {
expr = t.stringLiteral('')
} else {
throw new Error(err)
}
} else if (content.includes(':')) {
const [ key, value ] = pureContent.split(':')
expr = t.objectExpression([t.objectProperty(t.stringLiteral(key), parseExpression(value))])
} else if (content.includes('...') && content.includes(',')) {
const objExpr = content.slice(1, content.length - 1).split(',')
const props: (t.SpreadProperty | t.ObjectProperty)[] = []
for (const str of objExpr) {
const s = str.trim()
if (s.includes('...')) {
props.push(t.spreadProperty(t.identifier(s.slice(3))))
} else {
props.push(t.objectProperty(t.identifier(s), t.identifier(s)))
}
}
expr = t.objectExpression(props)
} else {
const err = `转换模板参数: \`${key}: ${value}\` 报错`
throw new Error(err)
}
}
if (t.isThisExpression(expr)) {
// tslint:disable-next-line
console.error('在参数中使用 `this` 可能会造成意想不到的结果,已将此参数修改为 `__placeholder__`,你可以在转换后的代码查找这个关键字修改。')
expr = t.stringLiteral('__placeholder__')
}
jsxValue = t.jSXExpressionContainer(expr)
}
}
const jsxKey = handleAttrKey(key)
if (/^on[A-Z]/.test(jsxKey) && jsxValue && t.isStringLiteral(jsxValue)) {
jsxValue = t.jSXExpressionContainer(
t.memberExpression(t.thisExpression(), t.identifier(jsxValue.value))
)
}
if (key.startsWith('catch') && value && value === 'true') {
jsxValue = t.jSXExpressionContainer(
t.memberExpression(t.thisExpression(), t.identifier('privateStopNoop'))
)
globals.hasCatchTrue = true
}
return t.jSXAttribute(t.jSXIdentifier(jsxKey), jsxValue)
}
示例9: cloneDeep
export const createWxmlVistor = (
loopIds: Set<string>,
refIds: Set<string>,
dirPath: string,
wxses: WXS[] = [],
imports: Imports[] = []
) => {
const jsxAttrVisitor = (path: NodePath<t.JSXAttribute>) => {
const name = path.node.name as t.JSXIdentifier
const jsx = path.findParent(p => p.isJSXElement()) as NodePath<
t.JSXElement
>
const valueCopy = cloneDeep(path.get('value').node)
transformIf(name.name, path, jsx, valueCopy)
const loopItem = transformLoop(name.name, path, jsx, valueCopy)
if (loopItem) {
if (loopItem.index) {
loopIds.add(loopItem.index)
}
if (loopItem.item) {
loopIds.add(loopItem.item)
}
}
}
return {
JSXAttribute: jsxAttrVisitor,
JSXIdentifier (path) {
const nodeName = path.node.name
if (path.parentPath.isJSXAttribute()) {
if (nodeName === WX_KEY) {
path.replaceWith(t.jSXIdentifier('key'))
}
if (nodeName.startsWith('wx:') && !wxTemplateCommand.includes(nodeName)) {
// tslint:disable-next-line
console.log(`未知 wx 作用域属性: ${nodeName},该属性会被移除掉。`)
path.parentPath.remove()
}
}
},
JSXElement: {
enter (path: NodePath<t.JSXElement>) {
const openingElement = path.get('openingElement')
const jsxName = openingElement.get('name')
const attrs = openingElement.get('attributes')
if (!jsxName.isJSXIdentifier()) {
return
}
path.traverse({
Identifier (p) {
if (!p.isReferencedIdentifier()) {
return
}
const jsxExprContainer = p.findParent(p => p.isJSXExpressionContainer())
if (!jsxExprContainer || !jsxExprContainer.isJSXExpressionContainer()) {
return
}
if (isValidVarName(p.node.name)) {
refIds.add(p.node.name)
}
},
JSXAttribute: jsxAttrVisitor
})
const slotAttr = attrs.find(a => a.node.name.name === 'slot')
if (slotAttr) {
const slotValue = slotAttr.node.value
if (slotValue && t.isStringLiteral(slotValue)) {
const slotName = slotValue.value
const parentComponent = path.findParent(p => p.isJSXElement() && t.isJSXIdentifier(p.node.openingElement.name) && !DEFAULT_Component_SET.has(p.node.openingElement.name.name))
if (parentComponent && parentComponent.isJSXElement()) {
slotAttr.remove()
path.traverse({
JSXAttribute: jsxAttrVisitor
})
const block = buildBlockElement()
block.children = [cloneDeep(path.node)]
parentComponent.node.openingElement.attributes.push(
t.jSXAttribute(
t.jSXIdentifier(buildSlotName(slotName)),
t.jSXExpressionContainer(block)
)
)
path.remove()
}
} else {
throw codeFrameError(slotValue, 'slot 的值必须是一个字符串')
}
}
const tagName = jsxName.node.name
if (tagName === 'Slot') {
const nameAttr = attrs.find(a => a.node.name.name === 'name')
let slotName = ''
if (nameAttr) {
if (nameAttr.node.value && t.isStringLiteral(nameAttr.node.value)) {
slotName = nameAttr.node.value.value
} else {
throw codeFrameError(jsxName.node, 'slot 的值必须是一个字符串')
}
}
const children = t.memberExpression(
t.memberExpression(t.thisExpression(), t.identifier('props')),
//.........这里部分代码省略.........
示例10: parseTemplate
//.........这里部分代码省略.........
})
const block = buildBlockElement()
block.children = path.node.children
let render: t.ClassMethod
if (refIds.size === 0) {
// 无状态组件
render = buildRender(block, [], [])
} else if (refIds.size === 1) {
// 只有一个数据源
render = buildRender(block, [], Array.from(refIds), firstId)
} else {
// 使用 ...spread
render = buildRender(block, [], Array.from(refIds), [])
}
const classProp = t.classProperty(t.identifier('options'), t.objectExpression([
t.objectProperty(
t.identifier('addGlobalClass'),
t.booleanLiteral(true)
)
])) as any
classProp.static = true
const classDecl = t.classDeclaration(
t.identifier(className),
t.memberExpression(t.identifier('Taro'), t.identifier('Component')),
t.classBody([render, classProp]),
[]
)
path.remove()
return {
name: className,
ast: classDecl
}
} else if (is) {
const value = is.node.value
if (!value) {
throw new Error('template 的 `is` 属性不能为空')
}
if (t.isStringLiteral(value)) {
const className = buildTemplateName(value.value)
let attributes: t.JSXAttribute[] = []
if (data) {
attributes.push(data.node)
}
path.replaceWith(t.jSXElement(
t.jSXOpeningElement(t.jSXIdentifier(className), attributes),
t.jSXClosingElement(t.jSXIdentifier(className)),
[],
true
))
} else if (t.isJSXExpressionContainer(value)) {
if (t.isStringLiteral(value.expression)) {
const className = buildTemplateName(value.expression.value)
let attributes: t.JSXAttribute[] = []
if (data) {
attributes.push(data.node)
}
path.replaceWith(t.jSXElement(
t.jSXOpeningElement(t.jSXIdentifier(className), attributes),
t.jSXClosingElement(t.jSXIdentifier(className)),
[],
true
))
} else if (t.isConditional(value.expression)) {
const { test, consequent, alternate } = value.expression
if (!t.isStringLiteral(consequent) || !t.isStringLiteral(alternate)) {
throw new Error('当 template is 标签是三元表达式时,他的两个值都必须为字符串')
}
let attributes: t.JSXAttribute[] = []
if (data) {
attributes.push(data.node)
}
const block = buildBlockElement()
block.children = [t.jSXExpressionContainer(t.conditionalExpression(
test,
t.jSXElement(
t.jSXOpeningElement(t.jSXIdentifier('Template'), attributes.concat(
[t.jSXAttribute(t.jSXIdentifier('is'), consequent)]
)),
t.jSXClosingElement(t.jSXIdentifier('Template')),
[],
true
),
t.jSXElement(
t.jSXOpeningElement(t.jSXIdentifier('Template'), attributes.concat(
[t.jSXAttribute(t.jSXIdentifier('is'), alternate)]
)),
t.jSXClosingElement(t.jSXIdentifier('Template')),
[],
true
)
))]
path.replaceWith(block)
}
}
return
}
throw new Error('template 标签必须指名 `is` 或 `name` 任意一个标签')
}