@atlaskit/eslint-plugin-design-system 13.7.0 → 13.9.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 (75) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/README.md +57 -55
  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-range/index.js +34 -0
  9. package/dist/cjs/rules/no-html-range/node-types/index.js +12 -0
  10. package/dist/cjs/rules/no-html-range/node-types/jsx-element/index.js +27 -0
  11. package/dist/cjs/rules/no-html-range/node-types/supported.js +70 -0
  12. package/dist/cjs/rules/no-html-select/index.js +40 -0
  13. package/dist/cjs/rules/no-html-select/node-types/index.js +19 -0
  14. package/dist/cjs/rules/no-html-select/node-types/jsx-element/index.js +27 -0
  15. package/dist/cjs/rules/no-html-select/node-types/styled-component/index.js +42 -0
  16. package/dist/cjs/rules/no-html-select/node-types/supported.js +66 -0
  17. package/dist/es2019/presets/all-flat.codegen.js +3 -1
  18. package/dist/es2019/presets/all.codegen.js +3 -1
  19. package/dist/es2019/presets/recommended-flat.codegen.js +3 -1
  20. package/dist/es2019/presets/recommended.codegen.js +3 -1
  21. package/dist/es2019/rules/index.codegen.js +5 -1
  22. package/dist/es2019/rules/no-html-range/index.js +28 -0
  23. package/dist/es2019/rules/no-html-range/node-types/index.js +1 -0
  24. package/dist/es2019/rules/no-html-range/node-types/jsx-element/index.js +19 -0
  25. package/dist/es2019/rules/no-html-range/node-types/supported.js +60 -0
  26. package/dist/es2019/rules/no-html-select/index.js +34 -0
  27. package/dist/es2019/rules/no-html-select/node-types/index.js +2 -0
  28. package/dist/es2019/rules/no-html-select/node-types/jsx-element/index.js +19 -0
  29. package/dist/es2019/rules/no-html-select/node-types/styled-component/index.js +37 -0
  30. package/dist/es2019/rules/no-html-select/node-types/supported.js +56 -0
  31. package/dist/esm/presets/all-flat.codegen.js +3 -1
  32. package/dist/esm/presets/all.codegen.js +3 -1
  33. package/dist/esm/presets/recommended-flat.codegen.js +3 -1
  34. package/dist/esm/presets/recommended.codegen.js +3 -1
  35. package/dist/esm/rules/index.codegen.js +5 -1
  36. package/dist/esm/rules/no-html-range/index.js +28 -0
  37. package/dist/esm/rules/no-html-range/node-types/index.js +1 -0
  38. package/dist/esm/rules/no-html-range/node-types/jsx-element/index.js +18 -0
  39. package/dist/esm/rules/no-html-range/node-types/supported.js +61 -0
  40. package/dist/esm/rules/no-html-select/index.js +34 -0
  41. package/dist/esm/rules/no-html-select/node-types/index.js +2 -0
  42. package/dist/esm/rules/no-html-select/node-types/jsx-element/index.js +18 -0
  43. package/dist/esm/rules/no-html-select/node-types/styled-component/index.js +36 -0
  44. package/dist/esm/rules/no-html-select/node-types/supported.js +57 -0
  45. package/dist/types/index.codegen.d.ts +18 -0
  46. package/dist/types/presets/all-flat.codegen.d.ts +2 -0
  47. package/dist/types/presets/all.codegen.d.ts +2 -0
  48. package/dist/types/presets/recommended-flat.codegen.d.ts +2 -0
  49. package/dist/types/presets/recommended.codegen.d.ts +2 -0
  50. package/dist/types/rules/index.codegen.d.ts +2 -0
  51. package/dist/types/rules/no-html-range/index.d.ts +3 -0
  52. package/dist/types/rules/no-html-range/node-types/index.d.ts +1 -0
  53. package/dist/types/rules/no-html-range/node-types/jsx-element/index.d.ts +8 -0
  54. package/dist/types/rules/no-html-range/node-types/supported.d.ts +7 -0
  55. package/dist/types/rules/no-html-select/index.d.ts +3 -0
  56. package/dist/types/rules/no-html-select/node-types/index.d.ts +2 -0
  57. package/dist/types/rules/no-html-select/node-types/jsx-element/index.d.ts +8 -0
  58. package/dist/types/rules/no-html-select/node-types/styled-component/index.d.ts +8 -0
  59. package/dist/types/rules/no-html-select/node-types/supported.d.ts +7 -0
  60. package/dist/types-ts4.5/index.codegen.d.ts +18 -0
  61. package/dist/types-ts4.5/presets/all-flat.codegen.d.ts +2 -0
  62. package/dist/types-ts4.5/presets/all.codegen.d.ts +2 -0
  63. package/dist/types-ts4.5/presets/recommended-flat.codegen.d.ts +2 -0
  64. package/dist/types-ts4.5/presets/recommended.codegen.d.ts +2 -0
  65. package/dist/types-ts4.5/rules/index.codegen.d.ts +2 -0
  66. package/dist/types-ts4.5/rules/no-html-range/index.d.ts +3 -0
  67. package/dist/types-ts4.5/rules/no-html-range/node-types/index.d.ts +1 -0
  68. package/dist/types-ts4.5/rules/no-html-range/node-types/jsx-element/index.d.ts +8 -0
  69. package/dist/types-ts4.5/rules/no-html-range/node-types/supported.d.ts +7 -0
  70. package/dist/types-ts4.5/rules/no-html-select/index.d.ts +3 -0
  71. package/dist/types-ts4.5/rules/no-html-select/node-types/index.d.ts +2 -0
  72. package/dist/types-ts4.5/rules/no-html-select/node-types/jsx-element/index.d.ts +8 -0
  73. package/dist/types-ts4.5/rules/no-html-select/node-types/styled-component/index.d.ts +8 -0
  74. package/dist/types-ts4.5/rules/no-html-select/node-types/supported.d.ts +7 -0
  75. package/package.json +1 -1
@@ -0,0 +1,42 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.StyledComponent = void 0;
7
+ var _eslintCodemodUtils = require("eslint-codemod-utils");
8
+ var _contextCompat = require("@atlaskit/eslint-utils/context-compat");
9
+ var _getJsxElementByName2 = require("../../../utils/get-jsx-element-by-name");
10
+ var _getStyledComponentCall = require("../../../utils/get-styled-component-call");
11
+ var _supported = require("../supported");
12
+ /* eslint-disable @repo/internal/react/require-jsdoc */
13
+
14
+ var StyledComponent = exports.StyledComponent = {
15
+ lint: function lint(node, _ref) {
16
+ var _getJsxElementByName;
17
+ var context = _ref.context;
18
+ if (!(0, _eslintCodemodUtils.isNodeOfType)(node, 'CallExpression') || !(0, _eslintCodemodUtils.isNodeOfType)(node.callee, 'MemberExpression') || !(0, _eslintCodemodUtils.isNodeOfType)(node.callee.object, 'Identifier') || !(0, _eslintCodemodUtils.isNodeOfType)(node.callee.property, 'Identifier')) {
19
+ return;
20
+ }
21
+ var styles = (0, _getStyledComponentCall.getStyledComponentCall)(node);
22
+ var elementName = node.callee.property.name;
23
+ if (!styles || !(0, _eslintCodemodUtils.isNodeOfType)(styles.id, 'Identifier')) {
24
+ return;
25
+ }
26
+ var jsxElement = (_getJsxElementByName = (0, _getJsxElementByName2.getJsxElementByName)(styles.id.name, (0, _contextCompat.getScope)(context, node))) === null || _getJsxElementByName === void 0 ? void 0 : _getJsxElementByName.parent;
27
+ if (!jsxElement) {
28
+ // If there's no JSX element, we can't determine if it's being used as an select or not
29
+ return;
30
+ }
31
+ if (jsxElement && !(0, _supported.isSupportedForLint)(jsxElement, elementName)) {
32
+ return;
33
+ }
34
+ context.report({
35
+ node: styles,
36
+ messageId: 'noHtmlSelect',
37
+ data: {
38
+ name: node.callee.property.name
39
+ }
40
+ });
41
+ }
42
+ };
@@ -0,0 +1,66 @@
1
+ "use strict";
2
+
3
+ var _typeof = require("@babel/runtime/helpers/typeof");
4
+ Object.defineProperty(exports, "__esModule", {
5
+ value: true
6
+ });
7
+ exports.isSupportedForLint = isSupportedForLint;
8
+ var _eslintCodemodUtils = require("eslint-codemod-utils");
9
+ var ast = _interopRequireWildcard(require("../../../ast-nodes"));
10
+ function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(e) { return e ? t : r; })(e); }
11
+ function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != _typeof(e) && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
12
+ var supportedElements = [{
13
+ name: 'select'
14
+ }];
15
+
16
+ /**
17
+ * Determines if the given JSX element is a supported element to lint with this rule.
18
+ */
19
+ function isSupportedForLint(jsxNode, elementName) {
20
+ if (!(0, _eslintCodemodUtils.isNodeOfType)(jsxNode, 'JSXElement')) {
21
+ return false;
22
+ }
23
+
24
+ // Allow passing in the element name because the jsxNode doesn't
25
+ // represent the element name with styled components
26
+ var elName = elementName || ast.JSXElement.getName(jsxNode);
27
+ if (!elName) {
28
+ return false;
29
+ }
30
+
31
+ // Only check native HTML elements, not components
32
+ if (elName[0] !== elName[0].toLowerCase()) {
33
+ return false;
34
+ }
35
+ var supportedElement = supportedElements.find(function (_ref) {
36
+ var name = _ref.name;
37
+ return name === elName;
38
+ });
39
+ if (!supportedElement) {
40
+ supportedElement = supportedElements.find(function (_ref2) {
41
+ var name = _ref2.name;
42
+ return name === '*';
43
+ });
44
+ }
45
+ if (!supportedElement) {
46
+ return false;
47
+ }
48
+
49
+ // Check if the element has any attributes that are not supported
50
+ var attributes = ast.JSXElement.getAttributes(jsxNode);
51
+ if (supportedElement.attributes && !supportedElement.attributes.every(function (_ref3) {
52
+ var name = _ref3.name,
53
+ values = _ref3.values;
54
+ return attributes.some(function (attribute) {
55
+ if (attribute.type === 'JSXSpreadAttribute') {
56
+ return false;
57
+ }
58
+ var isMatchingName = attribute.name.name === name;
59
+ 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));
60
+ return isMatchingName && isMatchingValues;
61
+ });
62
+ })) {
63
+ return false;
64
+ }
65
+ return true;
66
+ }
@@ -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::9a179b7d6c19d5c7eafde6b3ae40233b>>
3
+ * @codegen <<SignedSource::f202c585a3745f4765e0515889577a22>>
4
4
  * @codegenCommand yarn workspace @atlaskit/eslint-plugin-design-system codegen
5
5
  */
6
6
 
@@ -26,6 +26,8 @@ export default {
26
26
  '@atlaskit/design-system/no-html-button': 'warn',
27
27
  '@atlaskit/design-system/no-html-checkbox': 'warn',
28
28
  '@atlaskit/design-system/no-html-image': 'warn',
29
+ '@atlaskit/design-system/no-html-range': 'warn',
30
+ '@atlaskit/design-system/no-html-select': 'warn',
29
31
  '@atlaskit/design-system/no-invalid-css-map': ['error', {
30
32
  allowedFunctionCalls: [['@atlaskit/tokens', 'token']]
31
33
  }],
@@ -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::08dc1cc7cbbf7112f2f5733f57a9e2b1>>
3
+ * @codegen <<SignedSource::6b4a8032ac1f59781b9675b9cc053a55>>
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-button': 'warn',
26
26
  '@atlaskit/design-system/no-html-checkbox': 'warn',
27
27
  '@atlaskit/design-system/no-html-image': 'warn',
28
+ '@atlaskit/design-system/no-html-range': 'warn',
29
+ '@atlaskit/design-system/no-html-select': '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::81564fd37c062c0be3a14ca6ea1e4271>>
3
+ * @codegen <<SignedSource::88336f6c2f8c5d33f84730619006b49e>>
4
4
  * @codegenCommand yarn workspace @atlaskit/eslint-plugin-design-system codegen
5
5
  */
6
6
 
@@ -21,6 +21,8 @@ export default {
21
21
  '@atlaskit/design-system/no-html-button': 'warn',
22
22
  '@atlaskit/design-system/no-html-checkbox': 'warn',
23
23
  '@atlaskit/design-system/no-html-image': 'warn',
24
+ '@atlaskit/design-system/no-html-range': 'warn',
25
+ '@atlaskit/design-system/no-html-select': 'warn',
24
26
  '@atlaskit/design-system/no-invalid-css-map': ['error', {
25
27
  allowedFunctionCalls: [['@atlaskit/tokens', 'token']]
26
28
  }],
@@ -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::175936d329524b99169a5dc943011231>>
3
+ * @codegen <<SignedSource::829b781e15e90c3a142273e2b153459f>>
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-button': 'warn',
21
21
  '@atlaskit/design-system/no-html-checkbox': 'warn',
22
22
  '@atlaskit/design-system/no-html-image': 'warn',
23
+ '@atlaskit/design-system/no-html-range': 'warn',
24
+ '@atlaskit/design-system/no-html-select': '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::3cefc1b277e5c633caf1fd4491d60d94>>
3
+ * @codegen <<SignedSource::60d053061448c69290fba282ee307366>>
4
4
  * @codegenCommand yarn workspace @atlaskit/eslint-plugin-design-system codegen
5
5
  */
6
6
  import consistentCssPropUsage from './consistent-css-prop-usage';
@@ -24,6 +24,8 @@ import noHtmlAnchor from './no-html-anchor';
24
24
  import noHtmlButton from './no-html-button';
25
25
  import noHtmlCheckbox from './no-html-checkbox';
26
26
  import noHtmlImage from './no-html-image';
27
+ import noHtmlRange from './no-html-range';
28
+ import noHtmlSelect from './no-html-select';
27
29
  import noInvalidCssMap from './no-invalid-css-map';
28
30
  import noKeyframesTaggedTemplateExpression from './no-keyframes-tagged-template-expression';
29
31
  import noLegacyIcons from './no-legacy-icons';
@@ -78,6 +80,8 @@ export const rules = {
78
80
  'no-html-button': noHtmlButton,
79
81
  'no-html-checkbox': noHtmlCheckbox,
80
82
  'no-html-image': noHtmlImage,
83
+ 'no-html-range': noHtmlRange,
84
+ 'no-html-select': noHtmlSelect,
81
85
  'no-invalid-css-map': noInvalidCssMap,
82
86
  'no-keyframes-tagged-template-expression': noKeyframesTaggedTemplateExpression,
83
87
  'no-legacy-icons': noLegacyIcons,
@@ -0,0 +1,28 @@
1
+ import { createLintRule } from '../utils/create-rule';
2
+ import { JSXElement } from './node-types';
3
+ const 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(context) {
18
+ return {
19
+ // transforms <input type="range" css={...}> usages
20
+ JSXElement(node) {
21
+ JSXElement.lint(node, {
22
+ context
23
+ });
24
+ }
25
+ };
26
+ }
27
+ });
28
+ export default rule;
@@ -0,0 +1 @@
1
+ export { JSXElement } from './jsx-element';
@@ -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
+ }
@@ -0,0 +1,34 @@
1
+ import { createLintRule } from '../utils/create-rule';
2
+ import { JSXElement, StyledComponent } from './node-types';
3
+ const rule = createLintRule({
4
+ meta: {
5
+ name: 'no-html-select',
6
+ type: 'suggestion',
7
+ hasSuggestions: true,
8
+ docs: {
9
+ description: 'Discourage direct usage of HTML select elements in favor of the Atlassian Design System select component.',
10
+ recommended: true,
11
+ severity: 'warn'
12
+ },
13
+ messages: {
14
+ noHtmlSelect: `This <{{ name }}> should be replaced with the select component from the Atlassian Design System. ADS select components have event tracking, ensure accessible implementations, and provide access to ADS styling features like design tokens.`
15
+ }
16
+ },
17
+ create(context) {
18
+ return {
19
+ // transforms styled.<anchor>(...) usages
20
+ CallExpression(node) {
21
+ StyledComponent.lint(node, {
22
+ context
23
+ });
24
+ },
25
+ // transforms <anchor css={...}> usages
26
+ JSXElement(node) {
27
+ JSXElement.lint(node, {
28
+ 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,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: 'noHtmlSelect',
14
+ data: {
15
+ name: nodeName
16
+ }
17
+ });
18
+ }
19
+ };
@@ -0,0 +1,37 @@
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 { getJsxElementByName } from '../../../utils/get-jsx-element-by-name';
6
+ import { getStyledComponentCall } from '../../../utils/get-styled-component-call';
7
+ import { isSupportedForLint } from '../supported';
8
+ export const StyledComponent = {
9
+ lint(node, {
10
+ context
11
+ }) {
12
+ var _getJsxElementByName;
13
+ if (!isNodeOfType(node, 'CallExpression') || !isNodeOfType(node.callee, 'MemberExpression') || !isNodeOfType(node.callee.object, 'Identifier') || !isNodeOfType(node.callee.property, 'Identifier')) {
14
+ return;
15
+ }
16
+ const styles = getStyledComponentCall(node);
17
+ const elementName = node.callee.property.name;
18
+ if (!styles || !isNodeOfType(styles.id, 'Identifier')) {
19
+ return;
20
+ }
21
+ const jsxElement = (_getJsxElementByName = getJsxElementByName(styles.id.name, getScope(context, node))) === null || _getJsxElementByName === void 0 ? void 0 : _getJsxElementByName.parent;
22
+ if (!jsxElement) {
23
+ // If there's no JSX element, we can't determine if it's being used as an select or not
24
+ return;
25
+ }
26
+ if (jsxElement && !isSupportedForLint(jsxElement, elementName)) {
27
+ return;
28
+ }
29
+ context.report({
30
+ node: styles,
31
+ messageId: 'noHtmlSelect',
32
+ data: {
33
+ name: node.callee.property.name
34
+ }
35
+ });
36
+ }
37
+ };
@@ -0,0 +1,56 @@
1
+ import { isNodeOfType } from 'eslint-codemod-utils';
2
+ import * as ast from '../../../ast-nodes';
3
+ const supportedElements = [{
4
+ name: 'select'
5
+ }];
6
+
7
+ /**
8
+ * Determines if the given JSX element is a supported element to lint with this rule.
9
+ */
10
+ export function isSupportedForLint(jsxNode, elementName) {
11
+ if (!isNodeOfType(jsxNode, 'JSXElement')) {
12
+ return false;
13
+ }
14
+
15
+ // Allow passing in the element name because the jsxNode doesn't
16
+ // represent the element name with styled components
17
+ const elName = elementName || ast.JSXElement.getName(jsxNode);
18
+ if (!elName) {
19
+ return false;
20
+ }
21
+
22
+ // Only check native HTML elements, not components
23
+ if (elName[0] !== elName[0].toLowerCase()) {
24
+ return false;
25
+ }
26
+ let supportedElement = supportedElements.find(({
27
+ name
28
+ }) => name === elName);
29
+ if (!supportedElement) {
30
+ supportedElement = supportedElements.find(({
31
+ name
32
+ }) => name === '*');
33
+ }
34
+ if (!supportedElement) {
35
+ return false;
36
+ }
37
+
38
+ // Check if the element has any attributes that are not supported
39
+ const attributes = ast.JSXElement.getAttributes(jsxNode);
40
+ if (supportedElement.attributes && !supportedElement.attributes.every(({
41
+ name,
42
+ values
43
+ }) => {
44
+ return attributes.some(attribute => {
45
+ if (attribute.type === 'JSXSpreadAttribute') {
46
+ return false;
47
+ }
48
+ const isMatchingName = attribute.name.name === name;
49
+ 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));
50
+ return isMatchingName && isMatchingValues;
51
+ });
52
+ })) {
53
+ return false;
54
+ }
55
+ return true;
56
+ }
@@ -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::9a179b7d6c19d5c7eafde6b3ae40233b>>
3
+ * @codegen <<SignedSource::f202c585a3745f4765e0515889577a22>>
4
4
  * @codegenCommand yarn workspace @atlaskit/eslint-plugin-design-system codegen
5
5
  */
6
6
 
@@ -26,6 +26,8 @@ export default {
26
26
  '@atlaskit/design-system/no-html-button': 'warn',
27
27
  '@atlaskit/design-system/no-html-checkbox': 'warn',
28
28
  '@atlaskit/design-system/no-html-image': 'warn',
29
+ '@atlaskit/design-system/no-html-range': 'warn',
30
+ '@atlaskit/design-system/no-html-select': 'warn',
29
31
  '@atlaskit/design-system/no-invalid-css-map': ['error', {
30
32
  allowedFunctionCalls: [['@atlaskit/tokens', 'token']]
31
33
  }],
@@ -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::08dc1cc7cbbf7112f2f5733f57a9e2b1>>
3
+ * @codegen <<SignedSource::6b4a8032ac1f59781b9675b9cc053a55>>
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-button': 'warn',
26
26
  '@atlaskit/design-system/no-html-checkbox': 'warn',
27
27
  '@atlaskit/design-system/no-html-image': 'warn',
28
+ '@atlaskit/design-system/no-html-range': 'warn',
29
+ '@atlaskit/design-system/no-html-select': '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::81564fd37c062c0be3a14ca6ea1e4271>>
3
+ * @codegen <<SignedSource::88336f6c2f8c5d33f84730619006b49e>>
4
4
  * @codegenCommand yarn workspace @atlaskit/eslint-plugin-design-system codegen
5
5
  */
6
6
 
@@ -21,6 +21,8 @@ export default {
21
21
  '@atlaskit/design-system/no-html-button': 'warn',
22
22
  '@atlaskit/design-system/no-html-checkbox': 'warn',
23
23
  '@atlaskit/design-system/no-html-image': 'warn',
24
+ '@atlaskit/design-system/no-html-range': 'warn',
25
+ '@atlaskit/design-system/no-html-select': 'warn',
24
26
  '@atlaskit/design-system/no-invalid-css-map': ['error', {
25
27
  allowedFunctionCalls: [['@atlaskit/tokens', 'token']]
26
28
  }],
@@ -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::175936d329524b99169a5dc943011231>>
3
+ * @codegen <<SignedSource::829b781e15e90c3a142273e2b153459f>>
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-button': 'warn',
21
21
  '@atlaskit/design-system/no-html-checkbox': 'warn',
22
22
  '@atlaskit/design-system/no-html-image': 'warn',
23
+ '@atlaskit/design-system/no-html-range': 'warn',
24
+ '@atlaskit/design-system/no-html-select': '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::3cefc1b277e5c633caf1fd4491d60d94>>
3
+ * @codegen <<SignedSource::60d053061448c69290fba282ee307366>>
4
4
  * @codegenCommand yarn workspace @atlaskit/eslint-plugin-design-system codegen
5
5
  */
6
6
  import consistentCssPropUsage from './consistent-css-prop-usage';
@@ -24,6 +24,8 @@ import noHtmlAnchor from './no-html-anchor';
24
24
  import noHtmlButton from './no-html-button';
25
25
  import noHtmlCheckbox from './no-html-checkbox';
26
26
  import noHtmlImage from './no-html-image';
27
+ import noHtmlRange from './no-html-range';
28
+ import noHtmlSelect from './no-html-select';
27
29
  import noInvalidCssMap from './no-invalid-css-map';
28
30
  import noKeyframesTaggedTemplateExpression from './no-keyframes-tagged-template-expression';
29
31
  import noLegacyIcons from './no-legacy-icons';
@@ -78,6 +80,8 @@ export var rules = {
78
80
  'no-html-button': noHtmlButton,
79
81
  'no-html-checkbox': noHtmlCheckbox,
80
82
  'no-html-image': noHtmlImage,
83
+ 'no-html-range': noHtmlRange,
84
+ 'no-html-select': noHtmlSelect,
81
85
  'no-invalid-css-map': noInvalidCssMap,
82
86
  'no-keyframes-tagged-template-expression': noKeyframesTaggedTemplateExpression,
83
87
  'no-legacy-icons': noLegacyIcons,
@@ -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
+ };