Commit Graph

27 Commits

Author SHA1 Message Date
James Liu cdbfbe8a86
fix(frontend): Update sample pipelines in mock-backend to use yaml format (#7570)
* fix(frontend): Update sample pipelines in mock-backend to use yaml format.

* Update package.json for downloaded dependencies
2022-04-18 17:07:17 +00:00
James Liu d60bc99bb6
chore(frontend): Convert to ts-proto for Protobuf.Value in PipelineSpec (#7125)
* WIP: Support Protobuf.Value in V2 IR

* chore(frontend): Convert to ts-proto for Protobuf.Value in PipelineSpec

* remove ValueType

* npm run format

* Add license for ts-proto-descriptors
2021-12-29 20:17:48 +00:00
James Liu a1bef772dc
feat(frontend): V2 create run from UI (#7001) 2021-12-03 11:18:57 +00:00
James Liu b7a455d9fe
feat(frontend): View pipeline from run ID in KFPv2. Fix #6758 (#6759)
* feat(frontend): View pipeline from run ID in KFPv2.

* feat: update the linkable pipeline view UX when creating a new run from pipeline from string.

* fix test snapshot
2021-10-25 12:34:42 -07:00
James Liu 74c7773ca4
feat(frontend): Runtime DAG in RunDetailsV2. Fix #6673 (#6694)
* feat(frontend): Runtime DAG in RunDetailsV2

* remove debug log
2021-10-07 00:55:22 -07:00
James Liu e0f4f7ce99
feat(frontend): Support Pipeline summary card and pulling version template for V2. Fix #6633 (#6634) 2021-09-30 11:20:31 -07:00
Gerard Casas Saez 19b3de4dd0
feat(frontend): Add to UI pipeline version description. Part of #6256 (#6393)
* add description to upload_pipeline_description http endpoint

* add test for pipeline upload server description

* add description to new pipeline version

* show pipeline version in pipeline detail page

* make description optional on UI + show version descriptio or pipeline description

* remove unused reference

* revert wrong change of ref

* updated on should be pipeline version

* add more versions to mock-backend

* show pipeline and version description at the same time

* add tests for UI

* show pipeline version always
2021-09-06 20:55:38 -07:00
James Liu d03277fe4e
feat(frontend): SubDag Node and mock samples. Partial #6419. Fix #6302. Fix #6398 (#6420)
* feat(frontend): SubDag Node and mock samples

* fix import

* comment address

* from aside to div

* address comments
2021-08-31 10:04:03 -07:00
Gerard Casas Saez 3866ccf6c1
feat(frontend): Add version description to pipelineVersionList. Part of #6256 (#6405)
* add version description to pipelineVersionList

* remove extra tests and reduce flex for version name

* add tooltip and mock version data
2021-08-24 12:24:44 -07:00
James Liu 72c54c8c4d
feat(frontend): Show V2 PipelineDetail page when pipelineSpec is v2. Fix #6303 (#6318)
* feat(frontend): Show V2 PipelineDetail page when pipelineSpec is v2

* fix v1v2 decision logic

* fix test
2021-08-17 22:19:37 -07:00
James Liu 78c550ee11
chore(frontend): Mock one v2 pipeline spec response. Fix #6232 (#6233) 2021-08-05 19:14:49 -07:00
Alexey Volkov cc83e1089b
Assigned copyright to the project authors (#5587) 2021-05-05 13:53:22 +08:00
radcheb 02b0899dd9
fix(frontend): fix parsing large workflow graph. Fixes #4179 (#4180)
* frontend: add large pipeline example to mocked data

* add util function decodeCompressedNodes

* decode compressedNodes in workflow if node is empty and compressedNodes exit

* fix decodeCompressedNodes

* prettify code

* Frontend:test Utils decodeCompressedNodes

* test RunDetails page render compressed grah

* add util function decodeCompressedNodes

* Frontend:test Utils decodeCompressedNodes

* test RunDetails page render compressed grah

* reformat code

* update jest snapshot to add compressed node case

* fix tests

* reformat code

* update RunDetails snapshot

* remove dupplicate test code

* RunDetails: remove compressedNodes after decoding it

* reformat decodeCompressedNodes + add failure case test

* decodeCompressedNodes returns undefined on error

* RunDetails decodeCompressedNodes test: snapshot same as single node graph

* do not wait for decodeCompressedNodes + debug print workflow

* fix Run load + refresh snapshot

* format code

* Fix one-node compressed workflow graph + update snapshot

* reformat code

* rename large pipeline name

* fix decompressNodes to work in browser

* fix test

* fix tests

* remove some of the console.log

* clean code

* address comments

* address comments: wait for zlib instead of mocking decodeCompressedNodes

* address comments: decodeCompressedNodes reject in case of error + catch error on run load

* address comments
2020-10-16 07:27:26 -07:00
Eterna2 ca29b5c964
fix(frontend): do not render Retry nodes in UI DAG as they are virtual nodes. Fixes #4425 #2705 (#4474)
* Fix #4425 #2705: do not render Retry nodes as they are virtual nodes with no physical counterpart - e.g. pod logs.

* Add unit test for filtering our virtual retry node
2020-09-11 18:28:57 -07:00
Yuan (Bob) Gong c482d935cd [UI] Add tooltips to table name columns so they can be read fully (#2894)
* Add tooltips to table name columns so they can be read fully

* Update test snapshot

* Fix lint errors
2020-01-22 01:24:34 -08:00
Yuan (Bob) Gong 26a244de24 Enlarge choose pipeline dialog to show more description (#2494)
* Fix description typo

* Format mock-backend/fixed-data.ts

* Make choose pipeline dialog bigger, render description in markdown

* snapshot fix
2019-10-25 07:31:39 -07:00
Kirin Patel 41d39c17a2 Add run with json data as input within fixed-data.ts for UI testing and development (#1895)
* Added run with json data as input

* Changed run and uid to not be duplicates of hello-world-runtime
2019-08-21 19:38:31 -07:00
Riley Bauer d2e94e4e04 Fix run duration bug (#1827)
* Allows durations >=24h and renames 'showLink' in RunList

* Update, fix tests
2019-08-15 19:52:34 -07:00
Riley Bauer 0517114dc2 Reduce getPipeline calls in RunList (#1852)
* Skips calling getPipeline in RunList if the pipeline name is in the pipeline_spec

* Update fixed data to include pipeline names in pipeline specs

* Remove redundant getRuns call
2019-08-15 12:28:35 -07:00
Riley Bauer 3ccc22ccb5 Add metrics table to run details page, run outputs tab (#1530)
* Adds metrics table to run outputs

* Clean-up and tests

* WIP adding titles to run outputs

* Clean up
2019-06-20 16:48:36 -07:00
Riley Bauer 85de728236 Support rendering recursive static DAGs (#845)
* Adds support for rendering recursive pipelines to the StaticGraphParser

* Adds a recursive pipeline to the list of mocks

* Fixes recursive graph rendering under new styling

* Adds additional comments and surfaces pipeline yaml error to users

* Remove unnecessary comment
2019-02-25 17:48:26 -08:00
Riley Bauer 5beffef614 Auto-refreshes the run details page (#722)
* Auto-refreshes the run details page

Auto-refresh is paused when the window loses focus (blur) and is resumed
upon re-focus. Autorefresh is permanently terminated if the run has
stopped due to failure, error, being skipped, or succeeding.

* Adds tests for Status.hasCompleted

* Clean up and PR comments
2019-01-24 10:55:02 -08:00
Yasser Elsayed 09dbf5ff73 Fix mock data after proto changes (#564) 2018-12-18 14:57:07 -08:00
Yasser Elsayed 114a84740e
Fix serializing cloned embedded pipeline (#474)
* fix serializing cloned pipeline

* fix tests

* fix mock backend data

* add View pipeline link to new run page

* fix test snapshots
2018-12-04 21:33:47 -08:00
Yasser Elsayed 9718826cba Show pipeline details embedded in runs (#447)
* show 'View pipeline' button when no pipeline id is present

* wip pipeline details to show pipeline from run spec

* pipeline details working, still need to show breadcrumbs

* breadcrumbs fixed, needs testing

* fix tests

* add more tests to cover changes

* make sure only pipeline is defined

* pr comments
2018-12-04 11:13:27 -08:00
Riley Bauer 153f61aefb Adds the Kubeflow logo to the side nav. Fetches specific font weights (#48)
* Adds the Kubeflow logo to the side nav, and fetches specific font weights

* Change favicon and webpage title

* Updates 'Pipelines' icon
2018-11-05 16:32:10 -08:00
Pascal Vicaire 633e2ddcc8 Initial commit of the kubeflow/pipeline project. 2018-11-02 14:02:31 -07:00