Skip to content

Ttonev/hr portal latest #6

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

Merged
merged 21 commits into from
Apr 25, 2025
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
5a93ffd
hr-portal initial version
tishko0 Apr 8, 2025
aa46dbb
hr portal react
tishko0 Apr 10, 2025
65e49a1
removed unnecessary wrapping
tishko0 Apr 10, 2025
d1e7cae
resolved comments
tishko0 Apr 22, 2025
e61cb88
Merge branch 'skrastev/sales-tabs' of https://github.com/IgniteUI/gri…
mddragnev Apr 22, 2025
e7da3e8
Updated vite to include project assets and updated images to resolve …
tishko0 Apr 23, 2025
9a2f64d
Merge branch 'ttonev/hr-portal' of https://github.com/IgniteUI/grid-d…
tishko0 Apr 23, 2025
2358bd1
Merge branch 'ttonev/hr-portal-latest' of https://github.com/IgniteUI…
tishko0 Apr 23, 2025
2a5b53c
cleaning up
tishko0 Apr 23, 2025
0ac6f75
Merge remote-tracking branch 'origin' into ttonev/hr-portal-latest
tishko0 Apr 23, 2025
a57edec
updated app to run locally and with plugin
tishko0 Apr 24, 2025
8fcf092
Merge remote-tracking branch 'origin' into ttonev/hr-portal-latest
tishko0 Apr 24, 2025
16eed0d
Merge branch 'vnext' into ttonev/hr-portal-latest
dkamburov Apr 24, 2025
7c461fa
resolved comments
tishko0 Apr 24, 2025
59269eb
Merge branch 'ttonev/hr-portal-latest' of https://github.com/IgniteUI…
tishko0 Apr 24, 2025
75b65e4
added interface for data type and simplified date template
tishko0 Apr 25, 2025
1474af9
Merge remote-tracking branch 'origin' into ttonev/hr-portal-latest
tishko0 Apr 25, 2025
f42c800
removed padding
tishko0 Apr 25, 2025
67c3408
Merge branch 'vnext' into ttonev/hr-portal-latest
tishko0 Apr 25, 2025
e21656c
updated classes and reordered data
tishko0 Apr 25, 2025
8a7ef32
Merge branch 'ttonev/hr-portal-latest' of https://github.com/IgniteUI…
tishko0 Apr 25, 2025
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
16 changes: 16 additions & 0 deletions projects/hr-portal/.editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Editor configuration, see https://editorconfig.org
root = true

[*]
charset = utf-8
indent_style = space
indent_size = 2
insert_final_newline = true
trim_trailing_whitespace = true

[*.ts]
quote_type = single

[*.md]
max_line_length = off
trim_trailing_whitespace = false
26 changes: 26 additions & 0 deletions projects/hr-portal/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/.pnp
.pnp.js

# testing
/coverage

# production
/dist
tsconfig.tsbuildinfo

# misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local

npm-debug.log*
yarn-debug.log*
yarn-error.log*

.vs
27 changes: 27 additions & 0 deletions projects/hr-portal/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# HR Portal app

## Development server

Run `npm start` to build the application, start a web server and open the application in the default browser. The application will open in `http://localhost:3003/` by default.

## Build

Run `npm run build` to build the application into an output directory.

## Running unit tests

Run `npm test` to execute the unit tests via [Vitest](https://vitest.dev/). Runs all `.test.tsx` files under `./src` folder.

## Running code style checks

Run `npm run lint` to execute the code styling rules for the project.

## Licensing

See the [License FAQ and Installation documentation](https://www.infragistics.com/products/ignite-ui-react/react/components/general-licensing) for information on how to upgrade to the full licensed package, if the project is using a Trial version of Ignite UI for React, and how to setup your environment and CI to use our licensed npm feed.

Alternatively run `npm run infragistics-login` for a guided login to our licensed feed.

## Additional resources

- [Ignite UI for React](https://www.infragistics.com/products/ignite-ui-react) - to learn more about the product or to dive into component specifics and showcases.
48 changes: 48 additions & 0 deletions projects/hr-portal/eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
import js from '@eslint/js';
import typescriptParser from '@typescript-eslint/parser';
import reactRefresh from 'eslint-plugin-react-refresh';
import { FlatCompat } from "@eslint/eslintrc";

const compat = new FlatCompat({
recommendedConfig: js.configs.recommended
});

export default [
...compat.extends('eslint:recommended', 'plugin:@typescript-eslint/recommended', 'plugin:react-hooks/recommended'),
{
files: ['**/*.ts', '**/*.tsx'],
languageOptions: {
globals: {
browser: true,
es2020: true,
},
parser: typescriptParser,
parserOptions: {
ecmaVersion: 'latest',
sourceType: 'module',
},
},
plugins: {
reactRefresh
},
rules: {
'@typescript-eslint/no-unused-vars': [
'error',
{
args: 'all',
argsIgnorePattern: '^_',
caughtErrors: 'all',
caughtErrorsIgnorePattern: '^_',
destructuredArrayIgnorePattern: '^(_|set)',
varsIgnorePattern: '^_',
ignoreRestSiblings: true,
},
],
'reactRefresh/only-export-components': ['warn', { allowConstantExport: true }],
'@typescript-eslint/no-explicit-any': 'off',
},
},
{
ignores: ['dist']
}
];
18 changes: 18 additions & 0 deletions projects/hr-portal/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>HR Portal</title>
<link href='https://fonts.googleapis.com/icon?family=Material+Icons' rel='stylesheet'>S
<link rel='stylesheet' href='./node_modules/igniteui-webcomponents/themes/light/fluent.css'>
<link rel='stylesheet' href='./node_modules/igniteui-react-grids/grids/themes/light/fluent.css'>
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700&display=swap" rel="stylesheet">
<link rel="shortcut icon" href="/favicon.ico" />
<link rel="stylesheet" href="./styles.scss">
</head>
<body class="ig-scrollbar ig-typography">
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
</body>
<script type="module" src="/src/main.tsx"></script>
</html>
Loading