Skip to content

Commit c19bc6c

Browse files
committed
Add components package
1 parent bfd4df0 commit c19bc6c

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+22269
-5627
lines changed

.gitignore

+3-2
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ node_modules
55
lib
66
dist
77
src-gen
8+
storybook-static
9+
eslint.xml
10+
stats.html
811

912
# misc
1013
.DS_Store
@@ -14,7 +17,5 @@ src-gen
1417
.env.production.local
1518

1619
npm-debug.log*
17-
yarn-debug.log*
18-
yarn-error.log*
1920

2021
tsconfig.*tsbuildinfo

.prettierrc.json

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{
2+
"$schema": "http://json.schemastore.org/prettierrc",
3+
"singleQuote": true,
4+
"jsxSingleQuote": true,
5+
"arrowParens": "avoid",
6+
"trailingComma": "none",
7+
"endOfLine": "lf",
8+
"printWidth": 140,
9+
"tabWidth": 2,
10+
"overrides": [
11+
{
12+
"files": ["*.spec.ts", "*.spec.tsx"],
13+
"options": {
14+
"printWidth": 180
15+
}
16+
},
17+
{
18+
"files": ["*.json", "*.yml"],
19+
"options": {
20+
"printWidth": 100
21+
}
22+
}
23+
]
24+
}

build/Jenkinsfile

+12-4
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,25 @@ pipeline {
1010
}
1111

1212
stages {
13-
stage('Icons') {
13+
stage('Build') {
1414
steps {
1515
script {
1616
catchError(buildResult: 'UNSTABLE', stageResult: 'UNSTABLE') {
1717
docker.build('node', '-f build/Dockerfile .').inside {
18-
sh 'npm install'
19-
sh 'npm run build'
18+
sh 'npm run ci'
2019
}
2120
}
2221
archiveArtifacts artifacts: '**/src-gen/**', allowEmptyArchive: true
23-
currentBuild.description = "<a href=${BUILD_URL}artifact/packages/icons/src-gen/ivy-icons.html>&raquo; Icons</a>"
22+
archiveArtifacts artifacts: '**/storybook-static/**', allowEmptyArchive: true
23+
currentBuild.description = "<a href=${BUILD_URL}artifact/packages/icons/src-gen/ivy-icons.html>&raquo; Icons</a><br>" +
24+
"<a href=${BUILD_URL}artifact/packages/components/storybook-static/index.html>&raquo; Components</a>"
25+
26+
withChecks('ESLint') {
27+
recordIssues enabledForFailure: true, publishAllIssues: true, aggregatingResults: true, tools: [esLint(pattern: 'packages/**/eslint.xml,integration/**/eslint.xml', skipSymbolicLinks: true)], qualityGates: [[threshold: 1, type: 'TOTAL', unstable: true]]
28+
}
29+
withChecks('Tests') {
30+
junit testDataPublishers: [[$class: 'StabilityTestDataPublisher']], testResults: 'packages/**/report.xml'
31+
}
2432
}
2533
}
2634
}

build/unpublish-npm.sh

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@
22

33
REGISTRY="https://npmjs-registry.ivyteam.ch/"
44

5-
npm unpublish "@axonivy/client-icons@${1}" --registry $REGISTRY
5+
npm unpublish "@axonivy/ui-icons@${1}" --registry $REGISTRY
6+
npm unpublish "@axonivy/ui-components@${1}" --registry $REGISTRY

client-components.code-workspace

+61
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
{
2+
"extensions": {
3+
"recommendations": ["esbenp.prettier-vscode", "dbaeumer.vscode-eslint", "zixuanchen.vitest-explorer", "ms-playwright.playwright"]
4+
},
5+
"folders": [
6+
{
7+
"name": "root",
8+
"path": "."
9+
},
10+
{
11+
"name": "package/components",
12+
"path": "./packages/components"
13+
},
14+
{
15+
"name": "package/icons",
16+
"path": "./packages/icons"
17+
},
18+
],
19+
"settings": {
20+
"task.autoDetect": "off",
21+
"typescript.tsdk": "node_modules/typescript/lib",
22+
"vitest.commandLine": "npm run test",
23+
"vitest.disabledWorkspaceFolders": ["root", "packages/icons"],
24+
"vitest.include": ["packages/components/src/**/*.test.{ts,tsx}"],
25+
"editor.formatOnSave": true,
26+
"editor.codeActionsOnSave": {
27+
"source.fixAll.eslint": "explicit"
28+
},
29+
"editor.insertSpaces": true,
30+
"eslint.validate": ["javascript", "typescript"],
31+
"search.exclude": {
32+
"**/node_modules": true,
33+
"**/lib": true
34+
},
35+
"[css]": {
36+
"editor.defaultFormatter": "esbenp.prettier-vscode"
37+
},
38+
"[javascript]": {
39+
"editor.defaultFormatter": "esbenp.prettier-vscode"
40+
},
41+
"[javascriptreact]": {
42+
"editor.defaultFormatter": "esbenp.prettier-vscode"
43+
},
44+
"[json]": {
45+
"editor.defaultFormatter": "esbenp.prettier-vscode"
46+
},
47+
"[markdown]": {
48+
"editor.defaultFormatter": "esbenp.prettier-vscode"
49+
},
50+
"[typescript]": {
51+
"editor.defaultFormatter": "esbenp.prettier-vscode"
52+
},
53+
"[typescriptreact]": {
54+
"editor.defaultFormatter": "esbenp.prettier-vscode"
55+
},
56+
"[yaml]": {
57+
"editor.defaultFormatter": "esbenp.prettier-vscode"
58+
},
59+
"testing.automaticallyOpenPeekView": "never"
60+
}
61+
}

config/base.eslintrc.json

+44
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
{
2+
"parser": "@typescript-eslint/parser",
3+
"parserOptions": {
4+
"sourceType": "module",
5+
"ecmaFeatures": {
6+
"jsx": true
7+
}
8+
},
9+
"plugins": ["@typescript-eslint", "import"],
10+
"extends": [
11+
"eslint:recommended",
12+
"plugin:@typescript-eslint/eslint-recommended",
13+
"plugin:@typescript-eslint/recommended",
14+
"plugin:import/errors",
15+
"plugin:import/warnings",
16+
"plugin:import/typescript",
17+
"plugin:react/recommended",
18+
"plugin:react/jsx-runtime",
19+
"plugin:react-hooks/recommended"
20+
],
21+
"settings": {
22+
"import/parsers": {
23+
"@typescript-eslint/parser": [".ts", ".tsx"]
24+
},
25+
"import/resolver": {
26+
"typescript": {}
27+
},
28+
"react": {
29+
"version": "detect"
30+
}
31+
},
32+
"env": {
33+
"browser": true,
34+
"es2022": true
35+
},
36+
"ignorePatterns": ["node_modules", "lib", "*.d.ts", ".eslintrc.*js"],
37+
"rules": {
38+
"@typescript-eslint/ban-types": "off",
39+
"@typescript-eslint/ban-ts-comment": "off",
40+
"@typescript-eslint/consistent-type-imports": "error",
41+
"@typescript-eslint/no-namespace": "off",
42+
"react/display-name": "off"
43+
}
44+
}

config/tsconfig.base.json

+5-4
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,13 @@
1717
"forceConsistentCasingInFileNames": true,
1818
"noFallthroughCasesInSwitch": true,
1919
"module": "ESNext",
20-
"moduleResolution": "node",
20+
"moduleResolution": "Bundler",
2121
"allowSyntheticDefaultImports": true,
2222
"isolatedModules": true,
2323
"esModuleInterop": true,
24-
"target": "ESNext",
25-
"lib": ["DOM", "DOM.Iterable", "ESNext"],
26-
"sourceMap": true
24+
"target": "ES2022",
25+
"lib": ["DOM", "DOM.Iterable", "ES2022"],
26+
"sourceMap": true,
27+
"verbatimModuleSyntax": true
2728
}
2829
}

0 commit comments

Comments
 (0)