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

chore(deps): cleanup lodash imports and add it as peer #134

Merged
merged 1 commit into from
Nov 28, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,3 @@ coverage/
**/node_modules/
**/es/
**/lib/


7 changes: 4 additions & 3 deletions packages/eslint-plugin-i18n/src/rules/interpolation-data.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
const _ = require('lodash');
// eslint-disable-next-line no-underscore-dangle
const _get = require('lodash/get');
const { getKeyValue, get, getLangConfig, getTranslateParams, isFileIgnored } = require('../utils/utils');

const check = ({ key, countNode, dataNode, config, context, node }) => {
Expand Down Expand Up @@ -67,8 +68,8 @@ module.exports = {

return {
JSXOpeningElement(node) {
const nodeName = _.get(node, 'name.name', null);
const nodeAttributes = _.get(node, 'attributes', null);
const nodeName = _get(node, 'name.name', null);
const nodeAttributes = _get(node, 'attributes', null);

if (nodeName === 'Trans') {
const filteredAttributes = Object.values(nodeAttributes).reduce(
Expand Down
7 changes: 4 additions & 3 deletions packages/eslint-plugin-i18n/src/rules/no-unknown-key.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
const _ = require('lodash');
// eslint-disable-next-line no-underscore-dangle
const _get = require('lodash/get');
const { getKeyValue, get, has, getLangConfig, getTranslateParams, isFileIgnored } = require('../utils/utils');

const check = ({ key, countNode, config, langsKey, context, node }) => {
Expand Down Expand Up @@ -63,8 +64,8 @@ module.exports = langsKey => ({

return {
JSXOpeningElement(node) {
const nodeName = _.get(node, 'name.name', null);
const nodeAttributes = _.get(node, 'attributes', null);
const nodeName = _get(node, 'name.name', null);
const nodeAttributes = _get(node, 'attributes', null);
if (nodeName === 'Trans') {
const filteredAttributes = Object.values(nodeAttributes).reduce(
(acc, attribute) =>
Expand Down
12 changes: 7 additions & 5 deletions packages/i18n-lint/src/runner.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
import _ from 'lodash';
import _find from 'lodash/find';
import _flatMap from 'lodash/flatMap';
import _merge from 'lodash/merge';
import Reader from './reader';
import ConfigLoader from './configLoader';
import { validateHTML } from './verifiers/htmlVerifier';
Expand All @@ -16,7 +18,7 @@ export default class Runner {
const configIndex = process.argv.indexOf('--config') + 1;
if (configIndex < process.argv.length && configIndex > 0) {
configPath = process.argv[configIndex];
this.config = _.merge(config, ConfigLoader.load(configPath));
this.config = _merge(config, ConfigLoader.load(configPath));
} else {
this.config = config;
}
Expand All @@ -29,12 +31,12 @@ export default class Runner {
},
} = this.config;

const reports = _.flatMap([...principalLangs, ...secondaryLangs], ({ name, translationPath }) => {
const reports = _flatMap([...principalLangs, ...secondaryLangs], ({ name, translationPath }) => {
const tradForLang = Reader.parse(translationPath);

return _.flatMap(reporters, (reporter) => reporter(tradForLang, name));
return _flatMap(reporters, (reporter) => reporter(tradForLang, name));
});

process.exit(_.find(reports, { error: true }) ? 1 : 0);
process.exit(_find(reports, { error: true }) ? 1 : 0);
}
}
17 changes: 10 additions & 7 deletions packages/i18n-lint/src/verifiers/htmlVerifier.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
import _ from 'lodash';
import _countBy from 'lodash/countBy';
import _every from 'lodash/every';
import _forEach from 'lodash/forEach';
import _mergeWith from 'lodash/mergeWith';
import isHtml from 'is-html';
import { flatten } from '../utils';
import { info } from '../logger';
Expand All @@ -19,20 +22,20 @@ const noMissingTag = string => {
const openTags = [];
const closedTags = [];

_.forEach(getMatches(string, /<(\w+)[^/]*>/g, 1), tag => {
_forEach(getMatches(string, /<(\w+)[^/]*>/g, 1), tag => {
openTags.push(tag);
});

_.forEach(getMatches(string, /<\/([a-zA-Z]+)>/g, 1), tag => {
_forEach(getMatches(string, /<\/([a-zA-Z]+)>/g, 1), tag => {
closedTags.push(tag);
});

const tags = _.mergeWith(_.countBy(openTags), _.countBy(closedTags), (objValue, srcValue) => ({
const tags = _mergeWith(_countBy(openTags), _countBy(closedTags), (objValue, srcValue) => ({
open: objValue || 0,
closed: srcValue || 0,
}));

return _.every(tags, tag => tag.open && tag.closed && tag.open === tag.closed);
return _every(tags, tag => tag.open && tag.closed && tag.open === tag.closed);
};

const rules = {
Expand All @@ -58,8 +61,8 @@ export const validateHTML = (jsonTree, lang, isError = true) => {
const reports = [];

info(`Starting lang ${lang.toUpperCase()} \n`);
_.forEach(flatten(jsonTree), (value, key) =>
_.forEach(rules, ({ test, message }) => {
_forEach(flatten(jsonTree), (value, key) =>
_forEach(rules, ({ test, message }) => {
if (!test(value)) {
reports.push(reportBuilder(lang, key, message, value, isError));
}
Expand Down
6 changes: 3 additions & 3 deletions packages/i18n-lint/src/verifiers/jsonVerifier.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import _ from 'lodash';
import _flatMap from 'lodash/flatMap';
import { reportBuilder } from '../reporters/reportBuilder';

const alphabeticRule = (lang, nodeIdentifier, nodeIndex, jsonEntry, keys) => {
Expand All @@ -24,8 +24,8 @@ const rules = [alphabeticRule];
export const validateJson = (jsonTree, lang) => {
const keys = Object.keys(jsonTree);

return _.flatMap(keys, (nodeIdentifier, nodeIndex) => {
const nextState = _.flatMap(rules, rule => rule(lang, nodeIdentifier, nodeIndex, jsonTree, keys));
return _flatMap(keys, (nodeIdentifier, nodeIndex) => {
const nextState = _flatMap(rules, rule => rule(lang, nodeIdentifier, nodeIndex, jsonTree, keys));
const currentNode = jsonTree[nodeIdentifier];

if (typeof currentNode === 'object') {
Expand Down
3 changes: 1 addition & 2 deletions packages/react-i18n/.babelrc
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,7 @@
"presets": [["env", { "modules": "commonjs" }]]
},
"es": {
"presets": [["env", { "modules": false }]],
"plugins": ["lodash", "use-lodash-es"]
"presets": [["env", { "modules": false }]]
}
},
"presets": [
Expand Down
6 changes: 2 additions & 4 deletions packages/react-i18n/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
"types.d.ts"
],
"peerDependencies": {
"lodash": "^4.17.0",
"prop-types": "^15.7.1",
"react": "^16.8.0 || ^17.0.0"
},
Expand All @@ -22,22 +23,19 @@
"devDependencies": {
"@wojtekmaj/enzyme-adapter-react-17": "0.8.0",
"babel-cli": "6.26.0",
"babel-plugin-lodash": "3.3.4",
"babel-plugin-transform-object-rest-spread": "6.26.0",
"babel-plugin-use-lodash-es": "^0.2.0",
"babel-preset-env": "1.7.0",
"babel-preset-react": "6.24.1",
"enzyme": "3.8.0",
"enzyme-to-json": "3.3.5",
"jest": "23.6.0",
"lodash-es": "4.17.14",
"lodash": "4.17.21",
"prop-types": "15.7.1",
"react": "17.0.2",
"react-addons-test-utils": "15.6.2",
"react-dom": "17.0.2"
},
"dependencies": {
"lodash": "4.17.19",
"sprintf-js": "1.1.2"
},
"publishConfig": {
Expand Down
4 changes: 2 additions & 2 deletions packages/react-i18n/src/utils/html.utils.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from 'react';
import _ from 'lodash';
import _compact from 'lodash/compact';

const upperCase = /^[A-Z]/;
const tagSearch = /(<.+?>)/;
Expand Down Expand Up @@ -136,7 +136,7 @@ const renderer = (tree, renderers = {}) => {
};

export const interpolateHTMLTags = (translation, renderers) => {
const tags = _.compact(translation.split(tagSearch), x => x !== '').reduce(
const tags = _compact(translation.split(tagSearch), x => x !== '').reduce(
(acc, element) => acc.concat(element[0] === '<' ? analyseTag(element) : element),
[],
);
Expand Down
16 changes: 9 additions & 7 deletions packages/react-i18n/src/utils/i18n.utils.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
import _ from 'lodash';
import _get from 'lodash/get';
import _has from 'lodash/has';
import _noop from 'lodash/noop';
import { sprintf } from 'sprintf-js';
import { interpolateHTMLTags } from './html.utils';

Expand Down Expand Up @@ -37,8 +39,8 @@ const pluralizeFunctions = {
nl: number => (number === 1 ? 'one' : 'other'),
};

export const translate = (lang, i18nNames = {}, errorCallback = _.noop, parseHTML = false) => {
const pluralize = pluralizeFunctions[_.get(lang, '_i18n.lang')] || pluralizeFunctions.fr;
export const translate = (lang, i18nNames = {}, errorCallback = _noop, parseHTML = false) => {
const pluralize = pluralizeFunctions[_get(lang, '_i18n.lang')] || pluralizeFunctions.fr;

return (key, { data = {}, number, general, renderers } = {}) => {
let combineKey = key;
Expand All @@ -48,8 +50,8 @@ export const translate = (lang, i18nNames = {}, errorCallback = _.noop, parseHTM
}

let translation;
if (_.has(lang, combineKey)) {
translation = _.get(lang, combineKey);
if (_has(lang, combineKey)) {
translation = _get(lang, combineKey);
} else {
errorCallback(combineKey);
translation = combineKey;
Expand All @@ -67,8 +69,8 @@ export const translate = (lang, i18nNames = {}, errorCallback = _.noop, parseHTM
};

export const buildList = lang => (list, maxSize) => {
const separator = _.get(lang, '_i18n.separator');
const lastSeparator = _.get(lang, '_i18n.and');
const separator = _get(lang, '_i18n.separator');
const lastSeparator = _get(lang, '_i18n.and');

if (!list || !list.length) {
return '';
Expand Down
40 changes: 1 addition & 39 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -56,13 +56,6 @@
dependencies:
"@babel/types" "^7.0.0"

"@babel/helper-module-imports@^7.0.0-beta.49":
version "7.0.0-beta.54"
resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.0.0-beta.54.tgz#c2d8e14ff034225bf431356db77ef467b8d35aac"
dependencies:
"@babel/types" "7.0.0-beta.54"
lodash "^4.17.5"

"@babel/helper-plugin-utils@^7.0.0":
version "7.0.0"
resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.0.0.tgz#bbb3fbee98661c569034237cc03967ba99b4f250"
Expand Down Expand Up @@ -129,14 +122,6 @@
globals "^11.1.0"
lodash "^4.17.10"

"@babel/types@7.0.0-beta.54", "@babel/types@^7.0.0-beta.49":
version "7.0.0-beta.54"
resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.0.0-beta.54.tgz#025ad68492fed542c13f14c579a44c848e531063"
dependencies:
esutils "^2.0.2"
lodash "^4.17.5"
to-fast-properties "^2.0.0"

"@babel/types@^7.0.0", "@babel/types@^7.2.2", "@babel/types@^7.3.0", "@babel/types@^7.3.2":
version "7.3.2"
resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.3.2.tgz#424f5be4be633fff33fb83ab8d67e4a8290f5a2f"
Expand Down Expand Up @@ -1709,16 +1694,6 @@ babel-plugin-jest-hoist@^24.1.0:
resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-24.1.0.tgz#dfecc491fb15e2668abbd690a697a8fd1411a7f8"
integrity sha512-gljYrZz8w1b6fJzKcsfKsipSru2DU2DmQ39aB6nV3xQ0DDv3zpIzKGortA5gknrhNnPN8DweaEgrnZdmbGmhnw==

babel-plugin-lodash@3.3.4:
version "3.3.4"
resolved "https://registry.yarnpkg.com/babel-plugin-lodash/-/babel-plugin-lodash-3.3.4.tgz#4f6844358a1340baed182adbeffa8df9967bc196"
dependencies:
"@babel/helper-module-imports" "^7.0.0-beta.49"
"@babel/types" "^7.0.0-beta.49"
glob "^7.1.1"
lodash "^4.17.10"
require-package-name "^2.0.1"

babel-plugin-syntax-async-functions@^6.8.0:
version "6.13.0"
resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95"
Expand Down Expand Up @@ -1982,10 +1957,6 @@ babel-plugin-transform-strict-mode@^6.24.1:
babel-runtime "^6.22.0"
babel-types "^6.24.1"

babel-plugin-use-lodash-es@^0.2.0:
version "0.2.0"
resolved "https://registry.yarnpkg.com/babel-plugin-use-lodash-es/-/babel-plugin-use-lodash-es-0.2.0.tgz#252ba9d68a6c1758be947e9a88b0064ecf8351d7"

babel-polyfill@^6.26.0:
version "6.26.0"
resolved "https://registry.yarnpkg.com/babel-polyfill/-/babel-polyfill-6.26.0.tgz#379937abc67d7895970adc621f284cd966cf2153"
Expand Down Expand Up @@ -6303,11 +6274,6 @@ locate-path@^5.0.0:
dependencies:
p-locate "^4.1.0"

lodash-es@4.17.14:
version "4.17.14"
resolved "https://registry.yarnpkg.com/lodash-es/-/lodash-es-4.17.14.tgz#12a95a963cc5955683cee3b74e85458954f37ecc"
integrity sha512-7zchRrGa8UZXjD/4ivUWP1867jDkhzTG2c/uj739utSd7O/pFFdxspCemIFKEEjErbcqRzn8nKnGsi7mvTgRPA==

lodash._reinterpolate@^3.0.0, lodash._reinterpolate@~3.0.0:
version "3.0.0"
resolved "https://registry.yarnpkg.com/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz#0ccf2d89166af03b3663c796538b75ac6e114d9d"
Expand Down Expand Up @@ -6375,7 +6341,7 @@ lodash@4.17.19:
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.19.tgz#e48ddedbe30b3321783c5b4301fbd353bc1e4a4b"
integrity sha512-JNvd8XER9GQX0v2qJgsaN/mzFCNA5BRe/j8JN9d+tWyGLSodKQHKFicdwNYzWwI3wjRnaKPsGj1XkBjx/F96DQ==

lodash@^4.13.1, lodash@^4.15.0, lodash@^4.17.10, lodash@^4.17.11, lodash@^4.17.15, lodash@^4.17.19, lodash@^4.17.4, lodash@^4.17.5, lodash@^4.3.0:
lodash@4.17.21, lodash@^4.13.1, lodash@^4.15.0, lodash@^4.17.10, lodash@^4.17.11, lodash@^4.17.15, lodash@^4.17.19, lodash@^4.17.4, lodash@^4.3.0:
version "4.17.21"
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c"
integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==
Expand Down Expand Up @@ -8468,10 +8434,6 @@ require-main-filename@^1.0.1:
version "1.0.1"
resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1"

require-package-name@^2.0.1:
version "2.0.1"
resolved "https://registry.yarnpkg.com/require-package-name/-/require-package-name-2.0.1.tgz#c11e97276b65b8e2923f75dabf5fb2ef0c3841b9"

require-relative@^0.8.7:
version "0.8.7"
resolved "https://registry.yarnpkg.com/require-relative/-/require-relative-0.8.7.tgz#7999539fc9e047a37928fa196f8e1563dabd36de"
Expand Down
Loading