-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#65 Provide standalone modelserver-client
- Move packages into dedicated `packages` dir - Move downloading of theia plugins from root `package.json` to browser-app - Introduce root script for upgrading the fluent theia dependencies (`yarn ugprade:theia`) - Upgrade effective Theia version to 1.19.0 and swapt to ES2017 as default target. Add mocha dependencies and add config - Restructure repo and move packages and examples in dedicated directories - Extract ModelServerClient from modelserver-theia into separate package Rework ModelServerClient API so that -- The API is iinline with the current Java API -- The API returns concrete data objects instead of low level responses -- Overrides are provided to retrieve typed results where suitable (#22) -- The default impl uses the well established axios library for rest calls instead of a custom solution -- The implementation is isomorph and can be used in both web frontends and node backends. -- Rework can clean up Subscriptions API - Provide generic mocha test setup - Add simple request tests for the modelserver client (using moxios) Contributed on behalf of ST Microelectronics
- Loading branch information
Showing
78 changed files
with
6,416 additions
and
8,026 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
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"$schema": "https://json.schemastore.org/mocharc", | ||
"require": [ | ||
"ts-node/register", | ||
"reflect-metadata/Reflect" | ||
], | ||
"reporter": "spec", | ||
"color": true, | ||
"watch-files": [ | ||
"*.ts", | ||
"*.tsx" | ||
], | ||
"timeout": 2000 | ||
} |
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 |
---|---|---|
|
@@ -11,6 +11,7 @@ | |
"@typescript-eslint", | ||
"header", | ||
"import", | ||
"chai-friendly", | ||
"no-null" | ||
], | ||
"extends": [ | ||
|
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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
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
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
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.