@atlaskit/eslint-plugin-design-system 13.6.0 → 13.8.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (104) hide show
  1. package/CHANGELOG.md +22 -0
  2. package/README.md +56 -54
  3. package/dist/cjs/presets/all-flat.codegen.js +3 -1
  4. package/dist/cjs/presets/all.codegen.js +3 -1
  5. package/dist/cjs/presets/recommended-flat.codegen.js +3 -1
  6. package/dist/cjs/presets/recommended.codegen.js +3 -1
  7. package/dist/cjs/rules/index.codegen.js +5 -1
  8. package/dist/cjs/rules/no-html-anchor/node-types/styled-component/index.js +2 -2
  9. package/dist/cjs/rules/no-html-button/node-types/styled-component/index.js +2 -2
  10. package/dist/cjs/rules/no-html-image/index.js +40 -0
  11. package/dist/cjs/rules/no-html-image/node-types/index.js +19 -0
  12. package/dist/cjs/rules/no-html-image/node-types/jsx-element/index.js +115 -0
  13. package/dist/cjs/rules/no-html-image/node-types/styled-component/index.js +42 -0
  14. package/dist/cjs/rules/no-html-image/node-types/supported.js +72 -0
  15. package/dist/cjs/rules/no-html-range/index.js +34 -0
  16. package/dist/cjs/rules/no-html-range/node-types/index.js +12 -0
  17. package/dist/cjs/rules/no-html-range/node-types/jsx-element/index.js +27 -0
  18. package/dist/cjs/rules/no-html-range/node-types/supported.js +70 -0
  19. package/dist/cjs/rules/utils/get-styled-component-call.js +1 -1
  20. package/dist/es2019/presets/all-flat.codegen.js +3 -1
  21. package/dist/es2019/presets/all.codegen.js +3 -1
  22. package/dist/es2019/presets/recommended-flat.codegen.js +3 -1
  23. package/dist/es2019/presets/recommended.codegen.js +3 -1
  24. package/dist/es2019/rules/index.codegen.js +5 -1
  25. package/dist/es2019/rules/no-html-anchor/node-types/styled-component/index.js +2 -2
  26. package/dist/es2019/rules/no-html-button/node-types/styled-component/index.js +2 -2
  27. package/dist/es2019/rules/no-html-image/index.js +34 -0
  28. package/dist/es2019/rules/no-html-image/node-types/index.js +2 -0
  29. package/dist/es2019/rules/no-html-image/node-types/jsx-element/index.js +80 -0
  30. package/dist/es2019/rules/no-html-image/node-types/styled-component/index.js +37 -0
  31. package/dist/es2019/rules/no-html-image/node-types/supported.js +62 -0
  32. package/dist/es2019/rules/no-html-range/index.js +28 -0
  33. package/dist/es2019/rules/no-html-range/node-types/index.js +1 -0
  34. package/dist/es2019/rules/no-html-range/node-types/jsx-element/index.js +19 -0
  35. package/dist/es2019/rules/no-html-range/node-types/supported.js +60 -0
  36. package/dist/es2019/rules/utils/get-styled-component-call.js +1 -1
  37. package/dist/esm/presets/all-flat.codegen.js +3 -1
  38. package/dist/esm/presets/all.codegen.js +3 -1
  39. package/dist/esm/presets/recommended-flat.codegen.js +3 -1
  40. package/dist/esm/presets/recommended.codegen.js +3 -1
  41. package/dist/esm/rules/index.codegen.js +5 -1
  42. package/dist/esm/rules/no-html-anchor/node-types/styled-component/index.js +2 -2
  43. package/dist/esm/rules/no-html-button/node-types/styled-component/index.js +2 -2
  44. package/dist/esm/rules/no-html-image/index.js +34 -0
  45. package/dist/esm/rules/no-html-image/node-types/index.js +2 -0
  46. package/dist/esm/rules/no-html-image/node-types/jsx-element/index.js +106 -0
  47. package/dist/esm/rules/no-html-image/node-types/styled-component/index.js +36 -0
  48. package/dist/esm/rules/no-html-image/node-types/supported.js +63 -0
  49. package/dist/esm/rules/no-html-range/index.js +28 -0
  50. package/dist/esm/rules/no-html-range/node-types/index.js +1 -0
  51. package/dist/esm/rules/no-html-range/node-types/jsx-element/index.js +18 -0
  52. package/dist/esm/rules/no-html-range/node-types/supported.js +61 -0
  53. package/dist/esm/rules/utils/get-styled-component-call.js +1 -1
  54. package/dist/types/index.codegen.d.ts +18 -0
  55. package/dist/types/presets/all-flat.codegen.d.ts +2 -0
  56. package/dist/types/presets/all.codegen.d.ts +2 -0
  57. package/dist/types/presets/recommended-flat.codegen.d.ts +2 -0
  58. package/dist/types/presets/recommended.codegen.d.ts +2 -0
  59. package/dist/types/rules/index.codegen.d.ts +2 -0
  60. package/dist/types/rules/no-html-image/index.d.ts +3 -0
  61. package/dist/types/rules/no-html-image/node-types/index.d.ts +2 -0
  62. package/dist/types/rules/no-html-image/node-types/jsx-element/index.d.ts +8 -0
  63. package/dist/types/rules/no-html-image/node-types/styled-component/index.d.ts +8 -0
  64. package/dist/types/rules/no-html-image/node-types/supported.d.ts +7 -0
  65. package/dist/types/rules/no-html-range/index.d.ts +3 -0
  66. package/dist/types/rules/no-html-range/node-types/index.d.ts +1 -0
  67. package/dist/types/rules/no-html-range/node-types/jsx-element/index.d.ts +8 -0
  68. package/dist/types/rules/no-html-range/node-types/supported.d.ts +7 -0
  69. package/dist/types-ts4.5/index.codegen.d.ts +18 -0
  70. package/dist/types-ts4.5/presets/all-flat.codegen.d.ts +2 -0
  71. package/dist/types-ts4.5/presets/all.codegen.d.ts +2 -0
  72. package/dist/types-ts4.5/presets/recommended-flat.codegen.d.ts +2 -0
  73. package/dist/types-ts4.5/presets/recommended.codegen.d.ts +2 -0
  74. package/dist/types-ts4.5/rules/index.codegen.d.ts +2 -0
  75. package/dist/types-ts4.5/rules/no-html-image/index.d.ts +3 -0
  76. package/dist/types-ts4.5/rules/no-html-image/node-types/index.d.ts +2 -0
  77. package/dist/types-ts4.5/rules/no-html-image/node-types/jsx-element/index.d.ts +8 -0
  78. package/dist/types-ts4.5/rules/no-html-image/node-types/styled-component/index.d.ts +8 -0
  79. package/dist/types-ts4.5/rules/no-html-image/node-types/supported.d.ts +7 -0
  80. package/dist/types-ts4.5/rules/no-html-range/index.d.ts +3 -0
  81. package/dist/types-ts4.5/rules/no-html-range/node-types/index.d.ts +1 -0
  82. package/dist/types-ts4.5/rules/no-html-range/node-types/jsx-element/index.d.ts +8 -0
  83. package/dist/types-ts4.5/rules/no-html-range/node-types/supported.d.ts +7 -0
  84. package/package.json +1 -1
  85. package/dist/cjs/rules/no-html-anchor/node-types/styled-component/get-styled-component-call.js +0 -47
  86. package/dist/cjs/rules/no-html-button/node-types/styled-component/get-styled-component-call.js +0 -47
  87. package/dist/cjs/rules/no-html-button/utils/get-jsx-element-by-name.js +0 -53
  88. package/dist/es2019/rules/no-html-anchor/node-types/styled-component/get-styled-component-call.js +0 -42
  89. package/dist/es2019/rules/no-html-button/node-types/styled-component/get-styled-component-call.js +0 -42
  90. package/dist/es2019/rules/no-html-button/utils/get-jsx-element-by-name.js +0 -39
  91. package/dist/esm/rules/no-html-anchor/node-types/styled-component/get-styled-component-call.js +0 -42
  92. package/dist/esm/rules/no-html-button/node-types/styled-component/get-styled-component-call.js +0 -42
  93. package/dist/esm/rules/no-html-button/utils/get-jsx-element-by-name.js +0 -47
  94. package/dist/types/rules/no-html-anchor/node-types/styled-component/get-styled-component-call.d.ts +0 -6
  95. package/dist/types/rules/no-html-anchor/utils/get-jsx-element-by-name.d.ts +0 -6
  96. package/dist/types/rules/no-html-button/node-types/styled-component/get-styled-component-call.d.ts +0 -6
  97. package/dist/types/rules/no-html-button/utils/get-jsx-element-by-name.d.ts +0 -6
  98. package/dist/types-ts4.5/rules/no-html-anchor/node-types/styled-component/get-styled-component-call.d.ts +0 -6
  99. package/dist/types-ts4.5/rules/no-html-button/node-types/styled-component/get-styled-component-call.d.ts +0 -6
  100. /package/dist/cjs/rules/{no-html-anchor → no-html-image}/utils/get-jsx-element-by-name.js +0 -0
  101. /package/dist/es2019/rules/{no-html-anchor → no-html-image}/utils/get-jsx-element-by-name.js +0 -0
  102. /package/dist/esm/rules/{no-html-anchor → no-html-image}/utils/get-jsx-element-by-name.js +0 -0
  103. /package/dist/{types-ts4.5/rules/no-html-button → types/rules/no-html-image}/utils/get-jsx-element-by-name.d.ts +0 -0
  104. /package/dist/types-ts4.5/rules/{no-html-anchor → no-html-image}/utils/get-jsx-element-by-name.d.ts +0 -0
@@ -0,0 +1,19 @@
1
+ import * as ast from '../../../../ast-nodes';
2
+ import { isSupportedForLint } from '../supported';
3
+ export const JSXElement = {
4
+ lint(node, {
5
+ context
6
+ }) {
7
+ if (!isSupportedForLint(node)) {
8
+ return;
9
+ }
10
+ const nodeName = ast.JSXElement.getName(node);
11
+ context.report({
12
+ node: node.openingElement,
13
+ messageId: 'noHtmlRange',
14
+ data: {
15
+ name: nodeName
16
+ }
17
+ });
18
+ }
19
+ };
@@ -0,0 +1,60 @@
1
+ import { isNodeOfType } from 'eslint-codemod-utils';
2
+ import * as ast from '../../../ast-nodes';
3
+ const supportedElements = [{
4
+ name: 'input',
5
+ attributes: [{
6
+ name: 'type',
7
+ values: ['range']
8
+ }]
9
+ }];
10
+
11
+ /**
12
+ * Determines if the given JSX element is a supported element to lint with this rule.
13
+ */
14
+ export function isSupportedForLint(jsxNode, elementName) {
15
+ if (!isNodeOfType(jsxNode, 'JSXElement')) {
16
+ return false;
17
+ }
18
+
19
+ // Allow passing in the element name because the jsxNode doesn't
20
+ // represent the element name with styled components
21
+ const elName = elementName || ast.JSXElement.getName(jsxNode);
22
+ if (!elName) {
23
+ return false;
24
+ }
25
+
26
+ // Only check native HTML elements, not components
27
+ if (elName[0] !== elName[0].toLowerCase()) {
28
+ return false;
29
+ }
30
+ let supportedElement = supportedElements.find(({
31
+ name
32
+ }) => name === elName);
33
+ if (!supportedElement) {
34
+ supportedElement = supportedElements.find(({
35
+ name
36
+ }) => name === '*');
37
+ }
38
+ if (!supportedElement) {
39
+ return false;
40
+ }
41
+
42
+ // Check if the element has any attributes that are not supported
43
+ const attributes = ast.JSXElement.getAttributes(jsxNode);
44
+ if (supportedElement.attributes && !supportedElement.attributes.every(({
45
+ name,
46
+ values
47
+ }) => {
48
+ return attributes.some(attribute => {
49
+ if (attribute.type === 'JSXSpreadAttribute') {
50
+ return false;
51
+ }
52
+ const isMatchingName = attribute.name.name === name;
53
+ const isMatchingValues = values && attribute.value && attribute.value.type === 'Literal' && typeof attribute.value.value === 'string' && (values === null || values === void 0 ? void 0 : values.includes(attribute.value.value));
54
+ return isMatchingName && isMatchingValues;
55
+ });
56
+ })) {
57
+ return false;
58
+ }
59
+ return true;
60
+ }
@@ -23,7 +23,7 @@ export const getStyledComponentCall = node => {
23
23
 
24
24
  /**
25
25
  * Some verbose precondition checks but all it does is check
26
- * a call expression is of form `styled.a` or `styled2.a`
26
+ * a call expression is of form `styled.<element>` or `styled2.<element>`
27
27
  */
28
28
  const isStyledCallExpression = call => {
29
29
  if (!isNodeOfType(call, 'CallExpression')) {
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
- * @codegen <<SignedSource::c78819ddb772edbd8d5e2dc246c52d11>>
3
+ * @codegen <<SignedSource::cadedc68c5a8a92d8134b8aa5239937f>>
4
4
  * @codegenCommand yarn workspace @atlaskit/eslint-plugin-design-system codegen
5
5
  */
6
6
 
@@ -25,6 +25,8 @@ export default {
25
25
  '@atlaskit/design-system/no-html-anchor': 'warn',
26
26
  '@atlaskit/design-system/no-html-button': 'warn',
27
27
  '@atlaskit/design-system/no-html-checkbox': 'warn',
28
+ '@atlaskit/design-system/no-html-image': 'warn',
29
+ '@atlaskit/design-system/no-html-range': 'warn',
28
30
  '@atlaskit/design-system/no-invalid-css-map': ['error', {
29
31
  allowedFunctionCalls: [['@atlaskit/tokens', 'token']]
30
32
  }],
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
- * @codegen <<SignedSource::d35975a64956ac336de205b1272c43f1>>
3
+ * @codegen <<SignedSource::340bf9f79ec1de1340a89df9d626b929>>
4
4
  * @codegenCommand yarn workspace @atlaskit/eslint-plugin-design-system codegen
5
5
  */
6
6
 
@@ -24,6 +24,8 @@ export default {
24
24
  '@atlaskit/design-system/no-html-anchor': 'warn',
25
25
  '@atlaskit/design-system/no-html-button': 'warn',
26
26
  '@atlaskit/design-system/no-html-checkbox': 'warn',
27
+ '@atlaskit/design-system/no-html-image': 'warn',
28
+ '@atlaskit/design-system/no-html-range': 'warn',
27
29
  '@atlaskit/design-system/no-invalid-css-map': ['error', {
28
30
  allowedFunctionCalls: [['@atlaskit/tokens', 'token']]
29
31
  }],
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
- * @codegen <<SignedSource::b96889a18bb45c45fa23ed42442732ba>>
3
+ * @codegen <<SignedSource::c264ea60cc6348c4292744c1260543d8>>
4
4
  * @codegenCommand yarn workspace @atlaskit/eslint-plugin-design-system codegen
5
5
  */
6
6
 
@@ -20,6 +20,8 @@ export default {
20
20
  '@atlaskit/design-system/no-html-anchor': 'warn',
21
21
  '@atlaskit/design-system/no-html-button': 'warn',
22
22
  '@atlaskit/design-system/no-html-checkbox': 'warn',
23
+ '@atlaskit/design-system/no-html-image': 'warn',
24
+ '@atlaskit/design-system/no-html-range': 'warn',
23
25
  '@atlaskit/design-system/no-invalid-css-map': ['error', {
24
26
  allowedFunctionCalls: [['@atlaskit/tokens', 'token']]
25
27
  }],
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
- * @codegen <<SignedSource::bd1d631a2db18da8a0726bec36044a51>>
3
+ * @codegen <<SignedSource::0158deb3db6cafbdeae2aeb18673ebc2>>
4
4
  * @codegenCommand yarn workspace @atlaskit/eslint-plugin-design-system codegen
5
5
  */
6
6
 
@@ -19,6 +19,8 @@ export default {
19
19
  '@atlaskit/design-system/no-html-anchor': 'warn',
20
20
  '@atlaskit/design-system/no-html-button': 'warn',
21
21
  '@atlaskit/design-system/no-html-checkbox': 'warn',
22
+ '@atlaskit/design-system/no-html-image': 'warn',
23
+ '@atlaskit/design-system/no-html-range': 'warn',
22
24
  '@atlaskit/design-system/no-invalid-css-map': ['error', {
23
25
  allowedFunctionCalls: [['@atlaskit/tokens', 'token']]
24
26
  }],
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
- * @codegen <<SignedSource::622bf05b9ade457d05e872b25c71ba5d>>
3
+ * @codegen <<SignedSource::5945e51ebc0b2c3553b51162f07dbd63>>
4
4
  * @codegenCommand yarn workspace @atlaskit/eslint-plugin-design-system codegen
5
5
  */
6
6
  import consistentCssPropUsage from './consistent-css-prop-usage';
@@ -23,6 +23,8 @@ import noExportedKeyframes from './no-exported-keyframes';
23
23
  import noHtmlAnchor from './no-html-anchor';
24
24
  import noHtmlButton from './no-html-button';
25
25
  import noHtmlCheckbox from './no-html-checkbox';
26
+ import noHtmlImage from './no-html-image';
27
+ import noHtmlRange from './no-html-range';
26
28
  import noInvalidCssMap from './no-invalid-css-map';
27
29
  import noKeyframesTaggedTemplateExpression from './no-keyframes-tagged-template-expression';
28
30
  import noLegacyIcons from './no-legacy-icons';
@@ -76,6 +78,8 @@ export var rules = {
76
78
  'no-html-anchor': noHtmlAnchor,
77
79
  'no-html-button': noHtmlButton,
78
80
  'no-html-checkbox': noHtmlCheckbox,
81
+ 'no-html-image': noHtmlImage,
82
+ 'no-html-range': noHtmlRange,
79
83
  'no-invalid-css-map': noInvalidCssMap,
80
84
  'no-keyframes-tagged-template-expression': noKeyframesTaggedTemplateExpression,
81
85
  'no-legacy-icons': noLegacyIcons,
@@ -2,9 +2,9 @@
2
2
 
3
3
  import { isNodeOfType } from 'eslint-codemod-utils';
4
4
  import { getScope } from '@atlaskit/eslint-utils/context-compat';
5
- import { getJsxElementByName } from '../../utils/get-jsx-element-by-name';
5
+ import { getJsxElementByName } from '../../../utils/get-jsx-element-by-name';
6
+ import { getStyledComponentCall } from '../../../utils/get-styled-component-call';
6
7
  import { isSupportedForLint } from '../supported';
7
- import { getStyledComponentCall } from './get-styled-component-call';
8
8
  export var StyledComponent = {
9
9
  lint: function lint(node, _ref) {
10
10
  var _getJsxElementByName;
@@ -2,9 +2,9 @@
2
2
 
3
3
  import { isNodeOfType } from 'eslint-codemod-utils';
4
4
  import { getScope } from '@atlaskit/eslint-utils/context-compat';
5
- import { getJsxElementByName } from '../../utils/get-jsx-element-by-name';
5
+ import { getJsxElementByName } from '../../../utils/get-jsx-element-by-name';
6
+ import { getStyledComponentCall } from '../../../utils/get-styled-component-call';
6
7
  import { isSupportedForLint } from '../supported';
7
- import { getStyledComponentCall } from './get-styled-component-call';
8
8
  export var StyledComponent = {
9
9
  lint: function lint(node, _ref) {
10
10
  var _getJsxElementByName;
@@ -0,0 +1,34 @@
1
+ import { createLintRule } from '../utils/create-rule';
2
+ import { JSXElement as _JSXElement, StyledComponent } from './node-types';
3
+ var rule = createLintRule({
4
+ meta: {
5
+ name: 'no-html-image',
6
+ type: 'suggestion',
7
+ hasSuggestions: true,
8
+ docs: {
9
+ description: 'Discourage direct usage of HTML image elements in favor of the Atlassian Design System image component.',
10
+ recommended: true,
11
+ severity: 'warn'
12
+ },
13
+ messages: {
14
+ noHtmlImage: "This <{{ name }}> should be replaced with the image component from the Atlassian Design System. ADS images ensure accessible implementations, and provide access to ADS styling features like design tokens."
15
+ }
16
+ },
17
+ create: function create(context) {
18
+ return {
19
+ // transforms styled.<anchor>(...) usages
20
+ CallExpression: function CallExpression(node) {
21
+ StyledComponent.lint(node, {
22
+ context: context
23
+ });
24
+ },
25
+ // transforms <anchor css={...}> usages
26
+ JSXElement: function JSXElement(node) {
27
+ _JSXElement.lint(node, {
28
+ context: context
29
+ });
30
+ }
31
+ };
32
+ }
33
+ });
34
+ export default rule;
@@ -0,0 +1,2 @@
1
+ export { StyledComponent } from './styled-component';
2
+ export { JSXElement } from './jsx-element';
@@ -0,0 +1,106 @@
1
+ function _createForOfIteratorHelper(r, e) { var t = "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"]; if (!t) { if (Array.isArray(r) || (t = _unsupportedIterableToArray(r)) || e && r && "number" == typeof r.length) { t && (r = t); var _n = 0, F = function F() {}; return { s: F, n: function n() { return _n >= r.length ? { done: !0 } : { done: !1, value: r[_n++] }; }, e: function e(r) { throw r; }, f: F }; } throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } var o, a = !0, u = !1; return { s: function s() { t = t.call(r); }, n: function n() { var r = t.next(); return a = r.done, r; }, e: function e(r) { u = !0, o = r; }, f: function f() { try { a || null == t.return || t.return(); } finally { if (u) throw o; } } }; }
2
+ function _unsupportedIterableToArray(r, a) { if (r) { if ("string" == typeof r) return _arrayLikeToArray(r, a); var t = {}.toString.call(r).slice(8, -1); return "Object" === t && r.constructor && (t = r.constructor.name), "Map" === t || "Set" === t ? Array.from(r) : "Arguments" === t || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t) ? _arrayLikeToArray(r, a) : void 0; } }
3
+ function _arrayLikeToArray(r, a) { (null == a || a > r.length) && (a = r.length); for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e]; return n; }
4
+ import { isNodeOfType } from 'eslint-codemod-utils';
5
+ import { getSourceCode } from '@atlaskit/eslint-utils/context-compat';
6
+ import * as ast from '../../../../ast-nodes';
7
+ import { isSupportedForLint } from '../supported';
8
+ function isImportDeclaration(node) {
9
+ return node.type === 'ImportDeclaration';
10
+ }
11
+ export var JSXElement = {
12
+ lint: function lint(node, _ref) {
13
+ var context = _ref.context;
14
+ if (!isSupportedForLint(node)) {
15
+ return;
16
+ }
17
+ var nodeName = ast.JSXElement.getName(node);
18
+ var sourceCode = getSourceCode(context);
19
+ var importDeclarations = sourceCode.ast.body.filter(isImportDeclaration);
20
+ var existingImageName = null;
21
+ var usedNames = new Set();
22
+
23
+ // Check for existing imports
24
+ var _iterator = _createForOfIteratorHelper(importDeclarations),
25
+ _step;
26
+ try {
27
+ for (_iterator.s(); !(_step = _iterator.n()).done;) {
28
+ var declaration = _step.value;
29
+ var _iterator2 = _createForOfIteratorHelper(declaration.specifiers),
30
+ _step2;
31
+ try {
32
+ for (_iterator2.s(); !(_step2 = _iterator2.n()).done;) {
33
+ var specifier = _step2.value;
34
+ usedNames.add(specifier.local.name);
35
+ }
36
+ } catch (err) {
37
+ _iterator2.e(err);
38
+ } finally {
39
+ _iterator2.f();
40
+ }
41
+ if (declaration.source.value === '@atlaskit/image') {
42
+ var defaultSpecifier = declaration.specifiers.find(function (specifier) {
43
+ return specifier.type === 'ImportDefaultSpecifier';
44
+ });
45
+ if (defaultSpecifier) {
46
+ existingImageName = defaultSpecifier.local.name;
47
+ }
48
+ }
49
+ }
50
+ } catch (err) {
51
+ _iterator.e(err);
52
+ } finally {
53
+ _iterator.f();
54
+ }
55
+ var generateUniqueName = function generateUniqueName(baseName) {
56
+ var index = 1;
57
+ var newName = baseName;
58
+ while (usedNames.has(newName)) {
59
+ newName = "".concat(baseName).concat(index);
60
+ index++;
61
+ }
62
+ return newName;
63
+ };
64
+ var imageName = existingImageName || generateUniqueName('Image');
65
+ context.report({
66
+ node: node.openingElement,
67
+ messageId: 'noHtmlImage',
68
+ data: {
69
+ name: nodeName
70
+ },
71
+ suggest: [{
72
+ desc: 'Replace with Image component from @atlaskit/image',
73
+ fix: function fix(fixer) {
74
+ var _node$closingElement;
75
+ var openingTagRange = node.openingElement.range;
76
+ var closingTagRange = (_node$closingElement = node.closingElement) === null || _node$closingElement === void 0 ? void 0 : _node$closingElement.range;
77
+ var attributesText = node.openingElement.attributes.filter(function (attr) {
78
+ return !isNodeOfType(attr, 'JSXAttribute') || attr.name.name !== 'role';
79
+ }).map(function (attr) {
80
+ return sourceCode.getText(attr);
81
+ }).join(' ');
82
+ var fixers = [];
83
+
84
+ // Replace <img> with <Image> and retain attributes
85
+ if (openingTagRange) {
86
+ if (node.openingElement.selfClosing) {
87
+ fixers.push(fixer.replaceTextRange([openingTagRange[0] + 1, openingTagRange[1] - 1], "".concat(imageName).concat(attributesText ? " ".concat(attributesText) : '', " /")));
88
+ } else {
89
+ fixers.push(fixer.replaceTextRange([openingTagRange[0] + 1, openingTagRange[1] - 1], "".concat(imageName).concat(attributesText ? " ".concat(attributesText) : '')));
90
+ }
91
+ }
92
+ if (closingTagRange && !node.openingElement.selfClosing) {
93
+ fixers.push(fixer.replaceTextRange([closingTagRange[0] + 2, closingTagRange[1] - 1], imageName));
94
+ }
95
+
96
+ // Add import if not present
97
+ if (!existingImageName) {
98
+ var importStatement = "import ".concat(imageName, " from '@atlaskit/image';\n");
99
+ fixers.push(fixer.insertTextBefore(sourceCode.ast, importStatement));
100
+ }
101
+ return fixers;
102
+ }
103
+ }]
104
+ });
105
+ }
106
+ };
@@ -0,0 +1,36 @@
1
+ /* eslint-disable @repo/internal/react/require-jsdoc */
2
+
3
+ import { isNodeOfType } from 'eslint-codemod-utils';
4
+ import { getScope } from '@atlaskit/eslint-utils/context-compat';
5
+ import { getStyledComponentCall } from '../../../utils/get-styled-component-call';
6
+ import { getJsxElementByName } from '../../utils/get-jsx-element-by-name';
7
+ import { isSupportedForLint } from '../supported';
8
+ export var StyledComponent = {
9
+ lint: function lint(node, _ref) {
10
+ var _getJsxElementByName;
11
+ var context = _ref.context;
12
+ if (!isNodeOfType(node, 'CallExpression') || !isNodeOfType(node.callee, 'MemberExpression') || !isNodeOfType(node.callee.object, 'Identifier') || !isNodeOfType(node.callee.property, 'Identifier')) {
13
+ return;
14
+ }
15
+ var styles = getStyledComponentCall(node);
16
+ var elementName = node.callee.property.name;
17
+ if (!styles || !isNodeOfType(styles.id, 'Identifier')) {
18
+ return;
19
+ }
20
+ var jsxElement = (_getJsxElementByName = getJsxElementByName(styles.id.name, getScope(context, node))) === null || _getJsxElementByName === void 0 ? void 0 : _getJsxElementByName.parent;
21
+ if (!jsxElement) {
22
+ // If there's no JSX element, we can't determine if it's being used as an image or not
23
+ return;
24
+ }
25
+ if (jsxElement && !isSupportedForLint(jsxElement, elementName)) {
26
+ return;
27
+ }
28
+ context.report({
29
+ node: styles,
30
+ messageId: 'noHtmlImage',
31
+ data: {
32
+ name: node.callee.property.name
33
+ }
34
+ });
35
+ }
36
+ };
@@ -0,0 +1,63 @@
1
+ import { isNodeOfType } from 'eslint-codemod-utils';
2
+ import * as ast from '../../../ast-nodes';
3
+ var supportedElements = [{
4
+ name: 'img'
5
+ }, {
6
+ name: '*',
7
+ attributes: [{
8
+ name: 'role',
9
+ values: ['img']
10
+ }]
11
+ }];
12
+
13
+ /**
14
+ * Determines if the given JSX element is a supported element to lint with this rule.
15
+ */
16
+ export function isSupportedForLint(jsxNode, elementName) {
17
+ if (!isNodeOfType(jsxNode, 'JSXElement')) {
18
+ return false;
19
+ }
20
+
21
+ // Allow passing in the element name because the jsxNode doesn't
22
+ // represent the element name with styled components
23
+ var elName = elementName || ast.JSXElement.getName(jsxNode);
24
+ if (!elName) {
25
+ return false;
26
+ }
27
+
28
+ // Only check native HTML elements, not components
29
+ if (elName[0] !== elName[0].toLowerCase()) {
30
+ return false;
31
+ }
32
+ var supportedElement = supportedElements.find(function (_ref) {
33
+ var name = _ref.name;
34
+ return name === elName;
35
+ });
36
+ if (!supportedElement) {
37
+ supportedElement = supportedElements.find(function (_ref2) {
38
+ var name = _ref2.name;
39
+ return name === '*';
40
+ });
41
+ }
42
+ if (!supportedElement) {
43
+ return false;
44
+ }
45
+
46
+ // Check if the element has any attributes that are not supported
47
+ var attributes = ast.JSXElement.getAttributes(jsxNode);
48
+ if (supportedElement.attributes && !supportedElement.attributes.every(function (_ref3) {
49
+ var name = _ref3.name,
50
+ values = _ref3.values;
51
+ return attributes.some(function (attribute) {
52
+ if (attribute.type === 'JSXSpreadAttribute') {
53
+ return false;
54
+ }
55
+ var isMatchingName = attribute.name.name === name;
56
+ var isMatchingValues = values && attribute.value && attribute.value.type === 'Literal' && typeof attribute.value.value === 'string' && (values === null || values === void 0 ? void 0 : values.includes(attribute.value.value));
57
+ return isMatchingName && isMatchingValues;
58
+ });
59
+ })) {
60
+ return false;
61
+ }
62
+ return true;
63
+ }
@@ -0,0 +1,28 @@
1
+ import { createLintRule } from '../utils/create-rule';
2
+ import { JSXElement as _JSXElement } from './node-types';
3
+ var rule = createLintRule({
4
+ meta: {
5
+ name: 'no-html-range',
6
+ type: 'suggestion',
7
+ hasSuggestions: true,
8
+ docs: {
9
+ description: 'Discourage direct usage of HTML range elements in favor of the Atlassian Design System range component.',
10
+ recommended: true,
11
+ severity: 'warn'
12
+ },
13
+ messages: {
14
+ noHtmlRange: "This <{{ name }}> should be replaced with a range component from the Atlassian Design System. ADS components include event tracking, ensure accessible implementations, and provide access to ADS styling features like design tokens."
15
+ }
16
+ },
17
+ create: function create(context) {
18
+ return {
19
+ // transforms <input type="range" css={...}> usages
20
+ JSXElement: function JSXElement(node) {
21
+ _JSXElement.lint(node, {
22
+ context: context
23
+ });
24
+ }
25
+ };
26
+ }
27
+ });
28
+ export default rule;
@@ -0,0 +1 @@
1
+ export { JSXElement } from './jsx-element';
@@ -0,0 +1,18 @@
1
+ import * as ast from '../../../../ast-nodes';
2
+ import { isSupportedForLint } from '../supported';
3
+ export var JSXElement = {
4
+ lint: function lint(node, _ref) {
5
+ var context = _ref.context;
6
+ if (!isSupportedForLint(node)) {
7
+ return;
8
+ }
9
+ var nodeName = ast.JSXElement.getName(node);
10
+ context.report({
11
+ node: node.openingElement,
12
+ messageId: 'noHtmlRange',
13
+ data: {
14
+ name: nodeName
15
+ }
16
+ });
17
+ }
18
+ };
@@ -0,0 +1,61 @@
1
+ import { isNodeOfType } from 'eslint-codemod-utils';
2
+ import * as ast from '../../../ast-nodes';
3
+ var supportedElements = [{
4
+ name: 'input',
5
+ attributes: [{
6
+ name: 'type',
7
+ values: ['range']
8
+ }]
9
+ }];
10
+
11
+ /**
12
+ * Determines if the given JSX element is a supported element to lint with this rule.
13
+ */
14
+ export function isSupportedForLint(jsxNode, elementName) {
15
+ if (!isNodeOfType(jsxNode, 'JSXElement')) {
16
+ return false;
17
+ }
18
+
19
+ // Allow passing in the element name because the jsxNode doesn't
20
+ // represent the element name with styled components
21
+ var elName = elementName || ast.JSXElement.getName(jsxNode);
22
+ if (!elName) {
23
+ return false;
24
+ }
25
+
26
+ // Only check native HTML elements, not components
27
+ if (elName[0] !== elName[0].toLowerCase()) {
28
+ return false;
29
+ }
30
+ var supportedElement = supportedElements.find(function (_ref) {
31
+ var name = _ref.name;
32
+ return name === elName;
33
+ });
34
+ if (!supportedElement) {
35
+ supportedElement = supportedElements.find(function (_ref2) {
36
+ var name = _ref2.name;
37
+ return name === '*';
38
+ });
39
+ }
40
+ if (!supportedElement) {
41
+ return false;
42
+ }
43
+
44
+ // Check if the element has any attributes that are not supported
45
+ var attributes = ast.JSXElement.getAttributes(jsxNode);
46
+ if (supportedElement.attributes && !supportedElement.attributes.every(function (_ref3) {
47
+ var name = _ref3.name,
48
+ values = _ref3.values;
49
+ return attributes.some(function (attribute) {
50
+ if (attribute.type === 'JSXSpreadAttribute') {
51
+ return false;
52
+ }
53
+ var isMatchingName = attribute.name.name === name;
54
+ var isMatchingValues = values && attribute.value && attribute.value.type === 'Literal' && typeof attribute.value.value === 'string' && (values === null || values === void 0 ? void 0 : values.includes(attribute.value.value));
55
+ return isMatchingName && isMatchingValues;
56
+ });
57
+ })) {
58
+ return false;
59
+ }
60
+ return true;
61
+ }
@@ -23,7 +23,7 @@ export var getStyledComponentCall = function getStyledComponentCall(node) {
23
23
 
24
24
  /**
25
25
  * Some verbose precondition checks but all it does is check
26
- * a call expression is of form `styled.a` or `styled2.a`
26
+ * a call expression is of form `styled.<element>` or `styled2.<element>`
27
27
  */
28
28
  var isStyledCallExpression = function isStyledCallExpression(call) {
29
29
  if (!isNodeOfType(call, 'CallExpression')) {