mirror of https://github.com/apache/druid.git
Web console: adding Slack channel integration (#8182)
* adding slack channel integration * update snapshots
This commit is contained in:
parent
8bd0f8c2ac
commit
0b3ede193e
|
@ -254,6 +254,16 @@ exports[`header bar matches snapshot 1`] = `
|
||||||
target="_blank"
|
target="_blank"
|
||||||
text="User group"
|
text="User group"
|
||||||
/>
|
/>
|
||||||
|
<Blueprint3.MenuItem
|
||||||
|
disabled={false}
|
||||||
|
href="https://druid.apache.org/community/join-slack"
|
||||||
|
icon="chat"
|
||||||
|
multiline={false}
|
||||||
|
popoverProps={Object {}}
|
||||||
|
shouldDismissPopover={true}
|
||||||
|
target="_blank"
|
||||||
|
text="ASF Slack channel"
|
||||||
|
/>
|
||||||
<Blueprint3.MenuItem
|
<Blueprint3.MenuItem
|
||||||
disabled={false}
|
disabled={false}
|
||||||
href="https://github.com/apache/druid"
|
href="https://github.com/apache/druid"
|
||||||
|
|
|
@ -36,6 +36,7 @@ import { AboutDialog } from '../../dialogs/about-dialog/about-dialog';
|
||||||
import { CoordinatorDynamicConfigDialog } from '../../dialogs/coordinator-dynamic-config-dialog/coordinator-dynamic-config-dialog';
|
import { CoordinatorDynamicConfigDialog } from '../../dialogs/coordinator-dynamic-config-dialog/coordinator-dynamic-config-dialog';
|
||||||
import { OverlordDynamicConfigDialog } from '../../dialogs/overlord-dynamic-config-dialog/overlord-dynamic-config-dialog';
|
import { OverlordDynamicConfigDialog } from '../../dialogs/overlord-dynamic-config-dialog/overlord-dynamic-config-dialog';
|
||||||
import {
|
import {
|
||||||
|
DRUID_ASF_SLACK,
|
||||||
DRUID_DOCS,
|
DRUID_DOCS,
|
||||||
DRUID_GITHUB,
|
DRUID_GITHUB,
|
||||||
DRUID_USER_GROUP,
|
DRUID_USER_GROUP,
|
||||||
|
@ -163,6 +164,12 @@ export class HeaderBar extends React.PureComponent<HeaderBarProps, HeaderBarStat
|
||||||
/>
|
/>
|
||||||
<MenuItem icon={IconNames.TH} text="Docs" href={DRUID_DOCS} target="_blank" />
|
<MenuItem icon={IconNames.TH} text="Docs" href={DRUID_DOCS} target="_blank" />
|
||||||
<MenuItem icon={IconNames.USER} text="User group" href={DRUID_USER_GROUP} target="_blank" />
|
<MenuItem icon={IconNames.USER} text="User group" href={DRUID_USER_GROUP} target="_blank" />
|
||||||
|
<MenuItem
|
||||||
|
icon={IconNames.CHAT}
|
||||||
|
text="ASF Slack channel"
|
||||||
|
href={DRUID_ASF_SLACK}
|
||||||
|
target="_blank"
|
||||||
|
/>
|
||||||
<MenuItem icon={IconNames.GIT_BRANCH} text="GitHub" href={DRUID_GITHUB} target="_blank" />
|
<MenuItem icon={IconNames.GIT_BRANCH} text="GitHub" href={DRUID_GITHUB} target="_blank" />
|
||||||
</Menu>
|
</Menu>
|
||||||
);
|
);
|
||||||
|
|
|
@ -26,5 +26,6 @@ export const DRUID_DOCS_SQL = 'https://druid.apache.org/docs/latest/querying/sql
|
||||||
export const DRUID_DOCS_RUNE = 'https://druid.apache.org/docs/latest/querying/querying.html';
|
export const DRUID_DOCS_RUNE = 'https://druid.apache.org/docs/latest/querying/querying.html';
|
||||||
export const DRUID_COMMUNITY = 'https://druid.apache.org/community/';
|
export const DRUID_COMMUNITY = 'https://druid.apache.org/community/';
|
||||||
export const DRUID_USER_GROUP = 'https://groups.google.com/forum/#!forum/druid-user';
|
export const DRUID_USER_GROUP = 'https://groups.google.com/forum/#!forum/druid-user';
|
||||||
|
export const DRUID_ASF_SLACK = 'https://druid.apache.org/community/join-slack';
|
||||||
export const DRUID_DEVELOPER_GROUP = 'https://lists.apache.org/list.html?dev@druid.apache.org';
|
export const DRUID_DEVELOPER_GROUP = 'https://lists.apache.org/list.html?dev@druid.apache.org';
|
||||||
export const DRUID_DOCS_API = 'https://druid.apache.org/docs/latest/operations/api-reference.html';
|
export const DRUID_DOCS_API = 'https://druid.apache.org/docs/latest/operations/api-reference.html';
|
||||||
|
|
Loading…
Reference in New Issue