-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: extrude paths into to 3D profiles (#83)
* feat: render path as a 3D profile * feat: add solid fill * refactor: add data prop support to Profile layer * fix: moved moved path geometry calculation to updateState method * docs: added Layers stories folder * refactor: apply prettier conditions
- Loading branch information
Showing
33 changed files
with
1,035 additions
and
654 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,3 +5,4 @@ Dockerfile | |
README.md | ||
dist | ||
storybook-static | ||
package-lock.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,48 +1,48 @@ | ||
{ | ||
"env": { | ||
"browser": true, | ||
"es6": true | ||
}, | ||
"extends": [ | ||
"plugin:react/recommended", | ||
"eslint:recommended", | ||
"plugin:prettier/recommended" | ||
], | ||
"overrides": [ | ||
{ | ||
"files": ["*.ts", "*.tsx"], | ||
"plugins": ["@typescript-eslint"], | ||
"extends": [ | ||
"env": { | ||
"browser": true, | ||
"es6": true | ||
}, | ||
"extends": [ | ||
"plugin:react/recommended", | ||
"plugin:@typescript-eslint/recommended", | ||
"eslint:recommended", | ||
"plugin:prettier/recommended" | ||
] | ||
}, | ||
{ | ||
"files": ["*.stories.tsx"], | ||
"rules": { | ||
"import/no-extraneous-dependencies": "off" | ||
} | ||
], | ||
"overrides": [ | ||
{ | ||
"files": ["*.ts", "*.tsx"], | ||
"plugins": ["@typescript-eslint"], | ||
"extends": [ | ||
"plugin:react/recommended", | ||
"plugin:@typescript-eslint/recommended", | ||
"plugin:prettier/recommended" | ||
] | ||
}, | ||
{ | ||
"files": ["*.stories.tsx"], | ||
"rules": { | ||
"import/no-extraneous-dependencies": "off" | ||
} | ||
}, | ||
{ | ||
"files": ["*.yml"], | ||
"parser": "yaml-eslint-parser", | ||
"plugins": ["eslint-plugin-yml"], | ||
"extends": ["plugin:yml/prettier"] | ||
} | ||
], | ||
"globals": { | ||
"Atomics": "readonly", | ||
"SharedArrayBuffer": "readonly" | ||
}, | ||
{ | ||
"files": ["*.yml"], | ||
"parser": "yaml-eslint-parser", | ||
"plugins": ["eslint-plugin-yml"], | ||
"extends": ["plugin:yml/standard"] | ||
} | ||
], | ||
"globals": { | ||
"Atomics": "readonly", | ||
"SharedArrayBuffer": "readonly" | ||
}, | ||
"parser": "@typescript-eslint/parser", | ||
"parserOptions": { | ||
"ecmaFeatures": { | ||
"jsx": true | ||
"parser": "@typescript-eslint/parser", | ||
"parserOptions": { | ||
"ecmaFeatures": { | ||
"jsx": true | ||
}, | ||
"ecmaVersion": 14, | ||
"sourceType": "module" | ||
}, | ||
"ecmaVersion": 14, | ||
"sourceType": "module" | ||
}, | ||
"plugins": ["react", "@typescript-eslint"], | ||
"rules": {} | ||
"plugins": ["react", "@typescript-eslint"], | ||
"rules": {} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"tabWidth": 4, | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,22 @@ | ||
version: "3" | ||
services: | ||
storybook: | ||
image: velo.gl | ||
build: . | ||
volumes: | ||
- ".:/app:rw" | ||
ports: | ||
- "6006:6006" | ||
healthcheck: | ||
test: curl --fail http://localhost:6006/ | ||
test-storybook: | ||
image: velo.gl | ||
volumes: | ||
- /app/node_modules | ||
- ".:/app:ro" | ||
depends_on: | ||
storybook: | ||
condition: service_healthy | ||
command: > | ||
sh -c "npm ci && npx playwright install-deps | ||
&& npm run test:storybook -- --url http://storybook:6006/" | ||
storybook: | ||
image: velo.gl | ||
build: . | ||
volumes: | ||
- ".:/app:rw" | ||
ports: | ||
- "6006:6006" | ||
healthcheck: | ||
test: curl --fail http://localhost:6006/ | ||
test-storybook: | ||
image: velo.gl | ||
volumes: | ||
- /app/node_modules | ||
- ".:/app:ro" | ||
depends_on: | ||
storybook: | ||
condition: service_healthy | ||
command: > | ||
sh -c "npm ci && npx playwright install-deps | ||
&& npm run test:storybook -- --url http://storybook:6006/" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
version: "3" | ||
services: | ||
storybook: | ||
image: velo.gl | ||
build: . | ||
volumes: | ||
- ".:/app:rw" | ||
storybook: | ||
image: velo.gl | ||
build: . | ||
volumes: | ||
- ".:/app:rw" |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.