This repository has been archived by the owner on Nov 30, 2021. It is now read-only.
-
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.
Merge pull request #55 from Caleydo/release-1.0.0
- Loading branch information
Showing
168 changed files
with
112,339 additions
and
10,818 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
Validating CODEOWNERS 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 @@ | ||
* @thinkh |
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,11 +1,14 @@ | ||
/.tscache | ||
/.idea | ||
/build/ | ||
/dist/ | ||
/lib/ | ||
/dist/tsBuildInfoFile | ||
node_modules/ | ||
/src/**/*.js | ||
/tests/**/*.js | ||
*.map | ||
/src/**/*.map | ||
/tests/**/*.map | ||
*.css | ||
*.log | ||
/.cache-loader | ||
/.awcache | ||
/.cache-loader | ||
package-lock.json |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
import { ACLUEWrapper, CLUEGraphManager, IVisStateApp } from 'phovea_clue'; | ||
import { AppHeader } from 'phovea_ui'; | ||
import { ProvenanceGraph } from 'phovea_core'; | ||
import App from './internal/App'; | ||
export interface IView<T> { | ||
init(): Promise<T>; | ||
remove(): any; | ||
} | ||
export interface IAppWrapperOptions { | ||
/** | ||
* name of this application | ||
*/ | ||
name: string; | ||
/** | ||
* prefix used for provenance graphs and used to identify matching provenance graphs | ||
*/ | ||
prefix: string; | ||
/** | ||
* Show/hide the EU cookie disclaimer bar from `cookie-bar.eu` | ||
*/ | ||
showCookieDisclaimer: boolean; | ||
} | ||
/** | ||
* The main class for the App app | ||
*/ | ||
export declare class AppWrapper<T extends IView<T> & IVisStateApp> extends ACLUEWrapper { | ||
protected readonly options: IAppWrapperOptions; | ||
protected app: Promise<App>; | ||
protected header: AppHeader; | ||
constructor(options?: Partial<IAppWrapperOptions>); | ||
init(): Promise<void>; | ||
protected buildImpl(body: HTMLElement): { | ||
graph: Promise<ProvenanceGraph>; | ||
manager: CLUEGraphManager; | ||
storyVis: () => Promise<import("phovea_clue").VerticalStoryVis>; | ||
provVis: () => Promise<import("phovea_clue").LayoutedProvVis>; | ||
}; | ||
/** | ||
* build the actual main application given the arguments | ||
* @param {ProvenanceGraph} graph the resolved current provenance graph | ||
* @param {CLUEGraphManager} manager its manager | ||
* @param {HTMLElement} main root dom element | ||
* @returns {PromiseLike<T> | T} | ||
*/ | ||
protected createApp(graph: ProvenanceGraph, manager: CLUEGraphManager, main: HTMLElement): PromiseLike<App> | App; | ||
} |
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
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.