-
-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(deps): update dependency @intlify/message-compiler to v10 (#557)
* fix(deps): update dependency @intlify/message-compiler to v10 * fix: support v10 * Create new-ligers-tan.md --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: ota-meshi <[email protected]>
- Loading branch information
1 parent
60c3aa6
commit baaa5fe
Showing
15 changed files
with
186 additions
and
124 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"@intlify/eslint-plugin-vue-i18n": major | ||
--- | ||
|
||
fix(deps): update dependency @intlify/message-compiler to v10 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
/** | ||
* A simplified version of the message parser that handles messages like vue-i18n v8. | ||
* This parser probably has poor performance. | ||
*/ | ||
import type { | ||
CompileError, | ||
NamedNode, | ||
ResourceNode | ||
} from '@intlify/message-compiler' | ||
import { NodeTypes } from './utils' | ||
import { parse as baseParse } from './parser' | ||
import type { MessageElementNode } from './traverser' | ||
import { traverseNode } from './traverser' | ||
|
||
// The deprecated Rails i18n format. | ||
export type ModuloNamedNode = NamedNode & { modulo?: boolean } | ||
|
||
export function parse(code: string): { | ||
ast: ResourceNode | ||
errors: CompileError[] | ||
} { | ||
const { ast, errors } = baseParse(code) | ||
|
||
traverseNode(ast, node => { | ||
if (node.type === NodeTypes.Message) { | ||
transformModuloNamedNode(node.items) | ||
} | ||
}) | ||
return { | ||
ast, | ||
errors | ||
} | ||
|
||
function transformModuloNamedNode(nodes: MessageElementNode[]) { | ||
// Converts nodes with a '%' before the brackets into modulo nodes. | ||
for (let index = nodes.length - 1; index >= 1; index--) { | ||
const node = nodes[index] | ||
if ( | ||
node.type !== NodeTypes.Named || | ||
code[node.loc!.start.offset - 1] !== '%' | ||
) | ||
continue | ||
|
||
const prev = nodes[index - 1] | ||
if (prev.type !== NodeTypes.Text || !prev.value?.endsWith('%')) continue | ||
|
||
node.modulo = true | ||
|
||
prev.loc!.end.offset -= 1 | ||
prev.loc!.end.column -= 1 | ||
prev.end! -= 1 | ||
prev.value = prev.value!.slice(0, -1) | ||
if (prev.start === prev.end) { | ||
nodes.splice(index - 1, 1) | ||
index-- | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.