Skip to content

Commit 21538b2

Browse files
committed
add intial angular wrapper
0 parents  commit 21538b2

Some content is hidden

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

51 files changed

+23766
-0
lines changed

.editorconfig

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Editor configuration, see http://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+
[*.md]
12+
max_line_length = off
13+
trim_trailing_whitespace = false

.gitignore

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
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+
8+
# dependencies
9+
/node_modules
10+
11+
# IDEs and editors
12+
/.idea
13+
.project
14+
.classpath
15+
.c9/
16+
*.launch
17+
.settings/
18+
*.sublime-workspace
19+
20+
# IDE - VSCode
21+
.vscode/*
22+
!.vscode/settings.json
23+
!.vscode/tasks.json
24+
!.vscode/launch.json
25+
!.vscode/extensions.json
26+
27+
# misc
28+
/.sass-cache
29+
/connect.lock
30+
/coverage
31+
/libpeerconnection.log
32+
npm-debug.log
33+
yarn-error.log
34+
testem.log
35+
/typings
36+
37+
# System Files
38+
.DS_Store
39+
Thumbs.db

.prettierignore

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Add files here to ignore them from prettier formatting
2+
3+
/dist
4+
/coverage

.prettierrc

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"singleQuote": true
3+
}

.storybook/addons.js

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
import '@storybook/addon-knobs/register';

.storybook/tsconfig.json

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"extends": "../tsconfig.base.json",
3+
"exclude": ["../**/*.spec.ts"],
4+
"include": ["../**/*"]
5+
}

.storybook/webpack.config.js

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
// Export a function. Accept the base config as the only param.
2+
module.exports = async ({ config, mode }) => {
3+
// `mode` has a value of 'DEVELOPMENT' or 'PRODUCTION'
4+
// You can change the configuration based on that.
5+
// 'PRODUCTION' is used when building the static version of storybook.
6+
7+
// Make whatever fine-grained changes you need
8+
9+
// Return the altered config
10+
return config;
11+
};

README.md

+98
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,98 @@
1+
# Gridjs-workspace
2+
3+
This project was generated using [Nx](https://nx.dev).
4+
5+
<p align="center"><img src="https://raw.githubusercontent.com/nrwl/nx/master/images/nx-logo.png" width="450"></p>
6+
7+
🔎 **Nx is a set of Extensible Dev Tools for Monorepos.**
8+
9+
## Quick Start & Documentation
10+
11+
[Nx Documentation](https://nx.dev/angular)
12+
13+
[10-minute video showing all Nx features](https://nx.dev/angular/getting-started/what-is-nx)
14+
15+
[Interactive Tutorial](https://nx.dev/angular/tutorial/01-create-application)
16+
17+
## Adding capabilities to your workspace
18+
19+
Nx supports many plugins which add capabilities for developing different types of applications and different tools.
20+
21+
These capabilities include generating applications, libraries, etc as well as the devtools to test, and build projects as well.
22+
23+
Below are our core plugins:
24+
25+
- [Angular](https://angular.io)
26+
- `ng add @nrwl/angular`
27+
- [React](https://reactjs.org)
28+
- `ng add @nrwl/react`
29+
- Web (no framework frontends)
30+
- `ng add @nrwl/web`
31+
- [Nest](https://nestjs.com)
32+
- `ng add @nrwl/nest`
33+
- [Express](https://expressjs.com)
34+
- `ng add @nrwl/express`
35+
- [Node](https://nodejs.org)
36+
- `ng add @nrwl/node`
37+
38+
There are also many [community plugins](https://nx.dev/nx-community) you could add.
39+
40+
## Generate an application
41+
42+
Run `ng g @nrwl/angular:app my-app` to generate an application.
43+
44+
> You can use any of the plugins above to generate applications as well.
45+
46+
When using Nx, you can create multiple applications and libraries in the same workspace.
47+
48+
## Generate a library
49+
50+
Run `ng g @nrwl/angular:lib my-lib` to generate a library.
51+
52+
> You can also use any of the plugins above to generate libraries as well.
53+
54+
Libraries are sharable across libraries and applications. They can be imported from `@gridjs/mylib`.
55+
56+
## Development server
57+
58+
Run `ng serve my-app` for a dev server. Navigate to <http://localhost:4200/>. The app will automatically reload if you change any of the source files.
59+
60+
## Code scaffolding
61+
62+
Run `ng g component my-component --project=my-app` to generate a new component.
63+
64+
## Build
65+
66+
Run `ng build my-app` to build the project. The build artifacts will be stored in the `dist/` directory. Use the `--prod` flag for a production build.
67+
68+
## Running unit tests
69+
70+
Run `ng test my-app` to execute the unit tests via [Jest](https://jestjs.io).
71+
72+
Run `nx affected:test` to execute the unit tests affected by a change.
73+
74+
## Running end-to-end tests
75+
76+
Run `ng e2e my-app` to execute the end-to-end tests via [Cypress](https://www.cypress.io).
77+
78+
Run `nx affected:e2e` to execute the end-to-end tests affected by a change.
79+
80+
## Understand your workspace
81+
82+
Run `nx dep-graph` to see a diagram of the dependencies of your projects.
83+
84+
## Further help
85+
86+
Visit the [Nx Documentation](https://nx.dev/angular) to learn more.
87+
88+
## ☁ Nx Cloud
89+
90+
### Computation Memoization in the Cloud
91+
92+
<p align="center"><img src="https://raw.githubusercontent.com/nrwl/nx/master/images/nx-cloud-card.png"></p>
93+
94+
Nx Cloud pairs with Nx in order to enable you to build and test code more rapidly, by up to 10 times. Even teams that are new to Nx can connect to Nx Cloud and start saving time instantly.
95+
96+
Teams using Nx gain the advantage of building full-stack applications with their preferred framework alongside Nx’s advanced code generation and project dependency graph, plus a unified experience for both frontend and backend developers.
97+
98+
Visit [Nx Cloud](https://nx.app/) to learn more.

angular.json

+127
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,127 @@
1+
{
2+
"version": 1,
3+
"projects": {
4+
"gridjs-angular": {
5+
"projectType": "library",
6+
"root": "libs/gridjs-angular",
7+
"sourceRoot": "libs/gridjs-angular/src",
8+
"prefix": "gridjs",
9+
"architect": {
10+
"build": {
11+
"builder": "@nrwl/angular:package",
12+
"options": {
13+
"tsConfig": "libs/gridjs-angular/tsconfig.lib.json",
14+
"project": "libs/gridjs-angular/ng-package.json"
15+
},
16+
"configurations": {
17+
"production": {
18+
"tsConfig": "libs/gridjs-angular/tsconfig.lib.prod.json"
19+
}
20+
}
21+
},
22+
"lint": {
23+
"builder": "@angular-devkit/build-angular:tslint",
24+
"options": {
25+
"tsConfig": [
26+
"libs/gridjs-angular/tsconfig.lib.json",
27+
"libs/gridjs-angular/tsconfig.spec.json"
28+
],
29+
"exclude": [
30+
"**/node_modules/**",
31+
"!libs/gridjs-angular/**/*"
32+
]
33+
}
34+
},
35+
"test": {
36+
"builder": "@nrwl/jest:jest",
37+
"options": {
38+
"jestConfig": "libs/gridjs-angular/jest.config.js",
39+
"tsConfig": "libs/gridjs-angular/tsconfig.spec.json",
40+
"passWithNoTests": true,
41+
"setupFile": "libs/gridjs-angular/src/test-setup.ts"
42+
}
43+
},
44+
"storybook": {
45+
"builder": "@nrwl/storybook:storybook",
46+
"options": {
47+
"uiFramework": "@storybook/angular",
48+
"port": 4400,
49+
"config": {
50+
"configFolder": "libs/gridjs-angular/.storybook"
51+
}
52+
},
53+
"configurations": {
54+
"ci": {
55+
"quiet": true
56+
}
57+
}
58+
},
59+
"build-storybook": {
60+
"builder": "@nrwl/storybook:build",
61+
"options": {
62+
"uiFramework": "@storybook/angular",
63+
"outputPath": "dist/storybook/gridjs-angular",
64+
"config": {
65+
"configFolder": "libs/gridjs-angular/.storybook"
66+
}
67+
},
68+
"configurations": {
69+
"ci": {
70+
"quiet": true
71+
}
72+
}
73+
}
74+
},
75+
"schematics": {
76+
"@nrwl/angular:component": {
77+
"style": "scss"
78+
}
79+
}
80+
},
81+
"gridjs-angular-e2e": {
82+
"root": "apps/gridjs-angular-e2e",
83+
"sourceRoot": "apps/gridjs-angular-e2e/src",
84+
"projectType": "application",
85+
"architect": {
86+
"e2e": {
87+
"builder": "@nrwl/cypress:cypress",
88+
"options": {
89+
"cypressConfig": "apps/gridjs-angular-e2e/cypress.json",
90+
"tsConfig": "apps/gridjs-angular-e2e/tsconfig.e2e.json",
91+
"devServerTarget": "gridjs-angular:storybook"
92+
},
93+
"configurations": {
94+
"ci": {
95+
"devServerTarget": "gridjs-angular:storybook:ci"
96+
}
97+
}
98+
},
99+
"lint": {
100+
"builder": "@angular-devkit/build-angular:tslint",
101+
"options": {
102+
"tsConfig": [
103+
"apps/gridjs-angular-e2e/tsconfig.e2e.json"
104+
],
105+
"exclude": [
106+
"**/node_modules/**",
107+
"!apps/gridjs-angular-e2e/**/*"
108+
]
109+
}
110+
}
111+
}
112+
}
113+
},
114+
"cli": {
115+
"defaultCollection": "@nrwl/angular"
116+
},
117+
"schematics": {
118+
"@nrwl/angular:application": {
119+
"unitTestRunner": "jest",
120+
"e2eTestRunner": "cypress"
121+
},
122+
"@nrwl/angular:library": {
123+
"unitTestRunner": "jest"
124+
}
125+
},
126+
"defaultProject": "demo"
127+
}

apps/.gitkeep

Whitespace-only changes.

apps/gridjs-angular-e2e/cypress.json

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"fileServerFolder": ".",
3+
"fixturesFolder": "./src/fixtures",
4+
"integrationFolder": "./src/integration",
5+
"modifyObstructiveCode": false,
6+
"pluginsFile": "./src/plugins/index",
7+
"supportFile": "./src/support/index.ts",
8+
"video": true,
9+
"videosFolder": "../../dist/cypress/apps/gridjs-angular-e2e/videos",
10+
"screenshotsFolder": "../../dist/cypress/apps/gridjs-angular-e2e/screenshots",
11+
"chromeWebSecurity": false,
12+
"baseUrl": "http://localhost:4400"
13+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"name": "Using fixtures to represent data",
3+
"email": "[email protected]"
4+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
describe('gridjs-angular', () => {
2+
beforeEach(() => cy.visit('/iframe.html?id=gridjsangularcomponent--primary&knob-gridConfig'));
3+
4+
it('should render the component', () => {
5+
cy.get('gridjs-gridjs-angular').should('exist');
6+
});
7+
});
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
// ***********************************************************
2+
// This example plugins/index.js can be used to load plugins
3+
//
4+
// You can change the location of this file or turn off loading
5+
// the plugins file with the 'pluginsFile' configuration option.
6+
//
7+
// You can read more here:
8+
// https://on.cypress.io/plugins-guide
9+
// ***********************************************************
10+
11+
// This function is called when a project is opened or re-opened (e.g. due to
12+
// the project's config changing)
13+
14+
const { preprocessTypescript } = require('@nrwl/cypress/plugins/preprocessor');
15+
16+
module.exports = (on, config) => {
17+
// `on` is used to hook into various events Cypress emits
18+
// `config` is the resolved Cypress config
19+
20+
// Preprocess Typescript file using Nx helper
21+
on('file:preprocessor', preprocessTypescript(config));
22+
};
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
// ***********************************************
2+
// This example commands.js shows you how to
3+
// create various custom commands and overwrite
4+
// existing commands.
5+
//
6+
// For more comprehensive examples of custom
7+
// commands please read more here:
8+
// https://on.cypress.io/custom-commands
9+
// ***********************************************
10+
// eslint-disable-next-line @typescript-eslint/no-namespace
11+
declare namespace Cypress {
12+
interface Chainable<Subject> {
13+
login(email: string, password: string): void;
14+
}
15+
}
16+
//
17+
// -- This is a parent command --
18+
Cypress.Commands.add('login', (email, password) => {
19+
console.log('Custom command example: Login', email, password);
20+
});
21+
//
22+
// -- This is a child command --
23+
// Cypress.Commands.add("drag", { prevSubject: 'element'}, (subject, options) => { ... })
24+
//
25+
//
26+
// -- This is a dual command --
27+
// Cypress.Commands.add("dismiss", { prevSubject: 'optional'}, (subject, options) => { ... })
28+
//
29+
//
30+
// -- This will overwrite an existing command --
31+
// Cypress.Commands.overwrite("visit", (originalFn, url, options) => { ... })

0 commit comments

Comments
 (0)