ユニバーサル アクション

ユニバーサル アクションは、ユーザーが選択したときに新しいウェブページを開いたり、新しい UI カードを表示したり、特定の Apps Script 関数を実行したりできるメニュー項目要素です。動作はカードアクションと非常によく似ていますが、現在のアドオンのコンテキストに関係なく、ユニバーサル アクションは常にアドオン内のすべてのカードに配置されます。

ユニバーサル アクションを使用すると、ユーザーがアドオンのどの部分を操作しても、特定の機能に常にアクセスできるようにできます。ユニバーサル アクションのユースケースの例を次に示します。

  • 設定ウェブページを開く(または設定カードを表示する)。
  • ユーザーにヘルプ情報を表示する。
  • 新しいワークフロー(「新しい顧客を追加」など)を開始します。
  • ユーザーがアドオンに関するフィードバックを送信できるカードを表示します。

現在のコンテキストに依存しないアクションがある場合は、そのアクションをユニバーサル アクションにすることを検討してください。

ユニバーサル アクションの使用

ユニバーサル アクションは、アドオンのプロジェクト マニフェストで設定します。ユニバーサル アクションを設定すると、アドオンのユーザーはいつでもそのアクションを使用できるようになります。ユーザーがカードを表示している場合、定義したユニバーサル アクションのセットは、そのカードに定義したカード アクションの後に、カード メニューに常に表示されます。ユニバーサル アクションは、アドオンのマニフェストで定義されている順序でカード メニューに表示されます。

ユニバーサル アクションの設定

ユニバーサル アクションは、アドオンのマニフェストで構成します。詳しくは、マニフェストをご覧ください。

アクションごとに、そのアクションのメニューに表示するテキストを指定します。次に、アクションでウェブページを新しいタブで直接開く必要があることを示す openLink フィールドを指定します。または、ユニバーサル アクションが選択されたときに実行する Apps Script コールバック関数を指定する runFunction フィールドを指定することもできます。

runFunction を使用する場合、指定されたコールバック関数は通常、次のいずれかを行います。

  • ビルドされた UniversalActionResponse オブジェクトを返すことで、すぐに表示される UI カードをビルドします。
  • 作成された UniversalActionResponse オブジェクトを返すことで、URL を開きます(他のタスクを実行した後)。
  • 新しいカードに切り替えたり URL を開いたりしないバックグラウンド タスクを実行します。この場合、コールバック関数は何も返しません。

コールバック関数は、開いているカードとアドオンのコンテキストに関する情報が含まれるイベント オブジェクトを渡されます。

次のコード スニペットは、Gmail を拡張しながらユニバーサル アクションを使用する Google Workspace アドオンのマニフェストの抜粋の例を示しています。このコードでは、アドオンが開いているメッセージを送信したユーザーを特定できるように、メタデータ スコープを明示的に設定しています。

  "oauthScopes": [
    "https://www.googleapis.com/auth/gmail.addons.current.message.metadata"
  ],
  "addOns": {
    "common": {
      "name": "Universal Actions Only Addon",
      "logoUrl": "https://www.example.com/hosted/images/2x/my-icon.png",
      "openLinkUrlPrefixes": [
        "https://www.google.com",
        "https://www.example.com/urlbase"
      ],
      "universalActions": [{
          "label": "Open google.com",
          "openLink": "https://www.google.com"
        }, {
          "label": "Open contact URL",
          "runFunction": "openContactURL"
        }, {
          "label": "Open settings",
          "runFunction": "createSettingsResponse"
        }, {
          "label": "Run background sync",
          "runFunction": "runBackgroundSync"
      }],
      ...
    },
    "gmail": {
      "contextualTriggers": [
        {
          "unconditional": {},
          "onTriggerFunction": "getContextualAddOn"
        }
      ]
    },
    ...
  },
  ...

上の例で定義した 3 つのユニバーサル アクションは、次のことを行います。

  • [google.com を開く] を選択すると、新しいタブで https://www.google.com が開きます。
  • Open contact URL は、開く URL を決定する関数を実行し、OpenLink オブジェクトを使用して新しいタブで開きます。このコードは、送信者のメールアドレスを使用して URL を構築します。
  • Open settings は、アドオン スクリプト プロジェクトで定義された createSettingsCards() 関数を実行します。この関数は、アドオン設定などの情報が含まれるカードのセットが含まれている有効な UniversalActionResponse オブジェクトを返します。関数がこのオブジェクトの作成を完了すると、UI にカードのリストが表示されます(複数のカードを返すをご覧ください)。
  • バックグラウンド同期を実行する: アドオン スクリプト プロジェクトで定義された runBackgroundSync() 関数を実行します。この関数はカードをビルドしません。代わりに、UI を変更しない他のバックグラウンド タスクを実行します。この関数は UniversalActionResponse を返さないため、関数が終了しても UI に新しいカードは表示されません。代わりに、関数が実行されている間、UI に読み込みインジケーター スピナーが表示されます。

openContactURL()createSettingsResponse()runBackgroundSync() 関数を作成する方法の例を次に示します。

/**
 * Open a contact URL.
 * @param {Object} e an event object
 * @return {UniversalActionResponse}
 */
function openContactURL(e) {
  // Activate temporary Gmail scopes, in this case so that the
  // open message metadata can be read.
  var accessToken = e.gmail.accessToken;
  GmailApp.setCurrentMessageAccessToken(accessToken);

  // Build URL to open based on a base URL and the sender's email.
  // This URL must be included in the openLinkUrlPrefixes whitelist.
  var messageId = e.gmail.messageId;
  var message = GmailApp.getMessageById(messageId);
  var sender = message.getFrom();
  var url = "https://www.example.com/urlbase/" + sender;
  return CardService.newUniversalActionResponseBuilder()
      .setOpenLink(CardService.newOpenLink()
          .setUrl(url))
      .build();
}

/**
 * Create a collection of cards to control the add-on settings and
 * present other information. These cards are displayed in a list when
 * the user selects the associated "Open settings" universal action.
 *
 * @param {Object} e an event object
 * @return {UniversalActionResponse}
 */
function createSettingsResponse(e) {
  return CardService.newUniversalActionResponseBuilder()
      .displayAddOnCards(
          [createSettingCard(), createAboutCard()])
      .build();
}

/**
 * Create and return a built settings card.
 * @return {Card}
 */
function createSettingCard() {
  return CardService.newCardBuilder()
      .setHeader(CardService.newCardHeader().setTitle('Settings'))
      .addSection(CardService.newCardSection()
          .addWidget(CardService.newSelectionInput()
              .setType(CardService.SelectionInputType.CHECK_BOX)
              .addItem("Ask before deleting contact", "contact", false)
              .addItem("Ask before deleting cache", "cache", false)
              .addItem("Preserve contact ID after deletion", "contactId", false))
          // ... continue adding widgets or other sections here ...
      ).build();   // Don't forget to build the card!
}

/**
 * Create and return a built 'About' informational card.
 * @return {Card}
 */
function createAboutCard() {
  return CardService.newCardBuilder()
      .setHeader(CardService.newCardHeader().setTitle('About'))
      .addSection(CardService.newCardSection()
          .addWidget(CardService.newTextParagraph()
              .setText('This add-on manages contact information. For more '
                  + 'details see the <a href="https://www.example.com/help">'
                  + 'help page</a>.'))
      // ... add other information widgets or sections here ...
      ).build();  // Don't forget to build the card!
}

/**
 * Run background tasks, none of which should alter the UI.
 * Also records the time of sync in the script properties.
 *
 * @param {Object} e an event object
 */
function runBackgroundSync(e) {
  var props = PropertiesService.getUserProperties();
  props.setProperty("syncTime", new Date().toString());

  syncWithContacts();  // Not shown.
  updateCache();       // Not shown.
  validate();          // Not shown.

  // no return value tells the UI to keep showing the current card.
}