-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #517 from 3DStreet/combine-editor-into-core
Combine editor into core
- Loading branch information
Showing
231 changed files
with
94,614 additions
and
22,723 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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"presets": ["@babel/preset-env", ["@babel/preset-react", {"runtime": "automatic"}]] | ||
} |
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,12 @@ | ||
; http://editorconfig.org | ||
|
||
root = true | ||
|
||
[*] | ||
indent_style = space | ||
indent_size = 2 | ||
end_of_line = lf | ||
charset = utf-8 | ||
trim_trailing_whitespace = true | ||
insert_final_newline = true | ||
|
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,2 @@ | ||
src/editor/lib/TransformControls.js | ||
src/lib/ |
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,48 @@ | ||
{ | ||
"extends": ["eslint:recommended", "plugin:react/recommended", "plugin:react/jsx-runtime", "plugin:react-hooks/recommended", "standard", "plugin:storybook/recommended"], | ||
"rules": { | ||
"dot-notation": "off", | ||
"indent": "off", | ||
"multiline-ternary": "off", | ||
"no-console": "off", | ||
"no-lone-blocks": "off", | ||
"no-mixed-spaces-and-tabs": "off", | ||
"no-tabs": "off", | ||
"no-useless-return": "off", | ||
"no-var": "off", | ||
"object-curly-newline": "off", | ||
"object-shorthand": "off", | ||
"prefer-const": "off", | ||
"quotes": "off", | ||
"react/jsx-indent-props": [2, 2], | ||
"react/prop-types": "off", | ||
"semi": [2, "always"], | ||
"space-before-function-paren": "off" | ||
}, | ||
"env": { | ||
"browser": true, | ||
"es2021": true, | ||
"node": true | ||
}, | ||
"globals": { | ||
"AFRAME": true, | ||
"STREET": true, | ||
"THREE": true | ||
}, | ||
"parser": "@babel/eslint-parser", | ||
"parserOptions": { | ||
"ecmaFeatures": { | ||
"jsx": true | ||
}, | ||
"ecmaVersion": "latest", | ||
"sourceType": "module" | ||
}, | ||
"plugins": [ | ||
"react" | ||
], | ||
"settings": { | ||
"react": { | ||
"version": "detect" | ||
} | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
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,39 @@ | ||
name: Test Cases | ||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
branches: | ||
- main | ||
permissions: | ||
contents: read | ||
jobs: | ||
test: | ||
name: Test Cases | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
node-version: ['22.x'] | ||
steps: | ||
- name: Checkout Repo | ||
uses: actions/checkout@v3 | ||
|
||
- name: Use Node.js ${{ matrix['node-version'] }} | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: ${{ matrix['node-version'] }} | ||
cache: 'npm' | ||
cache-dependency-path: 'package-lock.json' | ||
|
||
- name: Install dependencies | ||
run: npm install | ||
|
||
- name: Check Lint | ||
run: npm run lint | ||
|
||
- name: Check Build | ||
run: npm run dist | ||
|
||
- name: Tests | ||
run: npm run test |
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,4 +1,14 @@ | ||
.DS_Store | ||
node_modules | ||
coverage | ||
.nyc_output | ||
.nyc_output | ||
.cache | ||
gh-pages/ | ||
npm-debug.log* | ||
build/ | ||
*.sw[pomn] | ||
# That's /src/lib/aframe-loader-3dtiles-component.min.js | ||
dist/48406973e3ad4d65cbdd.js* | ||
dist/aframe-mapbox-component.min.js | ||
dist/notyf.min.css | ||
dist/viewer-styles.css |
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 @@ | ||
#!/usr/bin/env sh | ||
. "$(dirname -- "$0")/_/husky.sh" | ||
|
||
./node_modules/.bin/lint-staged |
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 +1,2 @@ | ||
** | ||
src/editor/lib/TransformControls.js | ||
src/lib/ |
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,5 @@ | ||
{ | ||
"printWidth": 80, | ||
"singleQuote": true, | ||
"trailingComma": "none" | ||
} |
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,74 @@ | ||
/** @type { import('@storybook/react-webpack5').StorybookConfig } */ | ||
const config = { | ||
stories: ['../src/**/*.mdx', '../src/**/*.stories.@(js|jsx|mjs|ts|tsx)'], | ||
addons: [ | ||
'@storybook/addon-links', | ||
'@storybook/addon-essentials', | ||
'@storybook/addon-onboarding', | ||
'@storybook/addon-interactions', | ||
'@storybook/addon-styling-webpack', | ||
{ | ||
name: '@storybook/addon-styling-webpack', | ||
options: { | ||
rules: [ | ||
{ | ||
test: /\.css$/, | ||
sideEffects: true, | ||
use: [ | ||
require.resolve('style-loader'), | ||
{ | ||
loader: require.resolve('css-loader'), | ||
options: { | ||
// Want to add more CSS Modules options? Read more here: https://github.com/webpack-contrib/css-loader#modules | ||
modules: { | ||
auto: true | ||
} | ||
} | ||
} | ||
] | ||
}, | ||
{ | ||
test: /\.s[ac]ss$/, | ||
sideEffects: true, | ||
use: [ | ||
require.resolve('style-loader'), | ||
{ | ||
loader: require.resolve('css-loader'), | ||
options: { | ||
// Want to add more CSS Modules options? Read more here: https://github.com/webpack-contrib/css-loader#modules | ||
modules: { | ||
auto: true | ||
}, | ||
importLoaders: 2 | ||
} | ||
}, | ||
require.resolve('resolve-url-loader'), | ||
{ | ||
loader: require.resolve('sass-loader'), | ||
options: { | ||
// Want to add more Sass options? Read more here: https://webpack.js.org/loaders/sass-loader/#options | ||
implementation: require.resolve('sass'), | ||
sourceMap: true, | ||
sassOptions: {} | ||
} | ||
} | ||
] | ||
} | ||
] | ||
} | ||
} | ||
], | ||
framework: { | ||
name: '@storybook/react-webpack5', | ||
options: { | ||
builder: { | ||
useSWC: true | ||
} | ||
} | ||
}, | ||
docs: { | ||
autodocs: 'tag' | ||
} | ||
}; | ||
|
||
export default config; |
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,16 @@ | ||
import '../src/editor/style/index.scss'; | ||
/** @type { import('@storybook/react').Preview } */ | ||
|
||
const preview = { | ||
parameters: { | ||
actions: { argTypesRegex: '^on[A-Z].*' }, | ||
controls: { | ||
matchers: { | ||
color: /(background|color)$/i, | ||
date: /Date$/i | ||
} | ||
} | ||
} | ||
}; | ||
|
||
export default preview; |
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
FIREBASE_API_KEY = | ||
FIREBASE_AUTH_DOMAIN = | ||
FIREBASE_PROJECT_ID = | ||
FIREBASE_STORAGE_BUCKET = | ||
FIREBASE_MESSAGING_SENDER_ID = | ||
FIREBASE_APP_ID = | ||
FIREBASE_MEASUREMENT_ID = |
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,2 @@ | ||
.env.development | ||
.env.production |
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,9 @@ | ||
For development you'll need a file `.env.development` in this directory. | ||
|
||
For production deployment you'll need a file `.env.production` in this directory. | ||
|
||
These files should NOT be committed to the repo and will be git ignored. | ||
|
||
You have 2 options to generate these files: | ||
* use .env.template to create your own .env.development and .env.production with GCP / Firebase keys generated on your own | ||
* or copy these .env files from GCP Secrets for the appropriate project / environment |
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.