Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add job timings vs cycle point visualisation #1510

Merged
merged 46 commits into from
Apr 30, 2024
Merged
Changes from 1 commit
Commits
Show all changes
46 commits
Select commit Hold shift + click to select a range
e084a59
Add time series visualisation
JAllen42 Oct 2, 2023
995f6ed
WIP Platform filtering and select multiple tasks
JAllen42 Nov 17, 2023
25f145f
Fix oversized checkbox
JAllen42 Dec 11, 2023
f1208da
Tidying
JAllen42 Dec 11, 2023
39e34f5
Add remove selected tasks button
JAllen42 Jan 25, 2024
8bd4c5f
Get mini chart selection box to show up initially
JAllen42 Jan 25, 2024
1854a28
Fix tests
JAllen42 Jan 31, 2024
74676c6
Fix cycle point sorting
JAllen42 Feb 1, 2024
d516e9d
Add data for testing analysis jobs query
JAllen42 Feb 1, 2024
67cce4d
Make sure plotted job is most recent
JAllen42 Feb 23, 2024
f2b2476
Switch to useReducedAnimation
JAllen42 Feb 23, 2024
213ad57
Tidying
JAllen42 Feb 23, 2024
e42222a
Update test data
JAllen42 Feb 23, 2024
ab84b63
Add unit tests
JAllen42 Feb 23, 2024
23bab09
Add end to end tests
JAllen42 Feb 23, 2024
a1441a1
Update tooltip formatter
JAllen42 Mar 1, 2024
d247b21
Add button to refresh data
JAllen42 Mar 1, 2024
73c1272
Allow zooming in main chart
JAllen42 Mar 1, 2024
4c2ac5c
Disable unused task filter for time series
JAllen42 Mar 1, 2024
0b1247f
Catch resize observer errors in e2e tests
JAllen42 Mar 6, 2024
7072084
Test commit fot GH actions
ChrisPaulBennett Mar 8, 2024
9a019e7
Merge branch 'analysis_time_series' of github.com:jallen42/cylc-ui in…
ChrisPaulBennett Mar 8, 2024
1a92e39
Merge branch 'master' into analysis_time_series
ChrisPaulBennett Mar 8, 2024
546af2c
Merge branch 'master' into analysis_time_series
ChrisPaulBennett Mar 8, 2024
986348a
Fixed unit tests
ChrisPaulBennett Mar 11, 2024
3cc4813
Update src/views/Analysis.vue
ChrisPaulBennett Mar 13, 2024
d815823
Update src/components/cylc/analysis/TimeSeries.vue
ChrisPaulBennett Mar 13, 2024
ede3885
Update src/components/cylc/analysis/TimeSeries.vue
ChrisPaulBennett Mar 13, 2024
6904440
Update src/components/cylc/analysis/TimeSeries.vue
ChrisPaulBennett Mar 13, 2024
3d5e559
Fixing imports
ChrisPaulBennett Mar 13, 2024
898957d
Fixing call to super()
ChrisPaulBennett Mar 13, 2024
0fd8638
Made "select all" option always appear
ChrisPaulBennett Mar 13, 2024
ef09991
Altered unit tests to cope with select / deselect all options now bei…
ChrisPaulBennett Mar 13, 2024
99815af
Removing references to ShowSelectAll
ChrisPaulBennett Mar 19, 2024
5133550
Update src/components/cylc/analysis/TimeSeries.vue
ChrisPaulBennett Mar 25, 2024
7e12f0b
Update src/components/cylc/analysis/TimeSeries.vue
ChrisPaulBennett Mar 25, 2024
d5de084
Update src/components/cylc/analysis/TimeSeries.vue
ChrisPaulBennett Mar 25, 2024
330f8ee
Update src/components/cylc/analysis/TimeSeries.vue
ChrisPaulBennett Mar 25, 2024
13dbaeb
Update src/components/cylc/analysis/TimeSeries.vue
ChrisPaulBennett Mar 25, 2024
9985524
code review changes
ChrisPaulBennett Mar 26, 2024
86a9954
Code review changes
ChrisPaulBennett Mar 26, 2024
26bc557
Update src/components/cylc/analysis/TimeSeries.vue
ChrisPaulBennett Apr 25, 2024
3db0086
Update src/components/cylc/analysis/TimeSeries.vue
ChrisPaulBennett Apr 25, 2024
beacdc9
linting
ChrisPaulBennett Apr 25, 2024
81f7cd3
Add task name query to populate drop down list
JAllen42 Apr 30, 2024
47422a4
Update src/components/cylc/analysis/TimeSeries.vue
JAllen42 Apr 30, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix oversized checkbox
  • Loading branch information
JAllen42 committed Jan 31, 2024
commit 25f145f6fcb5a53d8071e06397cbc3aa036f0cc2
12 changes: 6 additions & 6 deletions src/components/cylc/analysis/TimeSeries.vue
Original file line number Diff line number Diff line change
Expand Up @@ -37,20 +37,20 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
ripple
@click="selectAllFilteredTasks"
>
<!-- todo: deactivate when no search string -->
<!-- todo: add a remove all matching tasks when all selected -->
Select all matching tasks
<!-- <v-list-item-action>
<v-icon :color="selectedFruits.length > 0 ? 'indigo darken-4' : ''">{{ icon }}</v-icon>
</v-list-item-action> -->
<!-- <v-list-item-content>
<v-list-item-title>Select all matching tasks</v-list-item-title>
</v-list-item-content> -->
</v-list-item>
<v-divider class="mt-2"></v-divider>
</template>
</v-autocomplete>
<v-checkbox
class="ma-0 pa-0"
v-model="showOrigin"
label="Show origin"
density="compact"
hide-details="true"
style="min-width: 120px;"
/>
</div>
</Teleport>
Expand Down