This is an automated email from the ASF dual-hosted git repository.
machristie pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/airavata-django-portal.git.
from 1e94d65 Merge pull request #24 from aravindparappil46/scrollbar-css
new 574aea8 AIRAVATA-2613 Add sidebar with recent experiments
new 3aa4eda AIRAVATA-2613 Fetch application name for experiments
new 8f4ebd8 AIRAVATA-2613 Poll for updates to recent experiments
new 2ed2511 AIRAVATA-2613 Regenerated Thrift stubs
new f8f502e AIRAVATA-2613 Filter experiment search results by USER_NAME
new c8414f3 AIRAVATA-2613 MainLayout Vue component to define main +
sidebar layout
new bfcaca0 AIRAVATA-2613 Add a Sidebar component
new 488f650 AIRAVATA-2613 Updated entry points to use MainLayout
new 839d6dc AIRAVATA-2613 Ignore errors when refresing recent experiments
The 766 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
airavata/model/experiment/ttypes.py | 3 +
.../admin/static/django_airavata_admin/src/main.js | 2 +-
.../api/static/django_airavata_api/js/index.js | 2 +
.../js/models/ExperimentSearchFields.js | 13 +++
.../django_airavata_api/js/service_config.js | 3 +-
django_airavata/apps/api/views.py | 12 +-
.../js/entry-parser-details.js | 14 ++-
.../js/parser-listing-entry-point.js | 4 +-
.../js/group-create-entry-point.js | 4 +-
.../js/group-edit-entry-point.js | 6 +-
.../js/group-listing-entry-point.js | 4 +-
.../js/containers/RecentExperimentsContainer.vue | 129 +++++++++++++++++++++
.../js/entry-create-experiment.js | 3 +-
.../js/entry-dashboard.js | 25 +++-
.../js/entry-edit-experiment.js | 3 +-
.../js/entry-experiment-list.js | 3 +-
.../js/entry-project-list.js | 3 +-
.../js/entry-view-experiment.js | 3 +-
.../django_airavata_workspace/dashboard.html | 7 ++
django_airavata/apps/workspace/views.py | 5 +-
.../static/common/js/components/MainLayout.vue | 31 +++++
.../static/common/js/components/Sidebar.vue | 12 ++
.../static/common/js/components/SidebarFeed.vue | 39 +++++++
.../common/js/components/SidebarFeedItem.vue | 53 +++++++++
.../static/common/js/components/SidebarHeader.vue | 25 ++++
django_airavata/static/common/js/index.js | 10 +-
django_airavata/static/common/package.json | 1 +
django_airavata/static/common/scss/main.scss | 12 ++
django_airavata/templates/base.html | 28 ++---
docs/dev/developing_frontend.md | 5 +-
30 files changed, 412 insertions(+), 52 deletions(-)
create mode 100644
django_airavata/apps/api/static/django_airavata_api/js/models/ExperimentSearchFields.js
create mode 100644
django_airavata/apps/workspace/static/django_airavata_workspace/js/containers/RecentExperimentsContainer.vue
create mode 100644
django_airavata/apps/workspace/templates/django_airavata_workspace/dashboard.html
create mode 100644 django_airavata/static/common/js/components/MainLayout.vue
create mode 100644 django_airavata/static/common/js/components/Sidebar.vue
create mode 100644 django_airavata/static/common/js/components/SidebarFeed.vue
create mode 100644
django_airavata/static/common/js/components/SidebarFeedItem.vue
create mode 100644
django_airavata/static/common/js/components/SidebarHeader.vue