mirror of
https://github.com/nasa/openmct.git
synced 2025-05-03 17:22:56 +00:00
New action to reload an individual view and all of its children (#7362)
* add reload action plugin * checking for domain object before reloading * check if objects are equal before refreshing * add test * lint * change to label * ensure object styles are initialized * resubscribe to staleness too * add better labels for tabels * ensure tab uses exact for label now due to table aria changes * fix table tests * make tabs exact * update conflicts --------- Co-authored-by: Jesse Mazzella <ozyx@users.noreply.github.com>
This commit is contained in:
parent
450cab428f
commit
2b2c74da9c
@ -0,0 +1,125 @@
|
|||||||
|
/*****************************************************************************
|
||||||
|
* Open MCT, Copyright (c) 2014-2023, United States Government
|
||||||
|
* as represented by the Administrator of the National Aeronautics and Space
|
||||||
|
* Administration. All rights reserved.
|
||||||
|
*
|
||||||
|
* Open MCT is licensed under the Apache License, Version 2.0 (the
|
||||||
|
* "License"); you may not use this file except in compliance with the License.
|
||||||
|
* You may obtain a copy of the License at
|
||||||
|
* http://www.apache.org/licenses/LICENSE-2.0.
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
||||||
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
||||||
|
* License for the specific language governing permissions and limitations
|
||||||
|
* under the License.
|
||||||
|
*
|
||||||
|
* Open MCT includes source code licensed under additional open source
|
||||||
|
* licenses. See the Open Source Licenses file (LICENSES.md) included with
|
||||||
|
* this source code distribution or the Licensing information page available
|
||||||
|
* at runtime from the About dialog for additional information.
|
||||||
|
*****************************************************************************/
|
||||||
|
import { createDomainObjectWithDefaults, expandEntireTree } from '../../../../appActions.js';
|
||||||
|
import { expect, test } from '../../../../pluginFixtures.js';
|
||||||
|
|
||||||
|
test.describe('Reload action', () => {
|
||||||
|
test.beforeEach(async ({ page }) => {
|
||||||
|
await page.goto('./', { waitUntil: 'domcontentloaded' });
|
||||||
|
|
||||||
|
const displayLayout = await createDomainObjectWithDefaults(page, {
|
||||||
|
type: 'Display Layout'
|
||||||
|
});
|
||||||
|
|
||||||
|
const alphaTable = await createDomainObjectWithDefaults(page, {
|
||||||
|
type: 'Telemetry Table',
|
||||||
|
name: 'Alpha Table'
|
||||||
|
});
|
||||||
|
|
||||||
|
const betaTable = await createDomainObjectWithDefaults(page, {
|
||||||
|
type: 'Telemetry Table',
|
||||||
|
name: 'Beta Table'
|
||||||
|
});
|
||||||
|
|
||||||
|
await createDomainObjectWithDefaults(page, {
|
||||||
|
type: 'Sine Wave Generator',
|
||||||
|
parent: alphaTable.uuid,
|
||||||
|
customParameters: {
|
||||||
|
'[aria-label="Data Rate (hz)"]': '0.001'
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
await createDomainObjectWithDefaults(page, {
|
||||||
|
type: 'Sine Wave Generator',
|
||||||
|
parent: betaTable.uuid,
|
||||||
|
customParameters: {
|
||||||
|
'[aria-label="Data Rate (hz)"]': '0.001'
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
await page.goto(displayLayout.url);
|
||||||
|
|
||||||
|
// Expand all folders
|
||||||
|
await expandEntireTree(page);
|
||||||
|
|
||||||
|
await page.getByLabel('Edit Object', { exact: true }).click();
|
||||||
|
|
||||||
|
await page.dragAndDrop(`text='Alpha Table'`, '.l-layout__grid-holder', {
|
||||||
|
targetPosition: { x: 0, y: 0 }
|
||||||
|
});
|
||||||
|
|
||||||
|
await page.dragAndDrop(`text='Beta Table'`, '.l-layout__grid-holder', {
|
||||||
|
targetPosition: { x: 0, y: 250 }
|
||||||
|
});
|
||||||
|
|
||||||
|
await page.locator('button[title="Save"]').click();
|
||||||
|
await page.getByRole('listitem', { name: 'Save and Finish Editing' }).click();
|
||||||
|
});
|
||||||
|
|
||||||
|
test('can reload display layout and its children', async ({ page }) => {
|
||||||
|
const beforeReloadAlphaTelemetryValue = await page
|
||||||
|
.getByLabel('Alpha Table table content')
|
||||||
|
.getByLabel('wavelengths table cell')
|
||||||
|
.first()
|
||||||
|
.getAttribute('title');
|
||||||
|
const beforeReloadBetaTelemetryValue = await page
|
||||||
|
.getByLabel('Beta Table table content')
|
||||||
|
.getByLabel('wavelengths table cell')
|
||||||
|
.first()
|
||||||
|
.getAttribute('title');
|
||||||
|
// reload alpha
|
||||||
|
await page.getByTitle('View menu items').first().click();
|
||||||
|
await page.getByRole('menuitem', { name: /Reload/ }).click();
|
||||||
|
|
||||||
|
const afterReloadAlphaTelemetryValue = await page
|
||||||
|
.getByLabel('Alpha Table table content')
|
||||||
|
.getByLabel('wavelengths table cell')
|
||||||
|
.first()
|
||||||
|
.getAttribute('title');
|
||||||
|
const afterReloadBetaTelemetryValue = await page
|
||||||
|
.getByLabel('Beta Table table content')
|
||||||
|
.getByLabel('wavelengths table cell')
|
||||||
|
.first()
|
||||||
|
.getAttribute('title');
|
||||||
|
|
||||||
|
expect(beforeReloadAlphaTelemetryValue).not.toEqual(afterReloadAlphaTelemetryValue);
|
||||||
|
expect(beforeReloadBetaTelemetryValue).toEqual(afterReloadBetaTelemetryValue);
|
||||||
|
|
||||||
|
// now reload parent
|
||||||
|
await page.getByTitle('More actions').click();
|
||||||
|
await page.getByRole('menuitem', { name: /Reload/ }).click();
|
||||||
|
|
||||||
|
const fullReloadAlphaTelemetryValue = await page
|
||||||
|
.getByLabel('Alpha Table table content')
|
||||||
|
.getByLabel('wavelengths table cell')
|
||||||
|
.first()
|
||||||
|
.getAttribute('title');
|
||||||
|
const fullReloadBetaTelemetryValue = await page
|
||||||
|
.getByLabel('Beta Table table content')
|
||||||
|
.getByLabel('wavelengths table cell')
|
||||||
|
.first()
|
||||||
|
.getAttribute('title');
|
||||||
|
|
||||||
|
expect(fullReloadAlphaTelemetryValue).not.toEqual(afterReloadAlphaTelemetryValue);
|
||||||
|
expect(fullReloadBetaTelemetryValue).not.toEqual(afterReloadBetaTelemetryValue);
|
||||||
|
});
|
||||||
|
});
|
@ -50,7 +50,7 @@ test.describe('Tabs View', () => {
|
|||||||
page.goto(tabsView.url);
|
page.goto(tabsView.url);
|
||||||
|
|
||||||
// select first tab
|
// select first tab
|
||||||
await page.getByLabel(`${table.name} tab`).click();
|
await page.getByLabel(`${table.name} tab`, { exact: true }).click();
|
||||||
// ensure table header visible
|
// ensure table header visible
|
||||||
await expect(page.getByRole('searchbox', { name: 'message filter input' })).toBeVisible();
|
await expect(page.getByRole('searchbox', { name: 'message filter input' })).toBeVisible();
|
||||||
|
|
||||||
@ -58,7 +58,7 @@ test.describe('Tabs View', () => {
|
|||||||
await expect(page.locator('canvas[id=webglContext]')).toBeHidden();
|
await expect(page.locator('canvas[id=webglContext]')).toBeHidden();
|
||||||
|
|
||||||
// select second tab
|
// select second tab
|
||||||
await page.getByLabel(`${notebook.name} tab`).click();
|
await page.getByLabel(`${notebook.name} tab`, { exact: true }).click();
|
||||||
|
|
||||||
// ensure notebook visible
|
// ensure notebook visible
|
||||||
await expect(page.locator('.c-notebook__drag-area')).toBeVisible();
|
await expect(page.locator('.c-notebook__drag-area')).toBeVisible();
|
||||||
@ -67,7 +67,7 @@ test.describe('Tabs View', () => {
|
|||||||
await expect(page.locator('canvas[id=webglContext]')).toBeHidden();
|
await expect(page.locator('canvas[id=webglContext]')).toBeHidden();
|
||||||
|
|
||||||
// select third tab
|
// select third tab
|
||||||
await page.getByLabel(`${sineWaveGenerator.name} tab`).click();
|
await page.getByLabel(`${sineWaveGenerator.name} tab`, { exact: true }).click();
|
||||||
|
|
||||||
// expect sine wave generator visible
|
// expect sine wave generator visible
|
||||||
await expect(page.locator('.c-plot')).toBeVisible();
|
await expect(page.locator('.c-plot')).toBeVisible();
|
||||||
@ -78,7 +78,7 @@ test.describe('Tabs View', () => {
|
|||||||
await expect(page.locator('canvas').nth(1)).toBeVisible();
|
await expect(page.locator('canvas').nth(1)).toBeVisible();
|
||||||
|
|
||||||
// now try to select the first tab again
|
// now try to select the first tab again
|
||||||
await page.getByLabel(`${table.name} tab`).click();
|
await page.getByLabel(`${table.name} tab`, { exact: true }).click();
|
||||||
// ensure table header visible
|
// ensure table header visible
|
||||||
await expect(page.getByRole('searchbox', { name: 'message filter input' })).toBeVisible();
|
await expect(page.getByRole('searchbox', { name: 'message filter input' })).toBeVisible();
|
||||||
|
|
||||||
|
@ -64,10 +64,9 @@ test.describe('Telemetry Table', () => {
|
|||||||
|
|
||||||
// Get the most recent telemetry date
|
// Get the most recent telemetry date
|
||||||
const latestTelemetryDate = await page
|
const latestTelemetryDate = await page
|
||||||
.locator('table.c-telemetry-table__body > tbody > tr')
|
.getByLabel('table content')
|
||||||
|
.getByLabel('utc table cell')
|
||||||
.last()
|
.last()
|
||||||
.locator('td')
|
|
||||||
.nth(1)
|
|
||||||
.getAttribute('title');
|
.getAttribute('title');
|
||||||
|
|
||||||
// Verify that it is <= our new end bound
|
// Verify that it is <= our new end bound
|
||||||
@ -91,7 +90,7 @@ test.describe('Telemetry Table', () => {
|
|||||||
await page.getByRole('searchbox', { name: 'message filter input' }).click();
|
await page.getByRole('searchbox', { name: 'message filter input' }).click();
|
||||||
await page.getByRole('searchbox', { name: 'message filter input' }).fill('Roger');
|
await page.getByRole('searchbox', { name: 'message filter input' }).fill('Roger');
|
||||||
|
|
||||||
let cells = await page.getByRole('cell', { name: /Roger/ }).all();
|
let cells = await page.getByRole('cell').getByText(/Roger/).all();
|
||||||
// ensure we've got more than one cell
|
// ensure we've got more than one cell
|
||||||
expect(cells.length).toBeGreaterThan(1);
|
expect(cells.length).toBeGreaterThan(1);
|
||||||
// ensure the text content of each cell contains the search term
|
// ensure the text content of each cell contains the search term
|
||||||
@ -103,7 +102,10 @@ test.describe('Telemetry Table', () => {
|
|||||||
await page.getByRole('searchbox', { name: 'message filter input' }).click();
|
await page.getByRole('searchbox', { name: 'message filter input' }).click();
|
||||||
await page.getByRole('searchbox', { name: 'message filter input' }).fill('Dodger');
|
await page.getByRole('searchbox', { name: 'message filter input' }).fill('Dodger');
|
||||||
|
|
||||||
cells = await page.getByRole('cell', { name: /Dodger/ }).all();
|
cells = await page
|
||||||
|
.getByRole('cell')
|
||||||
|
.getByText(/Dodger/)
|
||||||
|
.all();
|
||||||
// ensure we've got more than one cell
|
// ensure we've got more than one cell
|
||||||
expect(cells.length).toBe(0);
|
expect(cells.length).toBe(0);
|
||||||
// ensure the text content of each cell contains the search term
|
// ensure the text content of each cell contains the search term
|
||||||
@ -135,7 +137,7 @@ test.describe('Telemetry Table', () => {
|
|||||||
await page.getByRole('searchbox', { name: 'message filter input' }).click();
|
await page.getByRole('searchbox', { name: 'message filter input' }).click();
|
||||||
await page.getByRole('searchbox', { name: 'message filter input' }).fill('/[Rr]oger/');
|
await page.getByRole('searchbox', { name: 'message filter input' }).fill('/[Rr]oger/');
|
||||||
|
|
||||||
let cells = await page.getByRole('cell', { name: /Roger/ }).all();
|
let cells = await page.getByRole('cell').getByText(/Roger/).all();
|
||||||
// ensure we've got more than one cell
|
// ensure we've got more than one cell
|
||||||
expect(cells.length).toBeGreaterThan(1);
|
expect(cells.length).toBeGreaterThan(1);
|
||||||
// ensure the text content of each cell contains the search term
|
// ensure the text content of each cell contains the search term
|
||||||
@ -147,7 +149,10 @@ test.describe('Telemetry Table', () => {
|
|||||||
await page.getByRole('searchbox', { name: 'message filter input' }).click();
|
await page.getByRole('searchbox', { name: 'message filter input' }).click();
|
||||||
await page.getByRole('searchbox', { name: 'message filter input' }).fill('/[Dd]oger/');
|
await page.getByRole('searchbox', { name: 'message filter input' }).fill('/[Dd]oger/');
|
||||||
|
|
||||||
cells = await page.getByRole('cell', { name: /Dodger/ }).all();
|
cells = await page
|
||||||
|
.getByRole('cell')
|
||||||
|
.getByText(/Dodger/)
|
||||||
|
.all();
|
||||||
// ensure we've got more than one cell
|
// ensure we've got more than one cell
|
||||||
expect(cells.length).toBe(0);
|
expect(cells.length).toBe(0);
|
||||||
// ensure the text content of each cell contains the search term
|
// ensure the text content of each cell contains the search term
|
||||||
|
@ -24,7 +24,7 @@ import { createDomainObjectWithDefaults, waitForPlotsToRender } from '../../appA
|
|||||||
import { expect, test } from '../../pluginFixtures.js';
|
import { expect, test } from '../../pluginFixtures.js';
|
||||||
|
|
||||||
test.describe('Tabs View', () => {
|
test.describe('Tabs View', () => {
|
||||||
test('Renders tabbed elements nicely', async ({ page }) => {
|
test('Renders tabbed elements only when visible', async ({ page }) => {
|
||||||
// Code to hook into the requestAnimationFrame function and log each call
|
// Code to hook into the requestAnimationFrame function and log each call
|
||||||
let animationCalls = [];
|
let animationCalls = [];
|
||||||
await page.exposeFunction('logCall', (callCount) => {
|
await page.exposeFunction('logCall', (callCount) => {
|
||||||
@ -64,24 +64,24 @@ test.describe('Tabs View', () => {
|
|||||||
page.goto(tabsView.url);
|
page.goto(tabsView.url);
|
||||||
|
|
||||||
// select first tab
|
// select first tab
|
||||||
await page.getByLabel(`${table.name} tab`).click();
|
await page.getByLabel(`${table.name} tab`, { exact: true }).click();
|
||||||
// ensure table header visible
|
// ensure table header visible
|
||||||
await expect(page.getByRole('searchbox', { name: 'message filter input' })).toBeVisible();
|
await expect(page.getByRole('searchbox', { name: 'message filter input' })).toBeVisible();
|
||||||
|
|
||||||
// select second tab
|
// select second tab
|
||||||
await page.getByLabel(`${notebook.name} tab`).click();
|
await page.getByLabel(`${notebook.name} tab`, { exact: true }).click();
|
||||||
|
|
||||||
// expect notebook visible
|
// expect notebook visible
|
||||||
await expect(page.locator('.c-notebook__drag-area')).toBeVisible();
|
await expect(page.locator('.c-notebook__drag-area')).toBeVisible();
|
||||||
|
|
||||||
// select third tab
|
// select third tab
|
||||||
await page.getByLabel(`${sineWaveGenerator.name} tab`).click();
|
await page.getByLabel(`${sineWaveGenerator.name} tab`, { exact: true }).click();
|
||||||
|
|
||||||
// ensure sine wave generator visible
|
// ensure sine wave generator visible
|
||||||
expect(await page.locator('.c-plot').isVisible()).toBe(true);
|
expect(await page.locator('.c-plot').isVisible()).toBe(true);
|
||||||
|
|
||||||
// now select notebook and clear animation calls
|
// now select notebook and clear animation calls
|
||||||
await page.getByLabel(`${notebook.name} tab`).click();
|
await page.getByLabel(`${notebook.name} tab`, { exact: true }).click();
|
||||||
animationCalls = [];
|
animationCalls = [];
|
||||||
// expect notebook visible
|
// expect notebook visible
|
||||||
await expect(page.locator('.c-notebook__drag-area')).toBeVisible();
|
await expect(page.locator('.c-notebook__drag-area')).toBeVisible();
|
||||||
@ -89,7 +89,7 @@ test.describe('Tabs View', () => {
|
|||||||
|
|
||||||
// select sine wave generator and clear animation calls
|
// select sine wave generator and clear animation calls
|
||||||
animationCalls = [];
|
animationCalls = [];
|
||||||
await page.getByLabel(`${sineWaveGenerator.name} tab`).click();
|
await page.getByLabel(`${sineWaveGenerator.name} tab`, { exact: true }).click();
|
||||||
|
|
||||||
// ensure sine wave generator visible
|
// ensure sine wave generator visible
|
||||||
await waitForPlotsToRender(page);
|
await waitForPlotsToRender(page);
|
||||||
|
@ -251,6 +251,7 @@ export class MCT extends EventEmitter {
|
|||||||
this.install(this.plugins.FlexibleLayout());
|
this.install(this.plugins.FlexibleLayout());
|
||||||
this.install(this.plugins.GoToOriginalAction());
|
this.install(this.plugins.GoToOriginalAction());
|
||||||
this.install(this.plugins.OpenInNewTabAction());
|
this.install(this.plugins.OpenInNewTabAction());
|
||||||
|
this.install(this.plugins.ReloadAction());
|
||||||
this.install(this.plugins.WebPage());
|
this.install(this.plugins.WebPage());
|
||||||
this.install(this.plugins.Condition());
|
this.install(this.plugins.Condition());
|
||||||
this.install(this.plugins.ConditionWidget());
|
this.install(this.plugins.ConditionWidget());
|
||||||
|
@ -65,6 +65,7 @@ import PerformanceIndicator from './performanceIndicator/plugin.js';
|
|||||||
import CouchDBPlugin from './persistence/couch/plugin.js';
|
import CouchDBPlugin from './persistence/couch/plugin.js';
|
||||||
import PlanLayout from './plan/plugin.js';
|
import PlanLayout from './plan/plugin.js';
|
||||||
import PlotPlugin from './plot/plugin.js';
|
import PlotPlugin from './plot/plugin.js';
|
||||||
|
import ReloadAction from './reloadAction/plugin.js';
|
||||||
import RemoteClock from './remoteClock/plugin.js';
|
import RemoteClock from './remoteClock/plugin.js';
|
||||||
import StaticRootPlugin from './staticRootPlugin/plugin.js';
|
import StaticRootPlugin from './staticRootPlugin/plugin.js';
|
||||||
import SummaryWidget from './summaryWidget/plugin.js';
|
import SummaryWidget from './summaryWidget/plugin.js';
|
||||||
@ -141,6 +142,7 @@ plugins.Filters = Filters;
|
|||||||
plugins.ObjectMigration = ObjectMigration;
|
plugins.ObjectMigration = ObjectMigration;
|
||||||
plugins.GoToOriginalAction = GoToOriginalAction;
|
plugins.GoToOriginalAction = GoToOriginalAction;
|
||||||
plugins.OpenInNewTabAction = OpenInNewTabAction;
|
plugins.OpenInNewTabAction = OpenInNewTabAction;
|
||||||
|
plugins.ReloadAction = ReloadAction;
|
||||||
plugins.ClearData = ClearData;
|
plugins.ClearData = ClearData;
|
||||||
plugins.WebPage = WebPagePlugin;
|
plugins.WebPage = WebPagePlugin;
|
||||||
plugins.Espresso = Espresso;
|
plugins.Espresso = Espresso;
|
||||||
|
37
src/plugins/reloadAction/ReloadAction.js
Normal file
37
src/plugins/reloadAction/ReloadAction.js
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
/*****************************************************************************
|
||||||
|
* Open MCT, Copyright (c) 2014-2023, United States Government
|
||||||
|
* as represented by the Administrator of the National Aeronautics and Space
|
||||||
|
* Administration. All rights reserved.
|
||||||
|
*
|
||||||
|
* Open MCT is licensed under the Apache License, Version 2.0 (the
|
||||||
|
* "License"); you may not use this file except in compliance with the License.
|
||||||
|
* You may obtain a copy of the License at
|
||||||
|
* http://www.apache.org/licenses/LICENSE-2.0.
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
||||||
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
||||||
|
* License for the specific language governing permissions and limitations
|
||||||
|
* under the License.
|
||||||
|
*
|
||||||
|
* Open MCT includes source code licensed under additional open source
|
||||||
|
* licenses. See the Open Source Licenses file (LICENSES.md) included with
|
||||||
|
* this source code distribution or the Licensing information page available
|
||||||
|
* at runtime from the About dialog for additional information.
|
||||||
|
*****************************************************************************/
|
||||||
|
export default class ReloadAction {
|
||||||
|
constructor(openmct) {
|
||||||
|
this.name = 'Reload';
|
||||||
|
this.key = 'reload';
|
||||||
|
this.description = 'Reload this object and its children';
|
||||||
|
this.group = 'action';
|
||||||
|
this.priority = 10;
|
||||||
|
this.cssClass = 'icon-refresh';
|
||||||
|
|
||||||
|
this.openmct = openmct;
|
||||||
|
}
|
||||||
|
invoke(objectPath, view) {
|
||||||
|
const domainObject = objectPath[0];
|
||||||
|
this.openmct.objectViews.emit('reload', domainObject);
|
||||||
|
}
|
||||||
|
}
|
28
src/plugins/reloadAction/plugin.js
Normal file
28
src/plugins/reloadAction/plugin.js
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
/*****************************************************************************
|
||||||
|
* Open MCT, Copyright (c) 2014-2023, United States Government
|
||||||
|
* as represented by the Administrator of the National Aeronautics and Space
|
||||||
|
* Administration. All rights reserved.
|
||||||
|
*
|
||||||
|
* Open MCT is licensed under the Apache License, Version 2.0 (the
|
||||||
|
* "License"); you may not use this file except in compliance with the License.
|
||||||
|
* You may obtain a copy of the License at
|
||||||
|
* http://www.apache.org/licenses/LICENSE-2.0.
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
||||||
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
||||||
|
* License for the specific language governing permissions and limitations
|
||||||
|
* under the License.
|
||||||
|
*
|
||||||
|
* Open MCT includes source code licensed under additional open source
|
||||||
|
* licenses. See the Open Source Licenses file (LICENSES.md) included with
|
||||||
|
* this source code distribution or the Licensing information page available
|
||||||
|
* at runtime from the About dialog for additional information.
|
||||||
|
*****************************************************************************/
|
||||||
|
import ReloadAction from './ReloadAction.js';
|
||||||
|
|
||||||
|
export default function plugin() {
|
||||||
|
return function install(openmct) {
|
||||||
|
openmct.actions.register(new ReloadAction(openmct));
|
||||||
|
};
|
||||||
|
}
|
@ -22,8 +22,8 @@
|
|||||||
<template>
|
<template>
|
||||||
<td
|
<td
|
||||||
ref="tableCell"
|
ref="tableCell"
|
||||||
:aria-label="formattedValue"
|
|
||||||
:title="formattedValue"
|
:title="formattedValue"
|
||||||
|
:aria-label="`${columnKey} table cell ${formattedValue}`"
|
||||||
@click="selectCell($event.currentTarget, columnKey)"
|
@click="selectCell($event.currentTarget, columnKey)"
|
||||||
@mouseover.ctrl="showToolTip"
|
@mouseover.ctrl="showToolTip"
|
||||||
@mouseleave="hideToolTip"
|
@mouseleave="hideToolTip"
|
||||||
|
@ -222,6 +222,7 @@
|
|||||||
ref="contentTable"
|
ref="contentTable"
|
||||||
class="c-table__body c-telemetry-table__body js-telemetry-table__content"
|
class="c-table__body c-telemetry-table__body js-telemetry-table__content"
|
||||||
:style="{ height: totalHeight + 'px' }"
|
:style="{ height: totalHeight + 'px' }"
|
||||||
|
:aria-label="`${table.domainObject.name} table content`"
|
||||||
>
|
>
|
||||||
<tbody>
|
<tbody>
|
||||||
<telemetry-table-row
|
<telemetry-table-row
|
||||||
|
@ -33,6 +33,7 @@ import StyleRuleManager from '@/plugins/condition/StyleRuleManager';
|
|||||||
import { STYLE_CONSTANTS } from '@/plugins/condition/utils/constants';
|
import { STYLE_CONSTANTS } from '@/plugins/condition/utils/constants';
|
||||||
import stalenessMixin from '@/ui/mixins/staleness-mixin';
|
import stalenessMixin from '@/ui/mixins/staleness-mixin';
|
||||||
|
|
||||||
|
import objectUtils from '../../api/objects/object-utils.js';
|
||||||
import VisibilityObserver from '../../utils/visibility/VisibilityObserver.js';
|
import VisibilityObserver from '../../utils/visibility/VisibilityObserver.js';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
@ -184,6 +185,7 @@ export default {
|
|||||||
this.triggerUnsubscribeFromStaleness(this.domainObject);
|
this.triggerUnsubscribeFromStaleness(this.domainObject);
|
||||||
|
|
||||||
this.openmct.objectViews.off('clearData', this.clearData);
|
this.openmct.objectViews.off('clearData', this.clearData);
|
||||||
|
this.openmct.objectViews.off('reload', this.reload);
|
||||||
if (this.contextActionEvent) {
|
if (this.contextActionEvent) {
|
||||||
this.openmct.objectViews.off(this.contextActionEvent, this.performContextAction);
|
this.openmct.objectViews.off(this.contextActionEvent, this.performContextAction);
|
||||||
}
|
}
|
||||||
@ -218,6 +220,13 @@ export default {
|
|||||||
this.clear();
|
this.clear();
|
||||||
this.updateView(true);
|
this.updateView(true);
|
||||||
},
|
},
|
||||||
|
reload(domainObjectToReload) {
|
||||||
|
if (objectUtils.equals(domainObjectToReload, this.domainObject)) {
|
||||||
|
this.updateView(true);
|
||||||
|
this.initObjectStyles();
|
||||||
|
this.triggerStalenessSubscribe(this.domainObject);
|
||||||
|
}
|
||||||
|
},
|
||||||
triggerStalenessSubscribe(object) {
|
triggerStalenessSubscribe(object) {
|
||||||
if (this.openmct.telemetry.isTelemetryObject(object)) {
|
if (this.openmct.telemetry.isTelemetryObject(object)) {
|
||||||
this.subscribeToStaleness(object);
|
this.subscribeToStaleness(object);
|
||||||
@ -316,6 +325,7 @@ export default {
|
|||||||
this.domainObject.identifier
|
this.domainObject.identifier
|
||||||
)}`;
|
)}`;
|
||||||
this.openmct.objectViews.on('clearData', this.clearData);
|
this.openmct.objectViews.on('clearData', this.clearData);
|
||||||
|
this.openmct.objectViews.on('reload', this.reload);
|
||||||
this.openmct.objectViews.on(this.contextActionEvent, this.performContextAction);
|
this.openmct.objectViews.on(this.contextActionEvent, this.performContextAction);
|
||||||
|
|
||||||
this.$nextTick(() => {
|
this.$nextTick(() => {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user