diff --git a/ui/app/adapters/replication-mode.js b/ui/app/adapters/replication-mode.js new file mode 100644 index 000000000000..baa09570f821 --- /dev/null +++ b/ui/app/adapters/replication-mode.js @@ -0,0 +1,14 @@ +import ApplicationAdapter from './application'; + +export default ApplicationAdapter.extend({ + getStatusUrl(mode) { + return this.buildURL() + `/replication/${mode}/status`; + }, + + fetchStatus(mode) { + let url = this.getStatusUrl(mode); + return this.ajax(url, 'GET', { unauthenticated: true }).then(resp => { + return resp.data; + }); + }, +}); diff --git a/ui/app/models/replication-mode.js b/ui/app/models/replication-mode.js new file mode 100644 index 000000000000..df79d46ac94f --- /dev/null +++ b/ui/app/models/replication-mode.js @@ -0,0 +1,38 @@ +import DS from 'ember-data'; +const { attr } = DS; + +/* sample response + +{ + "request_id": "d81bba81-e8a1-0ee9-240e-a77d36e3e08f", + "lease_id": "", + "renewable": false, + "lease_duration": 0, + "data": { + "cluster_id": "ab7d4191-d1a3-b4d6-6297-5a41af6154ae", + "known_secondaries": [ + "test" + ], + "last_performance_wal": 72, + "last_reindex_epoch": "1588281113", + "last_wal": 73, + "merkle_root": "c8d258d376f01d98156f74e8d8f82ea2aca8dc4a", + "mode": "primary", + "primary_cluster_addr": "", + "reindex_building_progress": 26838, + "reindex_building_total": 305443, + "reindex_in_progress": true, + "reindex_stage": "building", + "state": "running" + }, + "wrap_info": null, + "warnings": null, + "auth": null +} + + +*/ + +export default DS.Model.extend({ + status: attr('object'), +}); diff --git a/ui/app/serializers/replication-mode.js b/ui/app/serializers/replication-mode.js new file mode 100644 index 000000000000..2e6e9210bf9f --- /dev/null +++ b/ui/app/serializers/replication-mode.js @@ -0,0 +1,12 @@ +import ApplicationSerializer from './application'; + +export default ApplicationSerializer.extend({ + normalizeResponse(store, primaryModelClass, payload, id, requestType) { + const normalizedPayload = { + id: payload.id, + status: payload.data, + }; + + return this._super(store, primaryModelClass, normalizedPayload, id, requestType); + }, +}); diff --git a/ui/lib/core/addon/components/replication-dashboard.js b/ui/lib/core/addon/components/replication-dashboard.js index c293a7befc36..ba7948541d8a 100644 --- a/ui/lib/core/addon/components/replication-dashboard.js +++ b/ui/lib/core/addon/components/replication-dashboard.js @@ -1,6 +1,7 @@ import Component from '@ember/component'; import { computed } from '@ember/object'; import { clusterStates } from 'core/helpers/cluster-states'; +import { capitalize } from '@ember/string'; import layout from '../templates/components/replication-dashboard'; export default Component.extend({ @@ -8,14 +9,34 @@ export default Component.extend({ data: null, replicationDetails: null, isSecondary: null, - dr: null, isSyncing: computed('replicationDetails', 'isSecondary', function() { const { state } = this.replicationDetails; const isSecondary = this.isSecondary; return isSecondary && state && clusterStates([state]).isSyncing; }), - isReindexing: computed('data', function() { - // TODO: make this a real value - return false; + isReindexing: computed('replicationDetails', function() { + const { replicationDetails } = this; + return !!replicationDetails.reindex_in_progress; + }), + reindexingStage: computed('replicationDetails', function() { + const { replicationDetails } = this; + const stage = replicationDetails.reindex_stage; + // specify the stage if we have one + if (stage) { + return `: ${capitalize(stage)}`; + } + return ''; + }), + reindexingProgress: computed('replicationDetails', function() { + // TODO: use this value to display a progress bar + const { reindex_building_progress, reindex_building_total } = this.replicationDetails; + let progress = 0; + + if (reindex_building_progress && reindex_building_total) { + // convert progress to a percentage + progress = (reindex_building_progress / reindex_building_total) * 100; + } + + return progress; }), }); diff --git a/ui/lib/core/addon/components/replication-page.js b/ui/lib/core/addon/components/replication-page.js index 3ad074e43139..ad814bf81026 100644 --- a/ui/lib/core/addon/components/replication-page.js +++ b/ui/lib/core/addon/components/replication-page.js @@ -1,6 +1,8 @@ import Component from '@ember/component'; import { computed } from '@ember/object'; import layout from '../templates/components/replication-page'; +import { inject as service } from '@ember/service'; +import { task } from 'ember-concurrency'; const MODE = { dr: 'Disaster Recovery', @@ -9,6 +11,26 @@ const MODE = { export default Component.extend({ layout, + store: service(), + reindexingDetails: null, + + didReceiveAttrs() { + this._super(arguments); + this.getReplicationModeStatus.perform(); + }, + getReplicationModeStatus: task(function*() { + let resp; + const { replicationMode } = this.model; + try { + resp = yield this.get('store') + .adapterFor('replication-mode') + .fetchStatus(replicationMode); + } catch (e) { + console.log(e); + } + this.set('reindexingDetails', resp); + }), + replicationMode: computed('model.{replicationMode}', function() { // dr or performance 🤯 let mode = this.model.replicationMode; diff --git a/ui/lib/core/addon/mixins/replication-actions.js b/ui/lib/core/addon/mixins/replication-actions.js index ac33fee488f5..24333d05a16a 100644 --- a/ui/lib/core/addon/mixins/replication-actions.js +++ b/ui/lib/core/addon/mixins/replication-actions.js @@ -28,7 +28,6 @@ export default Mixin.create({ }, {}); delete data.replicationMode; } - return yield this.save.perform(action, replicationMode, clusterMode, data); }), diff --git a/ui/lib/core/addon/templates/components/replication-dashboard.hbs b/ui/lib/core/addon/templates/components/replication-dashboard.hbs index b9be73ecfb2a..77a415c897b3 100644 --- a/ui/lib/core/addon/templates/components/replication-dashboard.hbs +++ b/ui/lib/core/addon/templates/components/replication-dashboard.hbs @@ -13,10 +13,9 @@ {{/if}} {{/if}} - {{!-- TODO check for actual reindexing status --}} {{#if isReindexing}} diff --git a/ui/lib/core/addon/templates/components/replication-page.hbs b/ui/lib/core/addon/templates/components/replication-page.hbs index 643b78327740..25ad66133275 100644 --- a/ui/lib/core/addon/templates/components/replication-page.hbs +++ b/ui/lib/core/addon/templates/components/replication-page.hbs @@ -1,9 +1,18 @@
-{{yield (hash - header=(component 'replication-header' data=model title=replicationMode isSecondary=isSecondary) - toggle=(component 'replication-toggle') - dashboard=(component 'replication-dashboard' data=model isSecondary=isSecondary replicationDetails=replicationDetails clusterMode=clusterMode) - isDisabled=isDisabled - message=message -)}} + {{yield + (hash + header=(component 'replication-header' data=model title=replicationMode isSecondary=isSecondary) + toggle=(component 'replication-toggle') + dashboard=(component + 'replication-dashboard' + data=model + isSecondary=isSecondary + replicationDetails=replicationDetails + clusterMode=clusterMode + reindexingDetails=reindexingDetails + ) + isDisabled=isDisabled + message=message + ) + }}
diff --git a/ui/lib/replication/addon/templates/components/replication-summary.hbs b/ui/lib/replication/addon/templates/components/replication-summary.hbs index 2fcc35c167e4..1dbba5434dbb 100644 --- a/ui/lib/replication/addon/templates/components/replication-summary.hbs +++ b/ui/lib/replication/addon/templates/components/replication-summary.hbs @@ -329,9 +329,9 @@ {{#if (eq replicationAttrs.mode 'initializing')}} The cluster is initializing replication. This may take some time. {{else}} +

{{cluster.replicationModeStatus.cluster_id}}

-