Google Workspace ডকুমেন্টে ডায়ালগ এবং সাইডবার

Google ডক্স, শীট বা ফর্মের সাথে আবদ্ধ স্ক্রিপ্টগুলি বিভিন্ন ধরণের ব্যবহারকারী-ইন্টারফেস উপাদানগুলি প্রদর্শন করতে পারে — পূর্বনির্মাণ সতর্কতা এবং প্রম্পট, এছাড়াও ডায়ালগ এবং সাইডবারগুলি যাতে কাস্টম HTML পরিষেবা পৃষ্ঠা রয়েছে৷ সাধারণত, এই উপাদানগুলি মেনু আইটেম থেকে খোলা হয়। (মনে রাখবেন যে Google ফর্মগুলিতে, ব্যবহারকারী-ইন্টারফেস উপাদানগুলি কেবলমাত্র একজন সম্পাদকের কাছে দৃশ্যমান হয় যিনি ফর্মটি সংশোধন করার জন্য খোলেন, এমন কোনও ব্যবহারকারীর কাছে নয় যিনি প্রতিক্রিয়া জানাতে ফর্মটি খোলেন৷)

সতর্ক সংলাপ

একটি সতর্কতা হল একটি পূর্বনির্মাণ ডায়ালগ যা একটি Google ডক্স, পত্রক, স্লাইড বা ফর্ম সম্পাদকের ভিতরে খোলে৷ এটি একটি বার্তা এবং একটি "ঠিক আছে" বোতাম প্রদর্শন করে; একটি শিরোনাম এবং বিকল্প বোতাম ঐচ্ছিক। এটি একটি ওয়েব ব্রাউজারের মধ্যে ক্লায়েন্ট-সাইড জাভাস্ক্রিপ্টে window.alert() কল করার অনুরূপ।

সংলাপ খোলা থাকাকালীন সতর্কতা সার্ভার-সাইড স্ক্রিপ্ট স্থগিত করে। ব্যবহারকারী ডায়ালগ বন্ধ করার পরে স্ক্রিপ্ট পুনরায় শুরু হয়, কিন্তু JDBC সংযোগগুলি সাসপেনশন জুড়ে থাকে না।

নিম্নলিখিত উদাহরণে দেখানো হয়েছে, Google ডক্স, ফর্ম, স্লাইড এবং পত্রক সবই Ui.alert() পদ্ধতি ব্যবহার করে, যেটি তিনটি ভেরিয়েন্টে পাওয়া যায়। ডিফল্ট "ঠিক আছে" বোতামটি ওভাররাইড করতে, buttons আর্গুমেন্ট হিসাবে Ui.ButtonSet enum থেকে একটি মান পাস করুন। ব্যবহারকারী কোন বোতামটি ক্লিক করেছে তা মূল্যায়ন করতে, alert() এর রিটার্ন মানটিকে Ui.Button enum-এর সাথে তুলনা করুন।

function onOpen() {
  SpreadsheetApp.getUi() // Or DocumentApp or SlidesApp or FormApp.
    .createMenu("Custom Menu")
    .addItem("Show alert", "showAlert")
    .addToUi();
}

function showAlert() {
  var ui = SpreadsheetApp.getUi(); // Same variations.

  var result = ui.alert(
    "Please confirm",
    "Are you sure you want to continue?",
    ui.ButtonSet.YES_NO,
  );

  // Process the user's response.
  if (result == ui.Button.YES) {
    // User clicked "Yes".
    ui.alert("Confirmation received.");
  } else {
    // User clicked "No" or X in the title bar.
    ui.alert("Permission denied.");
  }
}

প্রম্পট ডায়ালগ

একটি প্রম্পট হল একটি প্রি-বিল্ট ডায়ালগ যা Google ডক্স, শীট, স্লাইড বা ফর্ম এডিটরের মধ্যে খোলে৷ এটি একটি বার্তা, একটি পাঠ্য-ইনপুট ক্ষেত্র এবং একটি "ঠিক আছে" বোতাম প্রদর্শন করে; একটি শিরোনাম এবং বিকল্প বোতাম ঐচ্ছিক। এটি একটি ওয়েব ব্রাউজারের মধ্যে ক্লায়েন্ট-সাইড জাভাস্ক্রিপ্টে window.prompt() কল করার অনুরূপ।

ডায়ালগ খোলা থাকাকালীন প্রম্পট সার্ভার-সাইড স্ক্রিপ্ট স্থগিত করে। ব্যবহারকারী ডায়ালগ বন্ধ করার পরে স্ক্রিপ্ট পুনরায় শুরু হয়, কিন্তু JDBC সংযোগগুলি সাসপেনশন জুড়ে থাকে না।

নিম্নলিখিত উদাহরণে দেখানো হয়েছে, Google Docs¸ Forms, Slides, এবং Sheets সকলেই Ui.prompt() পদ্ধতি ব্যবহার করে, যা তিনটি ভেরিয়েন্টে পাওয়া যায়। ডিফল্ট "ঠিক আছে" বোতামটি ওভাররাইড করতে, buttons আর্গুমেন্ট হিসাবে Ui.ButtonSet enum থেকে একটি মান পাস করুন। ব্যবহারকারীর প্রতিক্রিয়া মূল্যায়ন করতে, prompt() জন্য রিটার্ন মান ক্যাপচার করুন, তারপর ব্যবহারকারীর ইনপুট পুনরুদ্ধার করতে PromptResponse.getResponseText() কল করুন এবং Ui.Button enum-এর সাথে PromptResponse.getSelectedButton() এর রিটার্ন মান তুলনা করুন।

function onOpen() {
  SpreadsheetApp.getUi() // Or DocumentApp or SlidesApp or FormApp.
    .createMenu("Custom Menu")
    .addItem("Show prompt", "showPrompt")
    .addToUi();
}

function showPrompt() {
  var ui = SpreadsheetApp.getUi(); // Same variations.

  var result = ui.prompt(
    "Let's get to know each other!",
    "Please enter your name:",
    ui.ButtonSet.OK_CANCEL,
  );

  // Process the user's response.
  var button = result.getSelectedButton();
  var text = result.getResponseText();
  if (button == ui.Button.OK) {
    // User clicked "OK".
    ui.alert("Your name is " + text + ".");
  } else if (button == ui.Button.CANCEL) {
    // User clicked "Cancel".
    ui.alert("I didn't get your name.");
  } else if (button == ui.Button.CLOSE) {
    // User clicked X in the title bar.
    ui.alert("You closed the dialog.");
  }
}

কাস্টম ডায়ালগ

একটি কাস্টম ডায়ালগ Google ডক্স, শীট, স্লাইড বা ফর্ম সম্পাদকের মধ্যে একটি HTML পরিষেবা ব্যবহারকারী ইন্টারফেস প্রদর্শন করতে পারে।

ডায়ালগ খোলা থাকার সময় কাস্টম ডায়ালগ সার্ভার-সাইড স্ক্রিপ্ট স্থগিত করে না । ক্লায়েন্ট-সাইড কম্পোনেন্ট HTML-সার্ভিস ইন্টারফেসের জন্য google.script API ব্যবহার করে সার্ভার-সাইড স্ক্রিপ্টে অ্যাসিঙ্ক্রোনাস কল করতে পারে।

ডায়ালগটি একটি HTML-সার্ভিস ইন্টারফেসের ক্লায়েন্ট সাইডে google.script.host.close() কল করে নিজেকে বন্ধ করতে পারে। ডায়ালগটি অন্য ইন্টারফেস দ্বারা বন্ধ করা যাবে না, শুধুমাত্র ব্যবহারকারী বা নিজের দ্বারা।

নিম্নলিখিত উদাহরণে দেখানো হয়েছে, Google ডক্স, ফর্ম, স্লাইড এবং শীটগুলি ডায়ালগ খুলতে Ui.showModalDialog() পদ্ধতি ব্যবহার করে।

Code.gs

function onOpen() {
  SpreadsheetApp.getUi() // Or DocumentApp or SlidesApp or FormApp.
      .createMenu('Custom Menu')
      .addItem('Show dialog', 'showDialog')
      .addToUi();
}

function showDialog() {
  var html = HtmlService.createHtmlOutputFromFile('Page')
      .setWidth(400)
      .setHeight(300);
  SpreadsheetApp.getUi() // Or DocumentApp or SlidesApp or FormApp.
      .showModalDialog(html, 'My custom dialog');
}

Page.html

Hello, world! <input type="button" value="Close" onclick="google.script.host.close()" />

কাস্টম সাইডবার

একটি সাইডবার একটি Google ডক্স, ফর্ম, স্লাইড এবং পত্রক সম্পাদকের মধ্যে একটি HTML পরিষেবা ব্যবহারকারী ইন্টারফেস প্রদর্শন করতে পারে।

ডায়ালগ খোলা থাকা অবস্থায় সাইডবার সার্ভার-সাইড স্ক্রিপ্ট স্থগিত করে না । ক্লায়েন্ট-সাইড কম্পোনেন্ট HTML-পরিষেবা ইন্টারফেসের জন্য google.script API ব্যবহার করে সার্ভার-সাইড স্ক্রিপ্টে অ্যাসিঙ্ক্রোনাস কল করতে পারে।

একটি HTML-সার্ভিস ইন্টারফেসের ক্লায়েন্ট সাইডে google.script.host.close() কল করে সাইডবার নিজেকে বন্ধ করতে পারে। সাইডবার অন্য ইন্টারফেস দ্বারা বন্ধ করা যাবে না, শুধুমাত্র ব্যবহারকারী বা নিজেই।

নিম্নলিখিত উদাহরণে দেখানো হয়েছে, Google ডক্স, ফর্ম, স্লাইড এবং শীটগুলি সাইডবার খুলতে Ui.showSidebar() পদ্ধতি ব্যবহার করে।

Code.gs

function onOpen() {
  SpreadsheetApp.getUi() // Or DocumentApp or SlidesApp or FormApp.
      .createMenu('Custom Menu')
      .addItem('Show sidebar', 'showSidebar')
      .addToUi();
}

function showSidebar() {
  var html = HtmlService.createHtmlOutputFromFile('Page')
      .setTitle('My custom sidebar');
  SpreadsheetApp.getUi() // Or DocumentApp or SlidesApp or FormApp.
      .showSidebar(html);
}

Page.html

Hello, world! <input type="button" value="Close" onclick="google.script.host.close()" />

ফাইল-খোলা ডায়ালগ

Google পিকার হল একটি JavaScript API যা ব্যবহারকারীদের Google ড্রাইভ ফাইল নির্বাচন বা আপলোড করতে দেয়। Google পিকার লাইব্রেরিটি একটি কাস্টম ডায়ালগ তৈরি করতে HTML পরিষেবাতে ব্যবহার করা যেতে পারে যা ব্যবহারকারীদের বিদ্যমান ফাইলগুলি নির্বাচন করতে বা নতুনগুলি আপলোড করতে দেয়, তারপরে আরও ব্যবহারের জন্য সেই নির্বাচনটি আপনার স্ক্রিপ্টে ফিরিয়ে দিতে পারে৷

প্রয়োজনীয়তা

অ্যাপস স্ক্রিপ্ট সহ Google পিকার ব্যবহার করার জন্য বেশ কিছু প্রয়োজনীয়তা রয়েছে৷

  • Google পিকারের জন্য আপনার পরিবেশ সেট আপ করুন

  • আপনার স্ক্রিপ্ট প্রকল্পটি অবশ্যই একটি আদর্শ Google ক্লাউড প্রকল্প ব্যবহার করবে৷

  • Apps Script প্রোজেক্ট ম্যানিফেস্টে Google Picker API-এর জন্য প্রয়োজনীয় অনুমোদনের সুযোগ নির্দিষ্ট করতে হবে যাতে ScriptApp.getOAuthToken() PickerBuilder.setOauthtoken() এর জন্য সঠিক টোকেন ফেরত দেয়।

  • PickerBuilder.setDeveloperKey() এ সেট করা API কী অ্যাপস স্ক্রিপ্টে সীমাবদ্ধ করা যেতে পারে। অ্যাপ্লিকেশন সীমাবদ্ধতার অধীনে, নিম্নলিখিত পদক্ষেপগুলি সম্পূর্ণ করুন:

    1. HTTP রেফারার (ওয়েব সাইট) নির্বাচন করুন।
    2. ওয়েবসাইট সীমাবদ্ধতার অধীনে, একটি আইটেম যোগ করুন ক্লিক করুন।
    3. Referrer এ ক্লিক করুন এবং *.google.com এ প্রবেশ করুন।
    4. আরেকটি আইটেম যোগ করুন এবং রেফারার হিসাবে *.googleusercontent.com লিখুন।
    5. সম্পন্ন ক্লিক করুন.
  • আপনাকে PickerBuilder.setOrigin(google.script.host.origin) কল করতে হবে।

উদাহরণ

নিম্নলিখিত উদাহরণটি অ্যাপস স্ক্রিপ্টে Google পিকার দেখায়।

code.gs

পিকার/code.gs
/**
 * Creates a custom menu in Google Sheets when the spreadsheet opens.
 */
function onOpen() {
  SpreadsheetApp.getUi()
    .createMenu("Picker")
    .addItem("Start", "showPicker")
    .addToUi();
}

/**
 * Displays an HTML-service dialog in Google Sheets that contains client-side
 * JavaScript code for the Google Picker API.
 */
function showPicker() {
  const html = HtmlService.createHtmlOutputFromFile("dialog.html")
    .setWidth(800)
    .setHeight(600)
    .setSandboxMode(HtmlService.SandboxMode.IFRAME);
  SpreadsheetApp.getUi().showModalDialog(html, "Select a file");
}
/**
 * Checks that the file can be accessed.
 */
function getFile(fileId) {
  return Drive.Files.get(fileId, { fields: "*" });
}

/**
 * Gets the user's OAuth 2.0 access token so that it can be passed to Picker.
 * This technique keeps Picker from needing to show its own authorization
 * dialog, but is only possible if the OAuth scope that Picker needs is
 * available in Apps Script. In this case, the function includes an unused call
 * to a DriveApp method to ensure that Apps Script requests access to all files
 * in the user's Drive.
 *
 * @return {string} The user's OAuth 2.0 access token.
 */
function getOAuthToken() {
  return ScriptApp.getOAuthToken();
}

dialog.html

পিকার/dialog.html
<!DOCTYPE html>
<html>
  <head>
    <link
      rel="stylesheet"
      href="https://ssl.gstatic.com/docs/script/css/add-ons.css"
    />
    <style>
      #result {
        display: flex;
        flex-direction: column;
        gap: 0.25em;
      }

      pre {
        font-size: x-small;
        max-height: 25vh;
        overflow-y: scroll;
        background: #eeeeee;
        padding: 1em;
        border: 1px solid #cccccc;
      }
    </style>
    <script>
      // TODO: Replace the value for DEVELOPER_KEY with the API key obtained
      // from the Google Developers Console.
      const DEVELOPER_KEY = "AIza...";
      // TODO: Replace the value for CLOUD_PROJECT_NUMBER with the project
      // number obtained from the Google Developers Console.
      const CLOUD_PROJECT_NUMBER = "1234567890";

      let pickerApiLoaded = false;
      let oauthToken;

      /**
       * Loads the Google Picker API.
       */
      function onApiLoad() {
        gapi.load("picker", {
          callback: function () {
            pickerApiLoaded = true;
          },
        });
      }

      /**
       * Gets the user's OAuth 2.0 access token from the server-side script so that
       * it can be passed to Picker. This technique keeps Picker from needing to
       * show its own authorization dialog, but is only possible if the OAuth scope
       * that Picker needs is available in Apps Script. Otherwise, your Picker code
       * will need to declare its own OAuth scopes.
       */
      function getOAuthToken() {
        google.script.run
          .withSuccessHandler((token) => {
            oauthToken = token;
            createPicker(token);
          })
          .withFailureHandler(showError)
          .getOAuthToken();
      }

      /**
       * Creates a Picker that can access the user's spreadsheets. This function
       * uses advanced options to hide the Picker's left navigation panel and
       * default title bar.
       *
       * @param {string} token An OAuth 2.0 access token that lets Picker access the
       *     file type specified in the addView call.
       */
      function createPicker(token) {
        document.getElementById("result").innerHTML = "";

        if (pickerApiLoaded && token) {
          const picker = new google.picker.PickerBuilder()
            // Instruct Picker to display only spreadsheets in Drive. For other
            // views, see https://developers.google.com/picker/reference/picker.viewid
            .addView(
              new google.picker.DocsView(
                google.picker.ViewId.SPREADSHEETS
              ).setOwnedByMe(true)
            )
            // Hide the navigation panel so that Picker fills more of the dialog.
            .enableFeature(google.picker.Feature.NAV_HIDDEN)
            // Hide the title bar since an Apps Script dialog already has a title.
            .hideTitleBar()
            .setOAuthToken(token)
            .setDeveloperKey(DEVELOPER_KEY)
            .setAppId(CLOUD_PROJECT_NUMBER)
            .setCallback(pickerCallback)
            .setOrigin(google.script.host.origin)
            .build();
          picker.setVisible(true);
        } else {
          showError("Unable to load the file picker.");
        }
      }

      /**
       * A callback function that extracts the chosen document's metadata from the
       * response object. For details on the response object, see
       * https://developers.google.com/picker/reference/picker.responseobject
       *
       * @param {object} data The response object.
       */
      function pickerCallback(data) {
        const action = data[google.picker.Response.ACTION];
        if (action == google.picker.Action.PICKED) {
          handlePicked(data);
        } else if (action == google.picker.Action.CANCEL) {
          document.getElementById("result").innerHTML = "Picker canceled.";
        }
      }

      /**
       * Handles `"PICKED"` responsed from the Google Picker.
       *
       * @param {object} data The response object.
       */
      function handlePicked(data) {
        const doc = data[google.picker.Response.DOCUMENTS][0];
        const id = doc[google.picker.Document.ID];

        google.script.run
          .withSuccessHandler((driveFilesGetResponse) => {
            // Render the response from Picker and the Drive.Files.Get API.
            const resultElement = document.getElementById("result");
            resultElement.innerHTML = "";

            for (const response of [
              {
                title: "Picker response",
                content: JSON.stringify(data, null, 2),
              },
              {
                title: "Drive.Files.Get response",
                content: JSON.stringify(driveFilesGetResponse, null, 2),
              },
            ]) {
              const titleElement = document.createElement("h3");
              titleElement.appendChild(document.createTextNode(response.title));
              resultElement.appendChild(titleElement);

              const contentElement = document.createElement("pre");
              contentElement.appendChild(
                document.createTextNode(response.content)
              );
              resultElement.appendChild(contentElement);
            }
          })
          .withFailureHandler(showError)
          .getFile(data[google.picker.Response.DOCUMENTS][0].id);
      }

      /**
       * Displays an error message within the #result element.
       *
       * @param {string} message The error message to display.
       */
      function showError(message) {
        document.getElementById("result").innerHTML = "Error: " + message;
      }
    </script>
  </head>

  <body>
    <div>
      <button onclick="getOAuthToken()">Select a file</button>
      <div id="result"></div>
    </div>
    <script src="https://apis.google.com/js/api.js?onload=onApiLoad"></script>
  </body>
</html>

appsscript.json

picker/appsscript.json
{
    "timeZone": "America/Los_Angeles",
    "exceptionLogging": "STACKDRIVER",
    "runtimeVersion": "V8",
    "oauthScopes": [
      "https://www.googleapis.com/auth/script.container.ui",
      "https://www.googleapis.com/auth/drive.file"
    ],
    "dependencies": {
      "enabledAdvancedServices": [
        {
          "userSymbol": "Drive",
          "version": "v3",
          "serviceId": "drive"
        }
      ]
    }
  }