@ant-design/icons#RiseOutlined TypeScript Examples
The following examples show how to use
@ant-design/icons#RiseOutlined.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: insightCommandLogic.ts From posthog-foss with MIT License | 5 votes |
insightCommandLogic = kea<insightCommandLogicType>({
props: {} as InsightLogicProps,
key: keyForInsightLogicProps('new'),
path: (key) => ['scenes', 'insights', 'insightCommandLogic', key],
connect: (props: InsightLogicProps) => [
commandPaletteLogic,
compareFilterLogic(props),
insightDateFilterLogic(props),
],
events: ({ props }) => ({
afterMount: () => {
// only load commands if this is the main insight on the main insight scene
if (!props.syncWithUrl) {
return
}
const funnelCommands: Command[] = [
{
key: 'insight-graph',
resolver: [
{
icon: RiseOutlined,
display: 'Toggle "Compare Previous" on Graph',
executor: () => {
compareFilterLogic(props).actions.toggleCompare()
},
},
...Object.entries(dateMapping).map(([key, { values }]) => ({
icon: RiseOutlined,
display: `Set Time Range to ${key}`,
executor: () => {
insightDateFilterLogic(props).actions.setDates(values[0], values[1])
},
})),
],
scope: INSIGHT_COMMAND_SCOPE,
},
]
for (const command of funnelCommands) {
commandPaletteLogic.actions.registerCommand(command)
}
},
beforeUnmount: () => {
if (props.syncWithUrl) {
commandPaletteLogic.actions.deregisterScope(INSIGHT_COMMAND_SCOPE)
}
},
}),
})
Example #2
Source File: commandPaletteLogic.ts From posthog-foss with MIT License | 4 votes |
commandPaletteLogic = kea<
commandPaletteLogicType<
Command,
CommandFlow,
CommandRegistrations,
CommandResult,
CommandResultDisplayable,
RegExpCommandPairs
>
>({
path: ['lib', 'components', 'CommandPalette', 'commandPaletteLogic'],
connect: {
actions: [personalAPIKeysLogic, ['createKey']],
values: [teamLogic, ['currentTeam'], userLogic, ['user']],
logic: [preflightLogic], // used in afterMount, which does not auto-connect
},
actions: {
hidePalette: true,
showPalette: true,
togglePalette: true,
setInput: (input: string) => ({ input }),
onArrowUp: true,
onArrowDown: (maxIndex: number) => ({ maxIndex }),
onMouseEnterResult: (index: number) => ({ index }),
onMouseLeaveResult: true,
executeResult: (result: CommandResult) => ({ result }),
activateFlow: (flow: CommandFlow | null) => ({ flow }),
backFlow: true,
registerCommand: (command: Command) => ({ command }),
deregisterCommand: (commandKey: string) => ({ commandKey }),
setCustomCommand: (commandKey: string) => ({ commandKey }),
deregisterScope: (scope: string) => ({ scope }),
},
reducers: {
isPaletteShown: [
false,
{
hidePalette: () => false,
showPalette: () => true,
togglePalette: (previousState) => !previousState,
},
],
keyboardResultIndex: [
0,
{
setInput: () => 0,
executeResult: () => 0,
activateFlow: () => 0,
backFlow: () => 0,
onArrowUp: (previousIndex) => (previousIndex > 0 ? previousIndex - 1 : 0),
onArrowDown: (previousIndex, { maxIndex }) => (previousIndex < maxIndex ? previousIndex + 1 : maxIndex),
},
],
hoverResultIndex: [
null as number | null,
{
activateFlow: () => null,
backFlow: () => null,
onMouseEnterResult: (_, { index }) => index,
onMouseLeaveResult: () => null,
onArrowUp: () => null,
onArrowDown: () => null,
},
],
input: [
'',
{
setInput: (_, { input }) => input,
activateFlow: () => '',
backFlow: () => '',
executeResult: () => '',
},
],
activeFlow: [
null as CommandFlow | null,
{
activateFlow: (currentFlow, { flow }) =>
flow ? { ...flow, scope: flow.scope ?? currentFlow?.scope, previousFlow: currentFlow } : null,
backFlow: (currentFlow) => currentFlow?.previousFlow ?? null,
},
],
rawCommandRegistrations: [
{} as CommandRegistrations,
{
registerCommand: (commands, { command }) => {
return { ...commands, [command.key]: command }
},
deregisterCommand: (commands, { commandKey }) => {
const { [commandKey]: _, ...cleanedCommands } = commands // eslint-disable-line
return cleanedCommands
},
},
],
},
listeners: ({ actions, values }) => ({
showPalette: () => {
posthog.capture('palette shown', { isMobile: isMobile() })
},
togglePalette: () => {
if (values.isPaletteShown) {
posthog.capture('palette shown', { isMobile: isMobile() })
}
},
executeResult: ({ result }: { result: CommandResult }) => {
if (result.executor === true) {
actions.activateFlow(null)
actions.hidePalette()
} else {
const possibleFlow = result.executor?.() || null
actions.activateFlow(possibleFlow)
if (!possibleFlow) {
actions.hidePalette()
}
}
// Capture command execution, without useless data
// eslint-disable-next-line @typescript-eslint/no-unused-vars
const { icon, index, ...cleanedResult }: Record<string, any> = result
// eslint-disable-next-line @typescript-eslint/no-unused-vars
const { resolver, ...cleanedCommand } = cleanedResult.source
cleanedResult.source = cleanedCommand
cleanedResult.isMobile = isMobile()
posthog.capture('palette command executed', cleanedResult)
},
deregisterScope: ({ scope }) => {
for (const command of Object.values(values.commandRegistrations)) {
if (command.scope === scope) {
actions.deregisterCommand(command.key)
}
}
},
setInput: async ({ input }, breakpoint) => {
await breakpoint(300)
if (input.length > 8) {
const response = await api.get('api/person/?key_identifier=' + encodeURIComponent(input))
const person = response.results[0]
if (person) {
actions.registerCommand({
key: `person-${person.distinct_ids[0]}`,
resolver: [
{
icon: UserOutlined,
display: `View person ${input}`,
executor: () => {
const { push } = router.actions
push(urls.person(person.distinct_ids[0]))
},
},
],
scope: GLOBAL_COMMAND_SCOPE,
})
}
}
},
}),
selectors: {
isSqueak: [
(selectors) => [selectors.input],
(input: string) => {
return input.trim().toLowerCase() === 'squeak'
},
],
activeResultIndex: [
(selectors) => [selectors.keyboardResultIndex, selectors.hoverResultIndex],
(keyboardResultIndex: number, hoverResultIndex: number | null) => {
return hoverResultIndex ?? keyboardResultIndex
},
],
commandRegistrations: [
(selectors) => [
selectors.rawCommandRegistrations,
dashboardsModel.selectors.nameSortedDashboards,
teamLogic.selectors.currentTeam,
],
(rawCommandRegistrations: CommandRegistrations, dashboards: DashboardType[]): CommandRegistrations => ({
...rawCommandRegistrations,
custom_dashboards: {
key: 'custom_dashboards',
resolver: dashboards.map((dashboard: DashboardType) => ({
key: `dashboard_${dashboard.id}`,
icon: LineChartOutlined,
display: `Go to Dashboard: ${dashboard.name}`,
executor: () => {
const { push } = router.actions
push(urls.dashboard(dashboard.id))
},
})),
scope: GLOBAL_COMMAND_SCOPE,
},
}),
],
regexpCommandPairs: [
(selectors) => [selectors.commandRegistrations],
(commandRegistrations: CommandRegistrations) => {
const array: RegExpCommandPairs = []
for (const command of Object.values(commandRegistrations)) {
if (command.prefixes) {
array.push([new RegExp(`^\\s*(${command.prefixes.join('|')})(?:\\s+(.*)|$)`, 'i'), command])
} else {
array.push([null, command])
}
}
return array
},
],
commandSearchResults: [
(selectors) => [
selectors.isPaletteShown,
selectors.regexpCommandPairs,
selectors.input,
selectors.activeFlow,
selectors.isSqueak,
],
(
isPaletteShown: boolean,
regexpCommandPairs: RegExpCommandPairs,
argument: string,
activeFlow: CommandFlow | null,
isSqueak: boolean
) => {
if (!isPaletteShown || isSqueak) {
return []
}
if (activeFlow) {
return resolveCommand(activeFlow, argument)
}
let directResults: CommandResult[] = []
let prefixedResults: CommandResult[] = []
for (const [regexp, command] of regexpCommandPairs) {
if (regexp) {
const match = argument.match(regexp)
if (match && match[1]) {
prefixedResults = [...prefixedResults, ...resolveCommand(command, match[2], match[1])]
}
}
directResults = [...directResults, ...resolveCommand(command, argument)]
}
const allResults = directResults.concat(prefixedResults)
let fusableResults: CommandResult[] = []
let guaranteedResults: CommandResult[] = []
for (const result of allResults) {
if (result.guarantee) {
guaranteedResults.push(result)
} else {
fusableResults.push(result)
}
}
fusableResults = uniqueBy(fusableResults, (result) => result.display)
guaranteedResults = uniqueBy(guaranteedResults, (result) => result.display)
const fusedResults = argument
? new Fuse(fusableResults, {
keys: ['display', 'synonyms'],
})
.search(argument)
.slice(0, RESULTS_MAX)
.map((result) => result.item)
: sample(fusableResults, RESULTS_MAX - guaranteedResults.length)
return guaranteedResults.concat(fusedResults)
},
],
commandSearchResultsGrouped: [
(selectors) => [selectors.commandSearchResults, selectors.activeFlow],
(commandSearchResults: CommandResult[], activeFlow: CommandFlow | null) => {
const resultsGrouped: {
[scope: string]: CommandResult[]
} = {}
if (activeFlow) {
resultsGrouped[activeFlow.scope ?? '?'] = []
}
for (const result of commandSearchResults) {
const scope: string = result.source.scope ?? '?'
if (!(scope in resultsGrouped)) {
resultsGrouped[scope] = []
} // Ensure there's an array to push to
resultsGrouped[scope].push({ ...result })
}
let rollingGroupIndex = 0
let rollingResultIndex = 0
const resultsGroupedInOrder: [string, CommandResultDisplayable[]][] = []
for (const [group, results] of Object.entries(resultsGrouped)) {
resultsGroupedInOrder.push([group, []])
for (const result of results) {
resultsGroupedInOrder[rollingGroupIndex][1].push({ ...result, index: rollingResultIndex++ })
}
rollingGroupIndex++
}
return resultsGroupedInOrder
},
],
},
events: ({ actions }) => ({
afterMount: () => {
const { push } = router.actions
const goTo: Command = {
key: 'go-to',
scope: GLOBAL_COMMAND_SCOPE,
prefixes: ['open', 'visit'],
resolver: [
{
icon: FundOutlined,
display: 'Go to Dashboards',
executor: () => {
push(urls.dashboards())
},
},
{
icon: RiseOutlined,
display: 'Go to Insights',
executor: () => {
push(urls.savedInsights())
},
},
{
icon: RiseOutlined,
display: 'Go to Trends',
executor: () => {
// TODO: Don't reset insight on change
push(urls.insightNew({ insight: InsightType.TRENDS }))
},
},
{
icon: FunnelPlotOutlined,
display: 'Go to Funnels',
executor: () => {
// TODO: Don't reset insight on change
push(urls.insightNew({ insight: InsightType.FUNNELS }))
},
},
{
icon: GatewayOutlined,
display: 'Go to Retention',
executor: () => {
// TODO: Don't reset insight on change
push(urls.insightNew({ insight: InsightType.RETENTION }))
},
},
{
icon: InteractionOutlined,
display: 'Go to Paths',
executor: () => {
// TODO: Don't reset insight on change
push(urls.insightNew({ insight: InsightType.PATHS }))
},
},
{
icon: ContainerOutlined,
display: 'Go to Events',
executor: () => {
push(urls.events())
},
},
{
icon: AimOutlined,
display: 'Go to Actions',
executor: () => {
push(urls.actions())
},
},
{
icon: UserOutlined,
display: 'Go to Persons',
synonyms: ['people'],
executor: () => {
push(urls.persons())
},
},
{
icon: UsergroupAddOutlined,
display: 'Go to Cohorts',
executor: () => {
push(urls.cohorts())
},
},
{
icon: FlagOutlined,
display: 'Go to Feature Flags',
synonyms: ['feature flags', 'a/b tests'],
executor: () => {
push(urls.featureFlags())
},
},
{
icon: MessageOutlined,
display: 'Go to Annotations',
executor: () => {
push(urls.annotations())
},
},
{
icon: TeamOutlined,
display: 'Go to Team members',
synonyms: ['organization', 'members', 'invites', 'teammates'],
executor: () => {
push(urls.organizationSettings())
},
},
{
icon: ProjectOutlined,
display: 'Go to Project settings',
executor: () => {
push(urls.projectSettings())
},
},
{
icon: SmileOutlined,
display: 'Go to My settings',
synonyms: ['account'],
executor: () => {
push(urls.mySettings())
},
},
{
icon: ApiOutlined,
display: 'Go to Plugins',
synonyms: ['integrations'],
executor: () => {
push(urls.plugins())
},
},
{
icon: DatabaseOutlined,
display: 'Go to System status page',
synonyms: ['redis', 'celery', 'django', 'postgres', 'backend', 'service', 'online'],
executor: () => {
push(urls.systemStatus())
},
},
{
icon: PlusOutlined,
display: 'Create action',
executor: () => {
push(urls.createAction())
},
},
{
icon: LogoutOutlined,
display: 'Log out',
executor: () => {
userLogic.actions.logout()
},
},
],
}
const debugClickhouseQueries: Command = {
key: 'debug-clickhouse-queries',
scope: GLOBAL_COMMAND_SCOPE,
resolver:
userLogic.values.user?.is_staff ||
userLogic.values.user?.is_impersonated ||
preflightLogic.values.preflight?.is_debug ||
preflightLogic.values.preflight?.instance_preferences?.debug_queries
? {
icon: PlusOutlined,
display: 'Debug queries (ClickHouse)',
executor: () => {
debugCHQueries()
},
}
: [],
}
const calculator: Command = {
key: 'calculator',
scope: GLOBAL_COMMAND_SCOPE,
resolver: (argument) => {
// don't try evaluating if there's no argument or if it's a plain number already
if (!argument || !isNaN(+argument)) {
return null
}
try {
const result = +Parser.evaluate(argument)
return isNaN(result)
? null
: {
icon: CalculatorOutlined,
display: `= ${result}`,
guarantee: true,
executor: () => {
copyToClipboard(result.toString(), 'calculation result')
},
}
} catch {
return null
}
},
}
const openUrls: Command = {
key: 'open-urls',
scope: GLOBAL_COMMAND_SCOPE,
prefixes: ['open', 'visit'],
resolver: (argument) => {
const results: CommandResultTemplate[] = (teamLogic.values.currentTeam?.app_urls ?? []).map(
(url: string) => ({
icon: LinkOutlined,
display: `Open ${url}`,
synonyms: [`Visit ${url}`],
executor: () => {
open(url)
},
})
)
if (argument && isURL(argument)) {
results.push({
icon: LinkOutlined,
display: `Open ${argument}`,
synonyms: [`Visit ${argument}`],
executor: () => {
open(argument)
},
})
}
results.push({
icon: LinkOutlined,
display: 'Open PostHog Docs',
synonyms: ['technical documentation'],
executor: () => {
open('https://posthog.com/docs')
},
})
return results
},
}
const createPersonalApiKey: Command = {
key: 'create-personal-api-key',
scope: GLOBAL_COMMAND_SCOPE,
resolver: {
icon: KeyOutlined,
display: 'Create Personal API Key',
executor: () => ({
instruction: 'Give your key a label',
icon: TagOutlined,
scope: 'Creating Personal API Key',
resolver: (argument) => {
if (argument?.length) {
return {
icon: KeyOutlined,
display: `Create Key "${argument}"`,
executor: () => {
personalAPIKeysLogic.actions.createKey(argument)
push(urls.mySettings(), {}, 'personal-api-keys')
},
}
}
return null
},
}),
},
}
const createDashboard: Command = {
key: 'create-dashboard',
scope: GLOBAL_COMMAND_SCOPE,
resolver: {
icon: FundOutlined,
display: 'Create Dashboard',
executor: () => ({
instruction: 'Name your new dashboard',
icon: TagOutlined,
scope: 'Creating Dashboard',
resolver: (argument) => {
if (argument?.length) {
return {
icon: FundOutlined,
display: `Create Dashboard "${argument}"`,
executor: () => {
dashboardsModel.actions.addDashboard({ name: argument, show: true })
},
}
}
return null
},
}),
},
}
const shareFeedback: Command = {
key: 'share-feedback',
scope: GLOBAL_COMMAND_SCOPE,
resolver: {
icon: CommentOutlined,
display: 'Share Feedback',
synonyms: ['send opinion', 'ask question', 'message posthog', 'github issue'],
executor: () => ({
scope: 'Sharing Feedback',
resolver: [
{
display: 'Send Message Directly to PostHog',
icon: CommentOutlined,
executor: () => ({
instruction: "What's on your mind?",
icon: CommentOutlined,
resolver: (argument) => ({
icon: SendOutlined,
display: 'Send',
executor: !argument?.length
? undefined
: () => {
posthog.capture('palette feedback', { message: argument })
return {
resolver: {
icon: CheckOutlined,
display: 'Message Sent!',
executor: true,
},
}
},
}),
}),
},
{
icon: VideoCameraOutlined,
display: 'Schedule Quick Call',
executor: () => {
open('https://calendly.com/posthog-feedback')
},
},
{
icon: ExclamationCircleOutlined,
display: 'Create GitHub Issue',
executor: () => {
open('https://github.com/PostHog/posthog/issues/new/choose')
},
},
],
}),
},
}
actions.registerCommand(goTo)
actions.registerCommand(openUrls)
actions.registerCommand(debugClickhouseQueries)
actions.registerCommand(calculator)
actions.registerCommand(createPersonalApiKey)
actions.registerCommand(createDashboard)
actions.registerCommand(shareFeedback)
},
beforeUnmount: () => {
actions.deregisterCommand('go-to')
actions.deregisterCommand('open-urls')
actions.deregisterCommand('debug-clickhouse-queries')
actions.deregisterCommand('calculator')
actions.deregisterCommand('create-personal-api-key')
actions.deregisterCommand('create-dashboard')
actions.deregisterCommand('share-feedback')
},
}),
})
Example #3
Source File: FunnelCorrelationTable.tsx From posthog-foss with MIT License | 4 votes |
export function FunnelCorrelationTable(): JSX.Element | null {
const { insightProps } = useValues(insightLogic)
const logic = funnelLogic(insightProps)
const {
stepsWithCount,
correlationValues,
correlationTypes,
eventHasPropertyCorrelations,
eventWithPropertyCorrelationsValues,
parseDisplayNameForCorrelation,
correlationsLoading,
eventWithPropertyCorrelationsLoading,
nestedTableExpandedKeys,
correlationPropKey,
filters,
aggregationTargetLabel,
} = useValues(logic)
const {
setCorrelationTypes,
loadEventWithPropertyCorrelations,
addNestedTableExpandedKey,
removeNestedTableExpandedKey,
openCorrelationPersonsModal,
} = useActions(logic)
const { reportCorrelationInteraction } = useActions(eventUsageLogic)
const onClickCorrelationType = (correlationType: FunnelCorrelationType): void => {
if (correlationTypes) {
if (correlationTypes.includes(correlationType)) {
setCorrelationTypes(correlationTypes.filter((types) => types !== correlationType))
} else {
setCorrelationTypes([...correlationTypes, correlationType])
}
} else {
setCorrelationTypes([correlationType])
}
}
const renderOddsRatioTextRecord = (record: FunnelCorrelation): JSX.Element => {
const get_friendly_numeric_value = (value: number): string => {
if (value < 10 && !Number.isInteger(value)) {
return value.toFixed(1)
}
return value.toFixed()
}
const is_success = record.correlation_type === FunnelCorrelationType.Success
const { first_value, second_value } = parseDisplayNameForCorrelation(record)
return (
<>
<h4>
{is_success ? (
<RiseOutlined style={{ color: 'green' }} />
) : (
<FallOutlined style={{ color: 'red' }} />
)}{' '}
<PropertyKeyInfo value={first_value} />
{second_value !== undefined && (
<>
{' :: '}
<PropertyKeyInfo value={second_value} disablePopover />
</>
)}
</h4>
<div>
{capitalizeFirstLetter(aggregationTargetLabel.plural)}{' '}
{filters.aggregation_group_type_index != undefined ? 'that' : 'who'} converted were{' '}
<mark>
<b>
{get_friendly_numeric_value(record.odds_ratio)}x {is_success ? 'more' : 'less'} likely
</b>
</mark>{' '}
to{' '}
{record.result_type === FunnelCorrelationResultsType.EventWithProperties
? 'have this event property'
: 'do this event'}
</div>
<CorrelationMatrix />
</>
)
}
const renderSuccessCount = (record: FunnelCorrelation): JSX.Element => {
return (
<ValueInspectorButton
onClick={() => {
openCorrelationPersonsModal(record, true)
}}
>
{record.success_count}
</ValueInspectorButton>
)
}
const renderFailureCount = (record: FunnelCorrelation): JSX.Element => {
return (
<ValueInspectorButton
onClick={() => {
openCorrelationPersonsModal(record, false)
}}
>
{record.failure_count}
</ValueInspectorButton>
)
}
const renderNestedTable = (eventName: string): JSX.Element => {
if (eventWithPropertyCorrelationsLoading) {
return (
<div className="nested-properties-loading">
<Spin />
<h3>Loading correlation results</h3>
<p>This process can take up to 20 seconds. </p>
</div>
)
}
return (
<div>
<h4 style={{ paddingLeft: 16 }}>Correlated properties</h4>
<Table
dataSource={eventWithPropertyCorrelationsValues[eventName]}
rowKey={(record: FunnelCorrelation) => record.event.event}
className="nested-properties-table"
scroll={{ x: 'max-content' }}
pagination={{
pageSize: 5,
hideOnSinglePage: true,
onChange: (page, page_size) =>
reportCorrelationInteraction(
FunnelCorrelationResultsType.EventWithProperties,
'pagination change',
{ page, page_size }
),
}}
>
<Column
title="Property"
key="eventName"
render={(_, record: FunnelCorrelation) => renderOddsRatioTextRecord(record)}
align="left"
/>
<Column
title="Completed"
key="success_count"
render={(_, record: FunnelCorrelation) => renderSuccessCount(record)}
width={90}
align="center"
/>
<Column
title="Dropped off"
key="failure_count"
render={(_, record: FunnelCorrelation) => renderFailureCount(record)}
width={120}
align="center"
/>
<Column
title=""
key="actions"
render={(_, record: FunnelCorrelation) => <CorrelationActionsCell record={record} />}
align="center"
width={30}
/>
</Table>
</div>
)
}
return stepsWithCount.length > 1 ? (
<VisibilitySensor id={correlationPropKey} offset={152}>
<div className="funnel-correlation-table">
<span className="funnel-correlation-header">
<span className="table-header">
<IconSelectEvents style={{ marginRight: 4, fontSize: 24, opacity: 0.5 }} />
CORRELATED EVENTS
</span>
<span className="table-options">
<p className="title">CORRELATION</p>
<div
className="tab-btn ant-btn"
style={{
paddingTop: '1px',
paddingBottom: '1px',
borderTopRightRadius: 0,
borderBottomRightRadius: 0,
}}
onClick={() => onClickCorrelationType(FunnelCorrelationType.Success)}
>
<Checkbox
checked={correlationTypes.includes(FunnelCorrelationType.Success)}
style={{
pointerEvents: 'none',
}}
>
Success
</Checkbox>
</div>
<div
className="tab-btn ant-btn"
style={{
marginRight: '8px',
paddingTop: '1px',
paddingBottom: '1px',
borderTopLeftRadius: 0,
borderBottomLeftRadius: 0,
}}
onClick={() => onClickCorrelationType(FunnelCorrelationType.Failure)}
>
<Checkbox
checked={correlationTypes.includes(FunnelCorrelationType.Failure)}
style={{
pointerEvents: 'none',
}}
>
Dropoff
</Checkbox>
</div>
</span>
</span>
<Table
dataSource={correlationValues}
loading={correlationsLoading}
size="small"
scroll={{ x: 'max-content' }}
rowKey={(record: FunnelCorrelation) => record.event.event}
pagination={{
pageSize: 5,
hideOnSinglePage: true,
onChange: () => reportCorrelationInteraction(FunnelCorrelationResultsType.Events, 'load more'),
}}
expandable={{
expandedRowRender: (record) => renderNestedTable(record.event.event),
expandedRowKeys: nestedTableExpandedKeys,
rowExpandable: () => filters.aggregation_group_type_index === undefined,
/* eslint-disable react/display-name */
expandIcon: ({ expanded, onExpand, record, expandable }) => {
if (!expandable) {
return null
}
return expanded ? (
<Tooltip title="Collapse">
<div
style={{ cursor: 'pointer', opacity: 0.5, fontSize: 24 }}
onClick={(e) => {
removeNestedTableExpandedKey(record.event.event)
onExpand(record, e)
}}
>
<IconUnfoldLess />
</div>
</Tooltip>
) : (
<Tooltip title="Expand to see correlated properties for this event">
<div
style={{ cursor: 'pointer', opacity: 0.5, fontSize: 24 }}
onClick={(e) => {
!eventHasPropertyCorrelations(record.event.event) &&
loadEventWithPropertyCorrelations(record.event.event)
addNestedTableExpandedKey(record.event.event)
onExpand(record, e)
}}
>
<IconUnfoldMore />
</div>
</Tooltip>
)
},
/* eslint-enable react/display-name */
}}
>
<Column
title="Event"
key="eventName"
render={(_, record: FunnelCorrelation) => renderOddsRatioTextRecord(record)}
align="left"
ellipsis
/>
<Column
title={
<div className="flex-center">
Completed
<Tooltip
title={`${capitalizeFirstLetter(aggregationTargetLabel.plural)} ${
filters.aggregation_group_type_index != undefined ? 'that' : 'who'
} performed the event and completed the entire funnel.`}
>
<InfoCircleOutlined className="column-info" />
</Tooltip>
</div>
}
key="success_count"
render={(_, record: FunnelCorrelation) => renderSuccessCount(record)}
width={90}
align="center"
/>
<Column
title={
<div className="flex-center">
Dropped off
<Tooltip
title={
<>
{capitalizeFirstLetter(aggregationTargetLabel.plural)}{' '}
{filters.aggregation_group_type_index != undefined ? 'that' : 'who'}{' '}
performed the event and did <b>not complete</b> the entire funnel.
</>
}
>
<InfoCircleOutlined className="column-info" />
</Tooltip>
</div>
}
key="failure_count"
render={(_, record: FunnelCorrelation) => renderFailureCount(record)}
width={120}
align="center"
/>
<Column
title=""
key="actions"
render={(_, record: FunnelCorrelation) => <CorrelationActionsCell record={record} />}
width={30}
/>
</Table>
</div>
</VisibilitySensor>
) : null
}
Example #4
Source File: FunnelPropertyCorrelationTable.tsx From posthog-foss with MIT License | 4 votes |
export function FunnelPropertyCorrelationTable(): JSX.Element | null {
const { insightProps } = useValues(insightLogic)
const logic = funnelLogic(insightProps)
const {
stepsWithCount,
propertyCorrelationValues,
propertyCorrelationTypes,
excludedPropertyNames,
parseDisplayNameForCorrelation,
propertyCorrelationsLoading,
inversePropertyNames,
propertyNames,
correlationPropKey,
allProperties,
filters,
aggregationTargetLabel,
} = useValues(logic)
const { setPropertyCorrelationTypes, setPropertyNames, openCorrelationPersonsModal } = useActions(logic)
const { reportCorrelationInteraction } = useActions(eventUsageLogic)
const onClickCorrelationType = (correlationType: FunnelCorrelationType): void => {
if (propertyCorrelationTypes) {
if (propertyCorrelationTypes.includes(correlationType)) {
setPropertyCorrelationTypes(propertyCorrelationTypes.filter((types) => types !== correlationType))
} else {
setPropertyCorrelationTypes([...propertyCorrelationTypes, correlationType])
}
} else {
setPropertyCorrelationTypes([correlationType])
}
}
const renderSuccessCount = (record: FunnelCorrelation): JSX.Element => {
return (
<ValueInspectorButton
onClick={() => {
openCorrelationPersonsModal(record, true)
}}
>
{record.success_count}
</ValueInspectorButton>
)
}
const renderFailureCount = (record: FunnelCorrelation): JSX.Element => {
return (
<ValueInspectorButton
onClick={() => {
openCorrelationPersonsModal(record, false)
}}
>
{record.failure_count}
</ValueInspectorButton>
)
}
const renderOddsRatioTextRecord = (record: FunnelCorrelation): JSX.Element => {
const get_friendly_numeric_value = (value: number): string => {
if (value < 10 && !Number.isInteger(value)) {
return value.toFixed(1)
}
return value.toFixed()
}
const is_success = record.correlation_type === FunnelCorrelationType.Success
const { first_value, second_value } = parseDisplayNameForCorrelation(record)
return (
<>
<h4>
{is_success ? (
<RiseOutlined style={{ color: 'green' }} />
) : (
<FallOutlined style={{ color: 'red' }} />
)}{' '}
<PropertyKeyInfo value={first_value} />
{second_value !== undefined && (
<>
{' :: '}
<PropertyKeyInfo value={second_value} disablePopover />
</>
)}
</h4>
<div>
{capitalizeFirstLetter(aggregationTargetLabel.plural)}{' '}
{filters.aggregation_group_type_index != undefined ? 'that' : 'who'} converted were{' '}
<mark>
<b>
{get_friendly_numeric_value(record.odds_ratio)}x {is_success ? 'more' : 'less'} likely
</b>
</mark>{' '}
to have this property value
</div>
</>
)
}
return stepsWithCount.length > 1 ? (
<VisibilitySensor offset={150} id={`${correlationPropKey}-properties`}>
<div className="funnel-correlation-table">
<span className="funnel-correlation-header">
<span className="table-header">
<IconSelectProperties style={{ marginRight: 4, opacity: 0.5, fontSize: 24 }} />
CORRELATED PROPERTIES
</span>
<span className="table-options">
{allProperties.length > 0 && (
<>
<p className="title">PROPERTIES </p>
<PropertyNamesSelect
value={new Set(propertyNames)}
onChange={(selectedProperties: string[]) => setPropertyNames(selectedProperties)}
allProperties={inversePropertyNames(excludedPropertyNames || [])}
/>
</>
)}
<p className="title" style={{ marginLeft: 8 }}>
CORRELATION
</p>
<div
className="tab-btn ant-btn"
style={{
paddingTop: '1px',
paddingBottom: '1px',
borderTopRightRadius: 0,
borderBottomRightRadius: 0,
}}
onClick={() => onClickCorrelationType(FunnelCorrelationType.Success)}
>
<Checkbox
checked={propertyCorrelationTypes.includes(FunnelCorrelationType.Success)}
style={{
pointerEvents: 'none',
}}
>
Success
</Checkbox>
</div>
<div
className="tab-btn ant-btn"
style={{
marginRight: '8px',
paddingTop: '1px',
paddingBottom: '1px',
borderTopLeftRadius: 0,
borderBottomLeftRadius: 0,
}}
onClick={() => onClickCorrelationType(FunnelCorrelationType.Failure)}
>
<Checkbox
checked={propertyCorrelationTypes.includes(FunnelCorrelationType.Failure)}
style={{
pointerEvents: 'none',
}}
>
Dropoff
</Checkbox>
</div>
</span>
</span>
<Table
dataSource={propertyCorrelationValues}
loading={propertyCorrelationsLoading}
scroll={{ x: 'max-content' }}
size="small"
rowKey={(record: FunnelCorrelation) => record.event.event}
pagination={{
pageSize: 5,
hideOnSinglePage: true,
onChange: (page, page_size) =>
reportCorrelationInteraction(FunnelCorrelationResultsType.Properties, 'pagination change', {
page,
page_size,
}),
}}
>
<Column
title={`${capitalizeFirstLetter(aggregationTargetLabel.singular)} property`}
key="propertName"
render={(_, record: FunnelCorrelation) => renderOddsRatioTextRecord(record)}
align="left"
/>
<Column
title={
<div className="flex-center">
Completed
<Tooltip
title={`${capitalizeFirstLetter(aggregationTargetLabel.plural)} ${
filters.aggregation_group_type_index != undefined ? 'that' : 'who'
} have this property and completed the entire funnel.`}
>
<InfoCircleOutlined className="column-info" />
</Tooltip>
</div>
}
key="success_count"
render={(_, record: FunnelCorrelation) => renderSuccessCount(record)}
width={90}
align="center"
/>
<Column
title={
<div className="flex-center">
Dropped off
<Tooltip
title={
<>
{capitalizeFirstLetter(aggregationTargetLabel.plural)}{' '}
{filters.aggregation_group_type_index != undefined ? 'that' : 'who'} have
this property and did <b>not complete</b> the entire funnel.
</>
}
>
<InfoCircleOutlined className="column-info" />
</Tooltip>
</div>
}
key="failure_count"
render={(_, record: FunnelCorrelation) => renderFailureCount(record)}
width={120}
align="center"
/>
<Column
title=""
key="actions"
render={(_, record: FunnelCorrelation) => <CorrelationActionsCell record={record} />}
align="center"
width={30}
/>
</Table>
</div>
</VisibilitySensor>
) : null
}
Example #5
Source File: Icon.tsx From html2sketch with MIT License | 4 votes |
IconSymbol: FC = () => {
return (
<Row>
{/*<CaretUpOutlined*/}
{/* className="icon"*/}
{/* symbolName={'1.General/2.Icons/1.CaretUpOutlined'}*/}
{/*/>*/}
{/* className="icon"*/}
{/* symbolName={'1.General/2.Icons/2.MailOutlined'}*/}
{/*/>*/}
{/*<StepBackwardOutlined*/}
{/* className="icon"*/}
{/* symbolName={'1.General/2.Icons/2.StepBackwardOutlined'}*/}
{/*/>*/}
{/*<StepForwardOutlined*/}
{/* className="icon"*/}
{/* symbolName={'1.General/2.Icons/2.StepBackwardOutlined'}*/}
{/*/>*/}
<StepForwardOutlined />
<ShrinkOutlined />
<ArrowsAltOutlined />
<DownOutlined />
<UpOutlined />
<LeftOutlined />
<RightOutlined />
<CaretUpOutlined />
<CaretDownOutlined />
<CaretLeftOutlined />
<CaretRightOutlined />
<VerticalAlignTopOutlined />
<RollbackOutlined />
<FastBackwardOutlined />
<FastForwardOutlined />
<DoubleRightOutlined />
<DoubleLeftOutlined />
<VerticalLeftOutlined />
<VerticalRightOutlined />
<VerticalAlignMiddleOutlined />
<VerticalAlignBottomOutlined />
<ForwardOutlined />
<BackwardOutlined />
<EnterOutlined />
<RetweetOutlined />
<SwapOutlined />
<SwapLeftOutlined />
<SwapRightOutlined />
<ArrowUpOutlined />
<ArrowDownOutlined />
<ArrowLeftOutlined />
<ArrowRightOutlined />
<LoginOutlined />
<LogoutOutlined />
<MenuFoldOutlined />
<MenuUnfoldOutlined />
<BorderBottomOutlined />
<BorderHorizontalOutlined />
<BorderInnerOutlined />
<BorderOuterOutlined />
<BorderLeftOutlined />
<BorderRightOutlined />
<BorderTopOutlined />
<BorderVerticleOutlined />
<PicCenterOutlined />
<PicLeftOutlined />
<PicRightOutlined />
<RadiusBottomleftOutlined />
<RadiusBottomrightOutlined />
<RadiusUpleftOutlined />
<RadiusUprightOutlined />
<FullscreenOutlined />
<FullscreenExitOutlined />
<QuestionOutlined />
<PauseOutlined />
<MinusOutlined />
<PauseCircleOutlined />
<InfoOutlined />
<CloseOutlined />
<ExclamationOutlined />
<CheckOutlined />
<WarningOutlined />
<IssuesCloseOutlined />
<StopOutlined />
<EditOutlined />
<CopyOutlined />
<ScissorOutlined />
<DeleteOutlined />
<SnippetsOutlined />
<DiffOutlined />
<HighlightOutlined />
<AlignCenterOutlined />
<AlignLeftOutlined />
<AlignRightOutlined />
<BgColorsOutlined />
<BoldOutlined />
<ItalicOutlined />
<UnderlineOutlined />
<StrikethroughOutlined />
<RedoOutlined />
<UndoOutlined />
<ZoomInOutlined />
<ZoomOutOutlined />
<FontColorsOutlined />
<FontSizeOutlined />
<LineHeightOutlined />
<SortAscendingOutlined />
<SortDescendingOutlined />
<DragOutlined />
<OrderedListOutlined />
<UnorderedListOutlined />
<RadiusSettingOutlined />
<ColumnWidthOutlined />
<ColumnHeightOutlined />
<AreaChartOutlined />
<PieChartOutlined />
<BarChartOutlined />
<DotChartOutlined />
<LineChartOutlined />
<RadarChartOutlined />
<HeatMapOutlined />
<FallOutlined />
<RiseOutlined />
<StockOutlined />
<BoxPlotOutlined />
<FundOutlined />
<SlidersOutlined />
<AndroidOutlined />
<AppleOutlined />
<WindowsOutlined />
<IeOutlined />
<ChromeOutlined />
<GithubOutlined />
<AliwangwangOutlined />
<DingdingOutlined />
<WeiboSquareOutlined />
<WeiboCircleOutlined />
<TaobaoCircleOutlined />
<Html5Outlined />
<WeiboOutlined />
<TwitterOutlined />
<WechatOutlined />
<AlipayCircleOutlined />
<TaobaoOutlined />
<SkypeOutlined />
<FacebookOutlined />
<CodepenOutlined />
<CodeSandboxOutlined />
<AmazonOutlined />
<GoogleOutlined />
<AlipayOutlined />
<AntDesignOutlined />
<AntCloudOutlined />
<ZhihuOutlined />
<SlackOutlined />
<SlackSquareOutlined />
<BehanceSquareOutlined />
<DribbbleOutlined />
<DribbbleSquareOutlined />
<InstagramOutlined />
<YuqueOutlined />
<AlibabaOutlined />
<YahooOutlined />
<RedditOutlined />
<SketchOutlined />
<AccountBookOutlined />
<AlertOutlined />
<ApartmentOutlined />
<ApiOutlined />
<QqOutlined />
<MediumWorkmarkOutlined />
<GitlabOutlined />
<MediumOutlined />
<GooglePlusOutlined />
<AppstoreAddOutlined />
<AppstoreOutlined />
<AudioOutlined />
<AudioMutedOutlined />
<AuditOutlined />
<BankOutlined />
<BarcodeOutlined />
<BarsOutlined />
<BellOutlined />
<BlockOutlined />
<BookOutlined />
<BorderOutlined />
<BranchesOutlined />
<BuildOutlined />
<BulbOutlined />
<CalculatorOutlined />
<CalendarOutlined />
<CameraOutlined />
<CarOutlined />
<CarryOutOutlined />
<CiCircleOutlined />
<CiOutlined />
<CloudOutlined />
<ClearOutlined />
<ClusterOutlined />
<CodeOutlined />
<CoffeeOutlined />
<CompassOutlined />
<CompressOutlined />
<ContactsOutlined />
<ContainerOutlined />
<ControlOutlined />
<CopyrightCircleOutlined />
<CopyrightOutlined />
<CreditCardOutlined />
<CrownOutlined />
<CustomerServiceOutlined />
<DashboardOutlined />
<DatabaseOutlined />
<DeleteColumnOutlined />
<DeleteRowOutlined />
<DisconnectOutlined />
<DislikeOutlined />
<DollarCircleOutlined />
<DollarOutlined />
<DownloadOutlined />
<EllipsisOutlined />
<EnvironmentOutlined />
<EuroCircleOutlined />
<EuroOutlined />
<ExceptionOutlined />
<ExpandAltOutlined />
<ExpandOutlined />
<ExperimentOutlined />
<ExportOutlined />
<EyeOutlined />
<FieldBinaryOutlined />
<FieldNumberOutlined />
<FieldStringOutlined />
<DesktopOutlined />
<DingtalkOutlined />
<FileAddOutlined />
<FileDoneOutlined />
<FileExcelOutlined />
<FileExclamationOutlined />
<FileOutlined />
<FileImageOutlined />
<FileJpgOutlined />
<FileMarkdownOutlined />
<FilePdfOutlined />
<FilePptOutlined />
<FileProtectOutlined />
<FileSearchOutlined />
<FileSyncOutlined />
<FileTextOutlined />
<FileUnknownOutlined />
<FileWordOutlined />
<FilterOutlined />
<FireOutlined />
<FlagOutlined />
<FolderAddOutlined />
<FolderOutlined />
<FolderOpenOutlined />
<ForkOutlined />
<FormatPainterOutlined />
<FrownOutlined />
<FunctionOutlined />
<FunnelPlotOutlined />
<GatewayOutlined />
<GifOutlined />
<GiftOutlined />
<GlobalOutlined />
<GoldOutlined />
<GroupOutlined />
<HddOutlined />
<HeartOutlined />
<HistoryOutlined />
<HomeOutlined />
<HourglassOutlined />
<IdcardOutlined />
<ImportOutlined />
<InboxOutlined />
<InsertRowAboveOutlined />
<InsertRowBelowOutlined />
<InsertRowLeftOutlined />
<InsertRowRightOutlined />
<InsuranceOutlined />
<InteractionOutlined />
<KeyOutlined />
<LaptopOutlined />
<LayoutOutlined />
<LikeOutlined />
<LineOutlined />
<LinkOutlined />
<Loading3QuartersOutlined />
<LoadingOutlined />
<LockOutlined />
<MailOutlined />
<ManOutlined />
<MedicineBoxOutlined />
<MehOutlined />
<MenuOutlined />
<MergeCellsOutlined />
<MessageOutlined />
<MobileOutlined />
<MoneyCollectOutlined />
<MonitorOutlined />
<MoreOutlined />
<NodeCollapseOutlined />
<NodeExpandOutlined />
<NodeIndexOutlined />
<NotificationOutlined />
<NumberOutlined />
<PaperClipOutlined />
<PartitionOutlined />
<PayCircleOutlined />
<PercentageOutlined />
<PhoneOutlined />
<PictureOutlined />
<PoundCircleOutlined />
<PoundOutlined />
<PoweroffOutlined />
<PrinterOutlined />
<ProfileOutlined />
<ProjectOutlined />
<PropertySafetyOutlined />
<PullRequestOutlined />
<PushpinOutlined />
<QrcodeOutlined />
<ReadOutlined />
<ReconciliationOutlined />
<RedEnvelopeOutlined />
<ReloadOutlined />
<RestOutlined />
<RobotOutlined />
<RocketOutlined />
<SafetyCertificateOutlined />
<SafetyOutlined />
<ScanOutlined />
<ScheduleOutlined />
<SearchOutlined />
<SecurityScanOutlined />
<SelectOutlined />
<SendOutlined />
<SettingOutlined />
<ShakeOutlined />
<ShareAltOutlined />
<ShopOutlined />
<ShoppingCartOutlined />
<ShoppingOutlined />
<SisternodeOutlined />
<SkinOutlined />
<SmileOutlined />
<SolutionOutlined />
<SoundOutlined />
<SplitCellsOutlined />
<StarOutlined />
<SubnodeOutlined />
<SyncOutlined />
<TableOutlined />
<TabletOutlined />
<TagOutlined />
<TagsOutlined />
<TeamOutlined />
<ThunderboltOutlined />
<ToTopOutlined />
<ToolOutlined />
<TrademarkCircleOutlined />
<TrademarkOutlined />
<TransactionOutlined />
<TrophyOutlined />
<UngroupOutlined />
<UnlockOutlined />
<UploadOutlined />
<UsbOutlined />
<UserAddOutlined />
<UserDeleteOutlined />
<UserOutlined />
<UserSwitchOutlined />
<UsergroupAddOutlined />
<UsergroupDeleteOutlined />
<VideoCameraOutlined />
<WalletOutlined />
<WifiOutlined />
<BorderlessTableOutlined />
<WomanOutlined />
<BehanceOutlined />
<DropboxOutlined />
<DeploymentUnitOutlined />
<UpCircleOutlined />
<DownCircleOutlined />
<LeftCircleOutlined />
<RightCircleOutlined />
<UpSquareOutlined />
<DownSquareOutlined />
<LeftSquareOutlined />
<RightSquareOutlined />
<PlayCircleOutlined />
<QuestionCircleOutlined />
<PlusCircleOutlined />
<PlusSquareOutlined />
<MinusSquareOutlined />
<MinusCircleOutlined />
<InfoCircleOutlined />
<ExclamationCircleOutlined />
<CloseCircleOutlined />
<CloseSquareOutlined />
<CheckCircleOutlined />
<CheckSquareOutlined />
<ClockCircleOutlined />
<FormOutlined />
<DashOutlined />
<SmallDashOutlined />
<YoutubeOutlined />
<CodepenCircleOutlined />
<AliyunOutlined />
<PlusOutlined />
<LinkedinOutlined />
<AimOutlined />
<BugOutlined />
<CloudDownloadOutlined />
<CloudServerOutlined />
<CloudSyncOutlined />
<CloudUploadOutlined />
<CommentOutlined />
<ConsoleSqlOutlined />
<EyeInvisibleOutlined />
<FileGifOutlined />
<DeliveredProcedureOutlined />
<FieldTimeOutlined />
<FileZipOutlined />
<FolderViewOutlined />
<FundProjectionScreenOutlined />
<FundViewOutlined />
<MacCommandOutlined />
<PlaySquareOutlined />
<OneToOneOutlined />
<RotateLeftOutlined />
<RotateRightOutlined />
<SaveOutlined />
<SwitcherOutlined />
<TranslationOutlined />
<VerifiedOutlined />
<VideoCameraAddOutlined />
<WhatsAppOutlined />
{/*</Col>*/}
</Row>
);
}
Example #6
Source File: useGraphElements.tsx From dendron with GNU Affero General Public License v3.0 | 4 votes |
useGraphElements = ({
type,
engine,
config,
noteActive,
wsRoot,
}: {
type: "note" | "schema";
engine: engineSlice.EngineState;
config: GraphConfig;
noteActive?: NoteProps | undefined;
wsRoot: string;
}) => {
const [elements, setElements] = useState<GraphElements>({
nodes: [],
edges: {},
});
const logger = createLogger("useGraphElements");
logger.log({ msg: "enter", activeNoteId: noteActive?.id });
const [noteCount, setNoteCount] = useState(0);
const [schemaCount, setSchemaCount] = useState(0);
const [fullGraphVisited, setFullGraphVisited] = useState(false);
const isLocalGraph = GraphUtils.isLocalGraph(config);
// Prevent unnecessary parsing if no notes have been added/deleted and toggle Full NoteGraph on config change
useEffect(() => {
if (type === "note" && engine.notes && config["options.show-local-graph"]) {
const wasGraphEmpty = elements.nodes.length === 0;
const wasLocalGraph =
elements.nodes.filter((node) => !!node.data.localRoot).length > 0;
const newNoteCount = Object.keys(engine.notes).length;
if (!wasLocalGraph && !wasGraphEmpty && noteCount === newNoteCount)
return;
setNoteCount(newNoteCount);
if (!isLocalGraph) {
setElements(
getFullNoteGraphElements({
notes: engine.notes,
fNameDict: engine.noteFName,
wsRoot,
vaults: engine.vaults,
noteActive,
})
);
}
}
// eslint-disable-next-line react-hooks/exhaustive-deps
}, [engine.notes, isLocalGraph, noteActive]);
// Get new elements if active note changes
useEffect(() => {
if (type === "note" && engine.notes && isLocalGraph && noteActive) {
setElements(
getLocalNoteGraphElements({
notes: engine.notes,
fNameDict: engine.noteFName,
wsRoot,
vaults: engine.vaults,
noteActive,
})
);
}
// eslint-disable-next-line react-hooks/exhaustive-deps
}, [noteActive, engine.notes, isLocalGraph]);
useEffect(() => {
if (
type === "note" &&
!isLocalGraph &&
!fullGraphVisited &&
noteCount > 0
) {
message.info({
content: `Your second brain is evolving... You have ${noteCount} notes ${
elements.edges.links
? `connected internally with ${elements.edges.links?.length} links`
: "."
}`,
duration: 5,
icon: <RiseOutlined />,
});
setFullGraphVisited(true);
}
// eslint-disable-next-line react-hooks/exhaustive-deps
}, [elements]);
// Prevent unnecessary parsing if no schemas have been added/deleted
useEffect(() => {
if (type === "schema" && engine.schemas) {
const newSchemaCount = Object.keys(engine.schemas).length;
if (schemaCount === newSchemaCount) return;
setSchemaCount(newSchemaCount);
setElements(getSchemaGraphElements(engine.schemas, engine.vaults));
}
}, [engine.schemas, engine.vaults, schemaCount, type]);
logger.log({ msg: "exit", activeNoteId: noteActive?.id, type });
return elements;
}