-
Notifications
You must be signed in to change notification settings - Fork 8.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into ui-polish-qanotes
- Loading branch information
Showing
36 changed files
with
926 additions
and
305 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 10 additions & 0 deletions
10
.../kbn-shared-ux-components/src/solution_avatar/__snapshots__/solution_avatar.test.tsx.snap
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
1 change: 1 addition & 0 deletions
1
packages/kbn-shared-ux-components/src/solution_avatar/assets/texture.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 9 additions & 0 deletions
9
packages/kbn-shared-ux-components/src/solution_avatar/index.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
/* | ||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one | ||
* or more contributor license agreements. Licensed under the Elastic License | ||
* 2.0 and the Server Side Public License, v 1; you may not use this file except | ||
* in compliance with, at your election, the Elastic License 2.0 or the Server | ||
* Side Public License, v 1. | ||
*/ | ||
|
||
export { KibanaSolutionAvatar } from './solution_avatar'; |
14 changes: 14 additions & 0 deletions
14
packages/kbn-shared-ux-components/src/solution_avatar/solution_avatar.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
.kbnSolutionAvatar { | ||
@include euiBottomShadowSmall; | ||
|
||
&--xxl { | ||
@include euiBottomShadowMedium; | ||
@include size(100px); | ||
line-height: 100px; | ||
border-radius: 100px; | ||
display: inline-block; | ||
background: $euiColorEmptyShade url('/assets/texture.svg') no-repeat; | ||
background-size: cover, 125%; | ||
text-align: center; | ||
} | ||
} |
33 changes: 33 additions & 0 deletions
33
packages/kbn-shared-ux-components/src/solution_avatar/solution_avatar.stories.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
/* | ||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one | ||
* or more contributor license agreements. Licensed under the Elastic License | ||
* 2.0 and the Server Side Public License, v 1; you may not use this file except | ||
* in compliance with, at your election, the Elastic License 2.0 or the Server | ||
* Side Public License, v 1. | ||
*/ | ||
|
||
import React from 'react'; | ||
import { KibanaSolutionAvatar, KibanaSolutionAvatarProps } from './solution_avatar'; | ||
|
||
export default { | ||
title: 'Solution Avatar', | ||
description: 'A wrapper around EuiAvatar, specifically to stylize Elastic Solutions', | ||
}; | ||
|
||
type Params = Pick<KibanaSolutionAvatarProps, 'size' | 'name'>; | ||
|
||
export const PureComponent = (params: Params) => { | ||
return <KibanaSolutionAvatar {...params} />; | ||
}; | ||
|
||
PureComponent.argTypes = { | ||
name: { | ||
control: 'text', | ||
defaultValue: 'Kibana', | ||
}, | ||
size: { | ||
control: 'radio', | ||
options: ['s', 'm', 'l', 'xl', 'xxl'], | ||
defaultValue: 'xxl', | ||
}, | ||
}; |
18 changes: 18 additions & 0 deletions
18
packages/kbn-shared-ux-components/src/solution_avatar/solution_avatar.test.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
/* | ||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one | ||
* or more contributor license agreements. Licensed under the Elastic License | ||
* 2.0 and the Server Side Public License, v 1; you may not use this file except | ||
* in compliance with, at your election, the Elastic License 2.0 or the Server | ||
* Side Public License, v 1. | ||
*/ | ||
|
||
import React from 'react'; | ||
import { shallow } from 'enzyme'; | ||
import { KibanaSolutionAvatar } from './solution_avatar'; | ||
|
||
describe('KibanaSolutionAvatar', () => { | ||
test('renders', () => { | ||
const component = shallow(<KibanaSolutionAvatar name="Solution" iconType="logoElastic" />); | ||
expect(component).toMatchSnapshot(); | ||
}); | ||
}); |
44 changes: 44 additions & 0 deletions
44
packages/kbn-shared-ux-components/src/solution_avatar/solution_avatar.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
/* | ||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one | ||
* or more contributor license agreements. Licensed under the Elastic License | ||
* 2.0 and the Server Side Public License, v 1; you may not use this file except | ||
* in compliance with, at your election, the Elastic License 2.0 or the Server | ||
* Side Public License, v 1. | ||
*/ | ||
import './solution_avatar.scss'; | ||
|
||
import React from 'react'; | ||
import classNames from 'classnames'; | ||
|
||
import { DistributiveOmit, EuiAvatar, EuiAvatarProps } from '@elastic/eui'; | ||
|
||
export type KibanaSolutionAvatarProps = DistributiveOmit<EuiAvatarProps, 'size'> & { | ||
/** | ||
* Any EuiAvatar size available, or `xxl` for custom large, brand-focused version | ||
*/ | ||
size?: EuiAvatarProps['size'] | 'xxl'; | ||
}; | ||
|
||
/** | ||
* Applies extra styling to a typical EuiAvatar; | ||
* The `name` value will be appended to 'logo' to configure the `iconType` unless `iconType` is provided. | ||
*/ | ||
export const KibanaSolutionAvatar = ({ className, size, ...rest }: KibanaSolutionAvatarProps) => { | ||
return ( | ||
// @ts-ignore Complains about ExclusiveUnion between `iconSize` and `iconType`, but works fine | ||
<EuiAvatar | ||
className={classNames( | ||
'kbnSolutionAvatar', | ||
{ | ||
[`kbnSolutionAvatar--${size}`]: size, | ||
}, | ||
className | ||
)} | ||
color="plain" | ||
size={size === 'xxl' ? 'xl' : size} | ||
iconSize={size} | ||
iconType={`logo${rest.name}`} | ||
{...rest} | ||
/> | ||
); | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
/* | ||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one | ||
* or more contributor license agreements. Licensed under the Elastic License | ||
* 2.0 and the Server Side Public License, v 1; you may not use this file except | ||
* in compliance with, at your election, the Elastic License 2.0 or the Server | ||
* Side Public License, v 1. | ||
*/ | ||
|
||
import { Observable } from 'rxjs'; | ||
|
||
import { type PluginName } from '../plugins'; | ||
import { type ServiceStatus } from './types'; | ||
|
||
import { type Deps, PluginsStatusService as BasePluginsStatusService } from './plugins_status'; | ||
|
||
export class PluginsStatusService extends BasePluginsStatusService { | ||
private all$?: Observable<Record<PluginName, ServiceStatus>>; | ||
private dependenciesStatuses$: Record<PluginName, Observable<Record<PluginName, ServiceStatus>>>; | ||
private derivedStatuses$: Record<PluginName, Observable<ServiceStatus>>; | ||
|
||
constructor(deps: Deps) { | ||
super(deps); | ||
this.dependenciesStatuses$ = {}; | ||
this.derivedStatuses$ = {}; | ||
} | ||
|
||
public getAll$(): Observable<Record<PluginName, ServiceStatus>> { | ||
if (!this.all$) { | ||
this.all$ = super.getAll$(); | ||
} | ||
|
||
return this.all$; | ||
} | ||
|
||
public getDependenciesStatus$(plugin: PluginName): Observable<Record<PluginName, ServiceStatus>> { | ||
if (!this.dependenciesStatuses$[plugin]) { | ||
this.dependenciesStatuses$[plugin] = super.getDependenciesStatus$(plugin); | ||
} | ||
|
||
return this.dependenciesStatuses$[plugin]; | ||
} | ||
|
||
public getDerivedStatus$(plugin: PluginName): Observable<ServiceStatus> { | ||
if (!this.derivedStatuses$[plugin]) { | ||
this.derivedStatuses$[plugin] = super.getDerivedStatus$(plugin); | ||
} | ||
|
||
return this.derivedStatuses$[plugin]; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.