-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge dev into master, Release 1.1 (#305)
* Feature/1912 - Implement heat transport (#275) * Feature/1912 - Implement heat transport * Feature/1944 - Add improvements to frontend (#289) * Convert data to daily data, right after selecting sensor * Use same x-axis for both result charts * Implement second time-slider * Add csv export * Update react-scripts to 3.0.0 * Feature/1946 - Add points to results charts (#290) * Add min, max and turning-points * Fix saving meta data * Support/1935 bump packages (#292) * Feature/1946 - Add points to results charts * Add min, max and turning-points * Fix saving meta data * Feature/1912 - Implement heat transport frontend * Implement t19 * Suppress tslint errors for now (WIP) * Feature/1912 - Implement heat transport frontend * Implement instance creation for t19 * Update react-scripts to 3.4.3, typescript to 3.9.7 * Fix/Omit all warnings generated starting the app Co-authored-by: Robert Schlick <[email protected]> * Support/1935 bump packages (#293) * Feature/1946 - Add points to results charts * Add min, max and turning-points * Fix saving meta data * Feature/1912 - Implement heat transport frontend * Implement t19 * Suppress tslint errors for now (WIP) * Feature/1912 - Implement heat transport frontend * Implement instance creation for t19 * Update react-scripts to 3.4.3, typescript to 3.9.7 * Fix/Omit all warnings generated starting the app * Fix preflight-warning Co-authored-by: Robert Schlick <[email protected]> * Support/1935 bump packages (#294) * Feature/1946 - Add points to results charts * Add min, max and turning-points * Fix saving meta data * Feature/1912 - Implement heat transport frontend * Implement t19 * Suppress tslint errors for now (WIP) * Feature/1912 - Implement heat transport frontend * Implement instance creation for t19 * Update react-scripts to 3.4.3, typescript to 3.9.7 * Fix/Omit all warnings generated starting the app * Fix preflight-warning * Fix preflight-warning * Upgrade to node 12 Co-authored-by: Robert Schlick <[email protected]> * Refactoring router T10 (#295) * Support/1949 upgrade semantic ui (#296) * Update Semantic-Ui-React and other packages/types * Fix version of json-ref-parser * Upgrade papaparse to v5.3 and adapt type-handling * Support/1950 upgrade T02 to functional component (#297) * Upgrade T02 to functional component * Feature/1912 implement heat transport frontend (#298) * Feature/1946 - Add points to results charts * Add min, max and turning-points * Fix saving meta data * Feature/1912 - Implement heat transport frontend * Implement t19 * Suppress tslint errors for now (WIP) * Feature/1912 - Implement heat transport frontend * Implement instance creation for t19 * Feature/1912 - Implement heat transport frontend * Move heat transport to new tool * Feature/1912 - Implement heat transport frontend * Finish implementation of new tool Co-authored-by: Ralf Junghanns <[email protected]> * Fix imports * Fix import bug * Fix bug loading RTM-instances This fix changes request that only own RTM-Projects will be fetched. * Support/1951 improvements kwb heattransport frontend (#299) * Improvements Frontend Heat Transport * Save-input-data works more smoothly * no reloading of the whole component * Support/1951 improvements kwb heattransport frontend (#300) * Improvements Frontend Heat Transport * Save-input-data works more smoothly * no reloading of the whole component * Eslint fixes only * Remove TimeSlider For changing the period of time, RTM can be used ATM * T10: Autoselect first sensor parameter (#301) * Update datepicker-component (#302) * Fix various bug reported in T19 (#303) Reported in #1961 * Update README.md (#304) Co-authored-by: Robert <[email protected]>
- Loading branch information
Showing
271 changed files
with
9,613 additions
and
29,547 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 |
---|---|---|
@@ -1,2 +1 @@ | ||
REACT_APP_API_URL=https://inowas.test | ||
NODE_PATH=src |
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 @@ | ||
build | ||
imports/ | ||
node_modules/ | ||
src/semantic |
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,45 @@ | ||
{ | ||
"env": { | ||
"browser": true, | ||
"commonjs": true, | ||
"node": true, | ||
"es6": true | ||
}, | ||
"extends": [ | ||
"eslint:recommended", | ||
"plugin:react/recommended", | ||
"plugin:react-hooks/recommended", | ||
"plugin:@typescript-eslint/recommended" | ||
], | ||
"plugins": [ | ||
"sort-imports-es6-autofix" | ||
], | ||
"parserOptions": { | ||
"ecmaVersion": 2018 | ||
}, | ||
"rules": { | ||
"quotes": [ | ||
"warn", | ||
"single", | ||
"avoid-escape" | ||
], | ||
"no-console": "off", | ||
"strict": [ | ||
"error", | ||
"global" | ||
], | ||
"array-callback-return": "warn", | ||
"curly": "warn", | ||
"@typescript-eslint/explicit-module-boundary-types": "off", | ||
"@typescript-eslint/no-explicit-any": "off", | ||
"no-prototype-builtins": "warn", | ||
"no-case-declarations": "warn", | ||
"no-mixed-operators": "warn", | ||
"sort-imports-es6-autofix/sort-imports-es6": "warn" | ||
}, | ||
"settings": { | ||
"react": { | ||
"version": "detect" | ||
} | ||
} | ||
} |
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 @@ | ||
* text=auto eol=lf |
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
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 |
---|---|---|
|
@@ -7,5 +7,6 @@ module.exports = function override(config, env) { | |
{loader: 'babel-loader'} | ||
] | ||
}); | ||
|
||
return 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
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
Oops, something went wrong.