Skip to content

Commit

Permalink
Merge pull request #6184 from chikeichan/6132
Browse files Browse the repository at this point in the history
turn camcelCase method name to space separated
  • Loading branch information
danjm authored Feb 20, 2019
2 parents cbcaf87 + 7be4795 commit 1eebe54
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -447,7 +447,7 @@ export default class ConfirmTransactionBase extends Component {
toName={toName}
toAddress={toAddress}
showEdit={onEdit && !isTxReprice}
action={action || name || this.context.t('contractInteraction')}
action={action || getMethodName(name) || this.context.t('contractInteraction')}
title={title}
titleComponent={this.renderTitleComponent()}
subtitle={subtitle}
Expand Down Expand Up @@ -483,3 +483,14 @@ export default class ConfirmTransactionBase extends Component {
)
}
}

export function getMethodName (camelCase) {
if (!camelCase || typeof camelCase !== 'string') {
return ''
}

return camelCase
.replace(/([a-z])([A-Z])/g, '$1 $2')
.replace(/([A-Z])([a-z])/g, ' $1$2')
.replace(/ +/g, ' ')
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
import assert from 'assert'
import { getMethodName } from '../confirm-transaction-base.component'

describe('ConfirmTransactionBase Component', () => {
describe('getMethodName', () => {
it('should get correct method names', () => {
assert.equal(getMethodName(undefined), '')
assert.equal(getMethodName({}), '')
assert.equal(getMethodName('confirm'), 'confirm')
assert.equal(getMethodName('balanceOf'), 'balance Of')
assert.equal(getMethodName('ethToTokenSwapInput'), 'eth To Token Swap Input')
})
})
})

0 comments on commit 1eebe54

Please sign in to comment.