Skip to content

Commit d1ad543

Browse files
Mariela TihovaMariela Tihova
authored andcommitted
Adding new folder structure for HR Portal grid project
1 parent a001cbb commit d1ad543

255 files changed

Lines changed: 11893 additions & 0 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Editor configuration, see https://editorconfig.org
2+
root = true
3+
4+
[*]
5+
charset = utf-8
6+
indent_style = space
7+
indent_size = 2
8+
insert_final_newline = true
9+
trim_trailing_whitespace = true
10+
11+
[*.ts]
12+
quote_type = single
13+
14+
[*.md]
15+
max_line_length = off
16+
trim_trailing_whitespace = false
Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
{
2+
"root": true,
3+
"ignorePatterns": [
4+
"projects/**/*"
5+
],
6+
"overrides": [
7+
{
8+
"files": [
9+
"*.ts"
10+
],
11+
"parserOptions": {
12+
"project": [
13+
"tsconfig.json"
14+
],
15+
"createDefaultProgram": true
16+
},
17+
"extends": [
18+
"plugin:@angular-eslint/recommended",
19+
"plugin:@angular-eslint/template/process-inline-templates"
20+
],
21+
"rules": {
22+
"@angular-eslint/directive-selector": [
23+
"error",
24+
{
25+
"type": "attribute",
26+
"prefix": "app",
27+
"style": "camelCase"
28+
}
29+
],
30+
"@angular-eslint/component-selector": [
31+
"error",
32+
{
33+
"type": "element",
34+
"prefix": "app",
35+
"style": "kebab-case"
36+
}
37+
]
38+
}
39+
},
40+
{
41+
"files": [
42+
"*.html"
43+
],
44+
"extends": [
45+
"plugin:@angular-eslint/template/recommended"
46+
],
47+
"rules": {}
48+
}
49+
]
50+
}
Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
# See http://help.github.com/ignore-files/ for more about ignoring files.
2+
3+
# Compiled output
4+
/dist
5+
/tmp
6+
/out-tsc
7+
/bazel-out
8+
9+
# Node
10+
/node_modules
11+
npm-debug.log
12+
yarn-error.log
13+
14+
# IDEs and editors
15+
.idea/
16+
.project
17+
.classpath
18+
.c9/
19+
*.launch
20+
.settings/
21+
*.sublime-workspace
22+
23+
# Visual Studio Code
24+
.vscode/*
25+
!.vscode/settings.json
26+
!.vscode/tasks.json
27+
!.vscode/launch.json
28+
!.vscode/extensions.json
29+
.history/*
30+
31+
# Miscellaneous
32+
/.angular/cache
33+
.sass-cache/
34+
/connect.lock
35+
/coverage
36+
/libpeerconnection.log
37+
testem.log
38+
/typings
39+
40+
# System files
41+
.DS_Store
42+
Thumbs.db
43+
44+
# Visual Studio Code
45+
.vscode/
46+
47+
# GitHub
48+
.github/

projects/grids/hr-portal/README.md

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
# HR Portal
2+
3+
This project was generated with [Ignite UI CLI](https://github.com/IgniteUI/igniteui-cli) version 14.1.0.
4+
5+
## Development server
6+
7+
Run `ig start` to build the application, start a web server and open the application in the default browser. Then navigate to `http://localhost:4200/`. Default serving port can be configured in `ignite-ui-cli.json` via `defaultPort` property.
8+
9+
## Build
10+
11+
Run `ig build` to build the application into an output directory.
12+
13+
## Step by step mode
14+
15+
If you want to get a guided experience through the available options, you can initialize the step by step mode that will help you to create and setup your new application, as well as update project previously created with the Ignite UI CLI. To start the guide, simply run the `ig` command.
16+
17+
## List templates
18+
19+
The `ig list` lists all available templates. When you run the command within a project folder it will list all available templates, even if you have provided different ones.
20+
21+
## Adding components
22+
23+
Add a new component or template to the project passing component ID and choosing a name.
24+
25+
`ig add <component/template> <component_name>`
26+
27+
The ID matches either a component ("grid", "combo", etc) or a predefined template. Predefined templates can provide either multiple components or fulfilling a specific use case like "form-validation", "master-detail" and so on.
28+
29+
## Running unit tests
30+
31+
Run `ig test` to execute the unit tests via [Karma](https://karma-runner.github.io). Runs all `.spec.ts` files under `./src` folder.
32+
33+
## Running end-to-end tests
34+
35+
Run `ig test --e2e` to execute the end-to-end tests via a platform of your choice. To use this command, you need to first add a package that implements end-to-end testing capabilities.
36+
37+
## Help
38+
39+
`ig help` lists the available commands and provides a brief description of what they do.
40+
41+
### Further help
42+
43+
To get more help on the IgniteUI CLI go check out the [IgniteUI CLI Wiki](https://github.com/IgniteUI/igniteui-cli/wiki).
44+
45+
## Angular CLI compatibility
46+
You can run all of the supported Angular CLI commands. More details at [Angular CLI](https://github.com/angular/angular-cli).
Lines changed: 132 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,132 @@
1+
{
2+
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
3+
"version": 1,
4+
"newProjectRoot": "projects",
5+
"projects": {
6+
"hr-portal": {
7+
"projectType": "application",
8+
"schematics": {
9+
"@schematics/angular:component": {
10+
"style": "scss"
11+
}
12+
},
13+
"root": "",
14+
"sourceRoot": "src",
15+
"prefix": "app",
16+
"architect": {
17+
"build": {
18+
"builder": "@angular/build:application",
19+
"options": {
20+
"outputPath": "dist/hr-portal",
21+
"index": "src/index.html",
22+
"browser": "src/main.ts",
23+
"polyfills": ["zone.js"],
24+
"tsConfig": "tsconfig.app.json",
25+
"inlineStyleLanguage": "scss",
26+
"assets": [
27+
{
28+
"glob": "**/*",
29+
"input": "public",
30+
"output": "/"
31+
}
32+
],
33+
"styles": ["src/styles.scss"],
34+
"scripts": ["./node_modules/hammerjs/hammer.min.js"],
35+
"server": "src/main.server.ts",
36+
"prerender": true,
37+
"ssr": {
38+
"entry": "src/server.ts"
39+
},
40+
"stylePreprocessorOptions": {
41+
"includePaths": ["node_modules"]
42+
},
43+
"outputMode": "static"
44+
},
45+
"configurations": {
46+
"production": {
47+
"budgets": [
48+
{
49+
"type": "initial",
50+
"maximumWarning": "11MB",
51+
"maximumError": "12MB"
52+
},
53+
{
54+
"type": "anyComponentStyle",
55+
"maximumWarning": "14MB",
56+
"maximumError": "15MB"
57+
}
58+
],
59+
"outputHashing": "all"
60+
},
61+
"development": {
62+
"optimization": false,
63+
"extractLicenses": false,
64+
"sourceMap": true
65+
}
66+
},
67+
"defaultConfiguration": "production"
68+
},
69+
"serve": {
70+
"builder": "@angular/build:dev-server",
71+
"configurations": {
72+
"production": {
73+
"buildTarget": "hr-portal:build:production"
74+
},
75+
"development": {
76+
"buildTarget": "hr-portal:build:development"
77+
}
78+
},
79+
"defaultConfiguration": "development"
80+
},
81+
"extract-i18n": {
82+
"builder": "@angular/build:extract-i18n"
83+
},
84+
"test": {
85+
"builder": "@angular/build:karma",
86+
"options": {
87+
"polyfills": ["zone.js", "zone.js/testing"],
88+
"tsConfig": "tsconfig.spec.json",
89+
"inlineStyleLanguage": "scss",
90+
"assets": [
91+
{
92+
"glob": "**/*",
93+
"input": "public"
94+
}
95+
],
96+
"styles": ["src/styles.scss"],
97+
"scripts": ["./node_modules/hammerjs/hammer.min.js"],
98+
"stylePreprocessorOptions": {
99+
"includePaths": ["node_modules"]
100+
}
101+
}
102+
}
103+
}
104+
}
105+
},
106+
"schematics": {
107+
"@schematics/angular:component": {
108+
"type": "component"
109+
},
110+
"@schematics/angular:directive": {
111+
"type": "directive"
112+
},
113+
"@schematics/angular:service": {
114+
"type": "service"
115+
},
116+
"@schematics/angular:guard": {
117+
"typeSeparator": "."
118+
},
119+
"@schematics/angular:interceptor": {
120+
"typeSeparator": "."
121+
},
122+
"@schematics/angular:module": {
123+
"typeSeparator": "."
124+
},
125+
"@schematics/angular:pipe": {
126+
"typeSeparator": "."
127+
},
128+
"@schematics/angular:resolver": {
129+
"typeSeparator": "."
130+
}
131+
}
132+
}
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{
2+
"igPackageRegistry": "https://packages.infragistics.com/npm/js-licensed/",
3+
"customTemplates": [],
4+
"skipGit": false,
5+
"skipAnalytic": false,
6+
"version": "14.1.0",
7+
"project": {
8+
"defaultPort": 4200,
9+
"framework": "angular",
10+
"projectType": "igx-ts",
11+
"projectTemplate": "empty",
12+
"theme": "Default",
13+
"themePath": "node_modules/igniteui-angular/styles/igniteui-angular.css",
14+
"isBundle": false,
15+
"bundleFilePath": "",
16+
"igniteuiSource": "",
17+
"components": [],
18+
"sourceFiles": [],
19+
"isShowcase": false,
20+
"version": ""
21+
},
22+
"build": {},
23+
"packagesInstalled": true
24+
}

0 commit comments

Comments
 (0)