Skip to content

Commit

Permalink
fix bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
khiga8 committed May 16, 2024
1 parent f7d1592 commit 9600041
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 11 deletions.
21 changes: 13 additions & 8 deletions lib/utils/get-element-type.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,20 @@ function getElementType(context, node, lazyElementCheck = false) {
// check if the node contains a polymorphic prop
const polymorphicPropName = settings?.github?.polymorphicPropName ?? 'as'

const rawElement = elementType(node)

if (getProp(node.attributes, polymorphicPropName)) {
return getLiteralPropValue(getProp(node.attributes, polymorphicPropName)) ?? rawElement
} else if (settings?.github?.components?.[rawElement]) {
return settings.github.components[rawElement]
} else {
return rawElement
let checkConditionalMap = true

const prop = getProp(node.attributes, polymorphicPropName)
const literalPropValue = getLiteralPropValue(getProp(node.attributes, polymorphicPropName))
if (prop && !literalPropValue) {
checkConditionalMap = false
}
const rawElement = getLiteralPropValue(getProp(node.attributes, polymorphicPropName)) ?? elementType(node)

// if a component configuration does not exists, return the raw element
if (!settings?.github?.components?.[rawElement]) return rawElement

// check if the default component is also defined in the configuration
return checkConditionalMap ? settings.github.components[rawElement] : rawElement
}

module.exports = {getElementType}
4 changes: 1 addition & 3 deletions tests/utils/get-element-type.mjs
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import {expect} from 'chai'
import {getElementType} from '../../lib/utils/get-element-type.js'
import {mockJSXAttribute, mockJSXConditionalAttribute, mockJSXOpeningElement} from './mocks.js'

import {describe, it} from 'mocha'

function mockSetting(componentSetting = {}) {
Expand Down Expand Up @@ -62,12 +61,11 @@ describe('getElementType', function () {
expect(getElementType({}, node)).to.equal('Box')
})

it('returns raw type when polymorphic prop is set to component even when there is a mapped value', function () {
it('returns raw type when polymorphic prop is set to non-literal expression even with component setting', function () {
// <Box as={isNavigationOpen ? 'generic' : 'navigation'} />
const setting = mockSetting({
Box: 'div',
})

const node = mockJSXOpeningElement('Box', [
mockJSXConditionalAttribute('as', 'isNavigationOpen', 'generic', 'navigation'),
])
Expand Down

0 comments on commit 9600041

Please sign in to comment.