-
Notifications
You must be signed in to change notification settings - Fork 2
add excludeFuzzy option #4
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
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,15 +1,24 @@ | ||
| const parser = require("ttag-cli/dist/src/lib/parser"); | ||
| const utils = require("ttag-cli/dist/src/lib/utils"); | ||
|
|
||
| module.exports = function (source) { | ||
| if (this.cacheable) this.cacheable(); | ||
| const excludeFuzzy = this.getOptions().excludeFuzzy; | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
so says someone on stack overflow.. that should be good enough, I think? |
||
|
|
||
| let poData = parser.parse(source); | ||
|
|
||
| const messages = utils.iterateTranslations(poData.translations); | ||
| const header = messages.next().value; | ||
| delete header.comments; | ||
| for (const msg of messages) { delete msg.comments; } | ||
| for (const ctxt of Object.values(poData.translations)) { | ||
| for (const msgid of Object.keys(ctxt)) { | ||
|
Comment on lines
+9
to
+10
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I don't recall why I used that specific idiom...
Please check that the semantics are still the same 🙇🏻 |
||
| const msg = ctxt[msgid]; | ||
| if (msg.comments) { | ||
| if (excludeFuzzy && msg.comments.flag | ||
| && msg.comments.flag.includes('fuzzy')) { | ||
|
Comment on lines
+13
to
+14
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I was thinking if conditional chaining could be used, but that's only available since 2020, so maybe it's better to stay safe like this... |
||
| delete ctxt[msgid]; | ||
| } else { | ||
| delete msg.comments; | ||
| } | ||
| } | ||
| } | ||
| } | ||
|
|
||
| value = JSON.stringify(poData) | ||
| .replace(/\u2028/g, '\\u2028') | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I have a slight preference to documenting options in a more generic way, for example, use this code example and list the possible options:
Available options:
excludeFuzzy: blah blah blah long description what it doesThere was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'd also move the options bit below CRA, maybe...
However, if you recon that
exceludeFuzzyshould be the default, then let's make exclusion default and add inclusion via a flag.