This repository was archived by the owner on Jul 9, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 374
feat: diable /hide items when in PVA bot context #7119
Merged
Merged
Changes from all commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
997a34d
Runtime log for skills
73f92cd
PVa disabler
310842d
Disable functionalities for PVA
71969d2
Updated tests
5a313e3
Merge branch 'main' of https://github.com/microsoft/BotFramework-Comp…
4978bc0
Remove inline block
ccf98fa
Merge branch 'main' into srravic/pva-disabler
srinaath 688801e
Updated pagelinks
7f100f9
Merge branch 'srravic/pva-disabler' of https://github.com/microsoft/B…
b98d9b6
Hide manage connections
a9371b8
Disable add skill button
d8a7338
Disable add a package header
56a177e
Remove unused refs
8a719eb
Rename component
b8ac858
test name update
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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
28 changes: 28 additions & 0 deletions
28
Composer/packages/client/src/components/DisableFeatureToolTip.tsx
This file contains hidden or 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,28 @@ | ||
| // Copyright (c) Microsoft Corporation. | ||
| // Licensed under the MIT License. | ||
|
|
||
| import { useId } from '@uifabric/react-hooks'; | ||
| import formatMessage from 'format-message'; | ||
| import { TooltipHost } from 'office-ui-fabric-react/lib/Tooltip'; | ||
| import React from 'react'; | ||
|
|
||
| const calloutProps = { gapSpace: 0 }; | ||
|
|
||
| const genericDisableMessage = () => { | ||
| return formatMessage('PVA bots cannot use this functionality at this time.'); | ||
| }; | ||
|
|
||
| export const DisableFeatureToolTip: React.FC<{ content?: string; isPVABot: boolean }> = (props) => { | ||
| const { isPVABot, content } = props; | ||
| const tooltipId = useId('pva-disable-tooltip'); | ||
|
|
||
| if (!isPVABot) { | ||
| return <>{props.children}</>; | ||
| } | ||
|
|
||
| return ( | ||
| <TooltipHost calloutProps={calloutProps} content={content ?? genericDisableMessage()} id={tooltipId}> | ||
| {props.children} | ||
| </TooltipHost> | ||
| ); | ||
| }; |
This file contains hidden or 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 hidden or 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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: This could be a constant that gets imported so we only have to change the copy in one place if necessary