Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

V-for-template-key transformer does not support key with string interpolation #117

Open
JBustin opened this issue Jan 17, 2025 · 0 comments

Comments

@JBustin
Copy link

JBustin commented Jan 17, 2025

Describe the bug
/vue-codemod/dist/vue-transformations/v-for-template-key does not support key with string interpolation.

To Reproduce

import { applyOperation } from '@originjs/vue-codemod/dist/src/wrapVueTransformation'
import { transformAST } from '@originjs/vue-codemod/dist/vue-transformations/v-for-template-key'

const test = `<template v-for="(disclaimer, index) in block.disclaimers">
        <Disclaimer
          v-if="disclaimerValue(disclaimer)"
          :key="`disclaimer_${index}`"
          class="lv-shipping-summary__disclaimer"
        >
          <p v-safe-html="disclaimerValue(disclaimer)" />
        </Disclaimer>
      </template>`

const result = applyOperation(test,[transformAST])
console.log(result)

result is something like:

      <template v-for="(disclaimer, index) in block.disclaimers" :key="undefined">
        <Disclaimer v-if="disclaimerValue(disclaimer)" class="lv-shipping-summary__disclaimer">
          <p v-safe-html="disclaimerValue(disclaimer)" />
        </Disclaimer>
      </template>

Expected behavior

      <template v-for="(disclaimer, index) in block.disclaimers" :key="`disclaimer_${index}`">
        <Disclaimer v-if="disclaimerValue(disclaimer)" class="lv-shipping-summary__disclaimer">
          <p v-safe-html="disclaimerValue(disclaimer)" />
        </Disclaimer>
      </template>

Environment (please complete the following information):

  • OS: macOs
  • Version: Sonoma 14.6.1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant