-
Notifications
You must be signed in to change notification settings - Fork 402
Added 'AdaptiveCardDesignerHost' Control #1238
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
daa7c86
Added 'AdaptiveCardDesignerHost' Control
fabiofranzini 444b8ec
requested changes
fabiofranzini f8e0c70
Added more detailed imports
fabiofranzini e2fbc3d
Added comments to AdaptiveCardDesigner.Helpers.ts
fabiofranzini f2e7a46
Merge branch 'dev' into adaptive-card-designer-host
fabiofranzini d08781c
Update package-lock.json
fabiofranzini 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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
104 changes: 104 additions & 0 deletions
104
docs/documentation/docs/controls/AdaptiveCardDesignerHost.md
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,104 @@ | ||
# Adaptive Card Designer Host | ||
|
||
This control allows you to embed the official Adaptive Cards designer inside a React SPFx solution. | ||
|
||
The control consists of 2 components: | ||
|
||
* **AdaptiveCardDesigner**: implements all the logic to embed the designer control as a React component; | ||
* **AdaptiveCardDesignerHost**: main control to render the designer in a full page Fluent UI panel; | ||
|
||
**Due to the nature in which the original Adaptive Card Designer control was implemented**, it is not possible at this time to adapt it to the current theme applied to the site and especially to localize it to give multilingual support. **The designer, therefore, is only available in the English language**. | ||
|
||
This control shares a lot of code with another control in this library, the "AdaptiveCardHost" control. In this way you have a uniformity of display between the cards created with this designer and those rendered with "AdaptiveCardHost". The same thing goes for the various HostContainer objects, so that you can test the cards with the themes available for "AdaptiveCardHost". | ||
|
||
The Adaptive Cards version supported is 1.5, by using the 'adaptivecards' npm package version 2.10.0. | ||
|
||
All Inputs Elements and Actions of Adaptive Cards have been redefined using Fluent UI React, adding and improving features that are not managed in Microsoft's implementation of the "adaptivecards-fluentui" library (Theme support for example). | ||
|
||
Thanks to the "context" property that allows you to pass the SPFx context, whether the "data" property is passed or not, a new field called @context will be injected into the data object. | ||
|
||
This allows, using Adaptive Cards templating syntax and binding feature of the Designer, to access to the context informations. | ||
|
||
For more info please to refear tot he documentation of [AdaptiveCardHost ](http://www.google.com)control | ||
|
||
Here is an example of the control in action inside a Web Part: | ||
|
||
 | ||
|
||
## How to use this control in your solutions | ||
|
||
* Check that you installed the `@pnp/spfx-controls-react` dependency. Check out the [getting started](../../#getting-started) page for more information about installing the dependency. | ||
|
||
* In your component file, import the `AdaptiveCardDesignerHost` control as follows: | ||
```Typescript | ||
import { AdaptiveCardDesignerHost, HostContainer, BindingPreviewMode, Versions } from "@pnp/spfx-controls-react/lib/AdaptiveCardDesignerHost"; | ||
``` | ||
|
||
- Example on use the `AdaptiveCardDesignerHost` control with only required properties: | ||
```Typescript | ||
<AdaptiveCardDesignerHost | ||
headerText="Adaptive Card Designer" | ||
buttonText="Open the Designer" | ||
context={props.context} | ||
onSave={(payload: object) => setCard(payload)} | ||
/> | ||
``` | ||
|
||
- Example on use the `AdaptiveCardDesignerHost` control with all properties: | ||
```Typescript | ||
<AdaptiveCardDesignerHost | ||
headerText="Adaptive Card Designer" | ||
buttonText="Open the Designer" | ||
context={props.context} | ||
onSave={(payload: object) => setCard(payload)} | ||
addDefaultAdaptiveCardHostContainer={true} | ||
bindingPreviewMode={BindingPreviewMode.SampleData} | ||
theme={props.theme} | ||
card={card} | ||
data={data} | ||
enableDataBindingSupport={true} | ||
hostConfig={hostConfig} | ||
hostContainers={[]} | ||
injectAdaptiveCardHostContextProperty={true} | ||
newCardPayload={newCard} | ||
selectedHostContainerControlsTargetVersion={false} | ||
showCopyToJsonToolbarCommand={true} | ||
showDataStructureToolbox={true} | ||
showFluentBreakpointsPicker={true} | ||
showSampleDataEditorToolbox={true} | ||
showTargetVersionMismatchWarning={true} | ||
showVersionPicker={true} | ||
supportedTargetVersions={[Versions.v1_5]} | ||
snippets={snippets} | ||
/> | ||
``` | ||
## Implementation | ||
|
||
The `AdaptiveCardDesignerHost` control can be configured with the following properties: | ||
|
||
| Property | Type | Required | Description | Default Value | | ||
| ---- | ---- | ---- | ---- | ---- | | ||
| context | BaseComponentContext | true | Set the context from SPFx component | - | | ||
| theme | IPartialTheme or ITheme | false | Set Fluent UI Theme | - | | ||
| onSave | (payload: object) => void | true | Callback for saving the card | - | | ||
| card | object | false | Set Adaptive Card payload | - | | ||
| data | { "$root": object } | false | Set Data Source for template rendering | - | | ||
| newCardPayload | object | false | Set Adaptive Card payload for the New Card | - | | ||
| hostContainers | HostContainer[] | false | Set custom HostContainers | [] | | ||
| supportedTargetVersions | Version[] | false | Set the suported Versions | [Versions.v1_5] | | ||
| snippets | IToolboxSnippet[] | false | Set the Toolbox Snippets | [] | | ||
| bindingPreviewMode | BindingPreviewMode | false | Set the Binding preview mode | BindingPreviewMode.GeneratedData | | ||
| enableDataBindingSupport | boolean | false | Enable the support for Data Binding | true | | ||
| selectedHostContainerControlsTargetVersion | boolean | false | Enable the support for Data Binding | false | | ||
| showTargetVersionMismatchWarning | boolean | false | Show the target version mismatch warning | true | | ||
| showVersionPicker | boolean | false | Show the Version Picker | false | | ||
| showSampleDataEditorToolbox | boolean | false | Show the Sample Data Editor Toolbox | false | | ||
| showDataStructureToolbox | boolean | false | Show the Data Structure Toolbox | true | | ||
| showFluentBreakpointsPicker | boolean | false | Show the Fluent UI Breakpoint Picker | true | | ||
| showCopyToJsonToolbarCommand | boolean | false | Show the copy to json button | false | | ||
| addDefaultAdaptiveCardHostContainer | boolean | false | Add the default Host Containers to the Picker | true | | ||
| injectAdaptiveCardHostContextProperty | boolean | false | Inject the SPFx Context Property inside the Adaptive Card data object | true | | ||
| headerText | boolean | false | Set the Header text for the Adaptive Card Designer | - | | ||
| buttonText | boolean | false | Set the Button text for open the Adaptive Card Designer | - | | ||
|
||
 |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export * from './controls/adaptiveCardDesignerHost/index'; |
66 changes: 66 additions & 0 deletions
66
src/controls/adaptiveCardDesignerHost/AdaptiveCardDesigner.Helpers.ts
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,66 @@ | ||
/* This file contains reusable functions useful for managing designer functionality */ | ||
|
||
import { Guid } from '@microsoft/sp-core-library'; | ||
import { CardDesigner, IChoicePickerItem, SnippetPaletteItem, ToolbarButton, ToolbarChoicePicker } from "adaptivecards-designer"; | ||
|
||
// Given the instance of a "CardDesigner", it allows you to hide an element of the toolbar given its id. | ||
export const hideToolbarElement = (cardDesigner: CardDesigner, elementId: string) => { | ||
cardDesigner.toolbar.getElementById(elementId).isVisible = false; | ||
}; | ||
|
||
// Given the instance of a "CardDesigner", it allows you to add an element in the toolbar. | ||
export const addToolbarButton = (cardDesigner: CardDesigner, caption: string, iconClass: string, positionElementId: string, isAfter: true, hideElementId?: string, onClick?: (sender: ToolbarButton) => void): string => { | ||
let id = `__${Guid.newGuid().toString()}_ToolbarButton`; | ||
let newToolbarButton = new ToolbarButton( | ||
id, | ||
caption, | ||
iconClass, | ||
onClick); | ||
newToolbarButton.separator = true; | ||
|
||
if (isAfter) | ||
cardDesigner.toolbar.insertElementAfter(newToolbarButton, positionElementId); | ||
else | ||
cardDesigner.toolbar.insertElementBefore(newToolbarButton, positionElementId); | ||
|
||
if (hideElementId) | ||
hideToolbarElement(cardDesigner, hideElementId); | ||
|
||
return id; | ||
}; | ||
|
||
// Given the instance of a "CarDesigner", it allows you to add a snippets to the toolbox. | ||
export const addToolboxSnippet = (cardDesigner: CardDesigner, category: string, name: string, payload: object) => { | ||
let newSnippet = new SnippetPaletteItem(category, name); | ||
newSnippet.snippet = payload; | ||
|
||
if (!cardDesigner.customPaletteItems) | ||
cardDesigner.customPaletteItems = []; | ||
|
||
cardDesigner.customPaletteItems.push(newSnippet); | ||
}; | ||
|
||
// Given the instance of a "CarDesigner", it allows to add a "Choice Picker" to the toolbar | ||
export const addToolbarChoicePicker = (cardDesigner: CardDesigner, | ||
afterElementId: string, | ||
separator: boolean, | ||
label: string, | ||
choices: IChoicePickerItem[], | ||
onChanged: (sender: ToolbarChoicePicker) => void) => { | ||
let id = `__${Guid.newGuid().toString()}_ChoicePicker`; | ||
let breakpointsChoicePicker = new ToolbarChoicePicker(id); | ||
breakpointsChoicePicker.label = label; | ||
breakpointsChoicePicker.choices = choices; | ||
breakpointsChoicePicker.onChanged = onChanged; | ||
breakpointsChoicePicker.separator = separator; | ||
cardDesigner.toolbar.insertElementAfter(breakpointsChoicePicker, afterElementId); | ||
return id; | ||
}; | ||
|
||
// Convert nulls to empty strings, used for binding with Adaptive Card Template | ||
export const convertNullToEmptyString = (object: any) => { | ||
for (var key in object) { | ||
if (null === object[key] || undefined === object[key]) object[key] = ''; | ||
if (typeof object[key] === 'object') convertNullToEmptyString(object[key]); | ||
} | ||
}; |
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.
Uh oh!
There was an error while loading. Please reload this page.