Apex SDK for Slack (Beta)
Documentation Changelog
Project Structure
App Metadata
Define a View
Onboarding with App Home
Accessibility
Assets
Data Providers
Expressions
Input Validation
Permission Scopes
Considerations and Limitations
A view is composed of components that display in a Slack surface: a home tab, message, or modal. Define a view in a .view file, which is YAML that describes the components that make up the view.
In a Slack runtime environment, a view translates to blocks. In your SFDX project, a view lives in the force-app/main/default/viewdefinitions folder. For more information, see the ViewDefinition Tooling API object.
Components in a view can handle events such as a button click. See Interactive Components. You can also bind data to a view using expressions and data providers.
Views are not cached. If your view fails to render, check your view definition and YAML indentation.
Note
| Key | Type | Description |
|---|---|---|
description | String | A description of this view. Not used in code. |
schema | Object | The input properties for this view. |
schema.properties | Object | A map of property names to their schema. |
schema.properties.type | String | The type of the property value. One of these values: string, boolean, number, list, map, or null. |
schema.properties.required | Boolean | Specifies whether the property is required. If true, defaultValue is ignored. |
schema.properties.defaultValue | String | The default value to use if one isn’t provided and required is false. Must be a literal value. |
dataproviders | Object | The data sources for this view. A map of data provider keys to data providers. |
dataproviders.definition | String | Required. The name of the data provider in the format apex__MyClassName.getMyMethodName or apex__MyNamespace.MyClassName.getMyMethodName. |
dataproviders.properties | Object | The input properties for this data provider. A map of property names to either literal values or string expressions. |
components | Array | Required. The components that make up this view. |
components.definition | String | Required. The name of the component definition. |
components.name | String, Expression | The name to uniquely identify the component within the view. |
components.visibility | Boolean, Expression | Indicates whether the component is shown or hidden. If this property isn’t present or it evaluates to true, the component is shown. Otherwise, the component is hidden. |
components.properties | Object | The properties of this component. A map of property names to literal values or expressions. |
components.components | Array | The child components of this component. |
regions | Array | The regions for this view component. Not currently supported. |
Some components can handle an event like onclick or onchange, which is also configured in the view definition. See the Component Reference.
Tip
Use these examples to build your own views.
This view definition displays a message in a modal. The modal component contains a section component. The view has a title and message property, which is bound to the modal’s title and section’s text property each.
1description: "Display a message in a modal"
2schema:
3 properties:
4 title:
5 type: string
6 required: true
7 message:
8 type: string
9 required: true
10components:
11 - definition: modal
12 properties:
13 title: "{!view.properties.title}"
14 components:
15 - definition: section
16 properties:
17 text: "{!view.properties.message}"This view definition displays a modal for creating a record. The modal contains a section component with an actions component, which has a button to create the record. When clicked, the button calls the createOpportunity Apex class.
1description: "Trigger an Apex block action."
2components:
3 - definition: modal
4 properties:
5 title: "Create Record"
6 components:
7 - definition: section
8 properties:
9 text: "Which object do you want to create a record for?"
10 - definition: actions
11 name: "apex_actions"
12 components:
13 - definition: button
14 properties:
15 label: "Create Opportunity"
16 style: "primary"
17 name: "apex_action"
18 events:
19 onclick:
20 #createOpportunity must exist in the consumer org as an apex class that implements Slack.Action
21 definition: "apex__action__createOpportunity"
22 properties:
23 objectApiName: "Opportunity"This view definition creates an opportunity record when the submit button is clicked. When clicked, the button calls the submitOpportunity Apex class. The modal contains input fields with placeholders, including a select component with a list of options.
1description: "Creates an opportunity record by triggering an Apex action on submission."
2components:
3 - definition: modal
4 properties:
5 title: "Create Opportunity"
6 submitLabel: "Create"
7 events:
8 onsubmit:
9 #submitOpportunity must exist in the consumer org as an Apex class that implements Slack.ActionDispatcher
10 definition: "apex__action__submitOpportunity"
11 components:
12 - definition: input
13 properties:
14 label: "Name" # label is the field label
15 required: true
16 components:
17 - definition: textInput
18 properties:
19 name: "Name" # name should be FieldApiName
20 placeholder: "Name"
21 value: "{!view.properties.name}"
22 - definition: input
23 properties:
24 label: "Amount"
25 required: true
26 components:
27 - definition: textInput
28 properties:
29 name: "Amount"
30 placeholder: "175000"
31 - definition: input
32 properties:
33 label: "Stage"
34 required: true
35 components:
36 - definition: select
37 properties:
38 name: "StageName"
39 value: ""
40 placeholder: "Select a stage."
41 options:
42 - identifier: "Prospecting"
43 label: "Prospecting"
44 - identifier: "Qualification"
45 label: "Qualification"
46 - identifier: "Needs Analysis"
47 label: "Needs Analysis"
48 - identifier: "Value Proposition"
49 label: "Value Proposition"
50 - identifier: "Id. Decision Makers"
51 label: "Id. Decision Makers"
52 - identifier: "Perception Analysis"
53 label: "Perception Analysis"
54 - identifier: "Proposal/Price Quote"
55 label: "Proposal/Price Quote"
56 - identifier: "Negotiation/Review"
57 label: "Negotiation/Review"
58 - identifier: "Closed Won"
59 label: "Closed Won"
60 - identifier: "Closed Lost"
61 label: "Closed Lost"
62 - definition: input
63 properties:
64 label: "Close Date"
65 required: true
66 components:
67 - definition: datepicker
68 properties:
69 name: "CloseDate"
70 placeholder: "YYYY-MM-DD"Beta Feature