mirror of
https://github.com/status-im/consul.git
synced 2025-03-03 06:40:45 +00:00
* Remove unused StatsCard component * Create Card and Stats contextual components with styling * Send endpoint, item, and protocol to Stats as props * WIP basic plumbing for metrics in Ember * WIP metrics data source now works for different protocols and produces reasonable mock responses * WIP sparkline component * Mostly working metrics and graphs in topology * Fix date in tooltip to actually be correct * Clean up console.log * Add loading frame and create a style sheet for Stats * Various polish fixes: - Loading state for graph - Added fake latency cookie value to test loading - If metrics provider has no series/stats for the service show something that doesn't look broken - Graph hover works right to the edge now - Stats boxes now wrap so they are either shown or not as will fit not cut off - Graph resizes when browser window size changes - Some tweaks to number formats and stat metrics to make them more compact/useful * Thread Protocol through topology model correctly * Rebuild assetfs * Fix failing tests and remove stats-card now it's changed and become different * Fix merge conflict * Update api doublt * more merge fixes * Add data-permission and id attr to Card * Run JS linter * Move things around so the tests run with everything available * Get tests passing: 1. Remove fakeLatency setTimeout (will be replaced with CONSUL_LATENCY in mocks) 2. Make sure any event handlers are removed * Make sure the Consul/scripts are available before the app * Make sure interval gets set if there is no cookie value * Upgrade mocks so we can use CONSUL_LATENCY * Fix handling of no series values from Prometheus * Update assetfs and fix a comment * Rebase and rebuild assetfs; fix tcp metric series units to be bits not bytes * Rebuild assetfs * Hide stats when provider is not configured Co-authored-by: kenia <keniavalladarez@gmail.com> Co-authored-by: John Cowen <jcowen@hashicorp.com>
73 lines
2.4 KiB
SCSS
73 lines
2.4 KiB
SCSS
@import './base/components/index';
|
|
|
|
/**/
|
|
|
|
@import './components/card/index';
|
|
@import './components/list-row/index';
|
|
@import './components/expanded-single-select/index';
|
|
|
|
@import './components/icon-definition';
|
|
@import './components/form-elements';
|
|
@import './components/breadcrumbs';
|
|
@import './components/anchors';
|
|
@import './components/progress';
|
|
@import './components/buttons';
|
|
@import './components/composite-row';
|
|
@import './components/secret-button';
|
|
@import './components/tabs';
|
|
@import './components/pill';
|
|
@import './components/table';
|
|
@import './components/tooltip';
|
|
@import './components/tag-list';
|
|
@import './components/healthcheck-output';
|
|
@import './components/freetext-filter';
|
|
@import './components/filter-bar';
|
|
@import './components/tomography-graph';
|
|
@import './components/flash-message';
|
|
@import './components/code-editor';
|
|
@import './components/confirmation-dialog';
|
|
@import './components/modal-dialog';
|
|
@import './components/auth-form';
|
|
@import './components/auth-modal';
|
|
@import './components/notice';
|
|
@import './components/oidc-select';
|
|
@import './components/discovery-chain';
|
|
@import './components/empty-state';
|
|
@import './components/tabular-details';
|
|
@import './components/tabular-collection';
|
|
@import './components/list-collection';
|
|
@import './components/popover-select';
|
|
@import './components/tooltip-panel';
|
|
@import './components/menu-panel';
|
|
@import './components/more-popover-menu';
|
|
@import './components/confirmation-alert';
|
|
@import './components/definition-table';
|
|
@import './components/radio-card';
|
|
|
|
/**/
|
|
|
|
@import './components/brand-loader';
|
|
@import './components/loader';
|
|
@import './components/main-header-horizontal';
|
|
@import './components/main-nav-horizontal';
|
|
@import './components/app-view';
|
|
@import './components/footer';
|
|
|
|
/**/
|
|
|
|
/**
|
|
* Migration: We are migrating our consul-* styles to use colocated styles
|
|
* consul-* component styles should be moved or added under here
|
|
* when convienient
|
|
**/
|
|
|
|
@import 'consul-ui/components/consul/intention/list';
|
|
@import 'consul-ui/components/consul-intention-form/fieldsets';
|
|
@import 'consul-ui/components/consul-intention-permission-list';
|
|
@import 'consul-ui/components/consul-intention-permission-form';
|
|
@import 'consul-ui/components/consul-intention-permission-header-list';
|
|
@import 'consul-ui/components/role-selector';
|
|
@import 'consul-ui/components/topology-metrics';
|
|
@import 'consul-ui/components/topology-metrics/series';
|
|
@import 'consul-ui/components/topology-metrics/stats';
|