Neste guia, descrevemos como configurar e executar uma amostra Complemento do Google Meet.
Objetivos
- Configure a amostra.
- Execute a amostra.
Pré-requisitos
- Uma conta do Google Workspace com acesso ao Google Meet.
- um projeto do Google Cloud;
- Node.js e npm instalado.
Configure a amostra
No seu diretório de trabalho, execute o seguinte comando para inicializar o seu projeto:
npm init
No diretório de trabalho, instale o Express.js:
npm install express --save
Instale o SDK de complementos do Meet para Web:
npm install @googleworkspace/meet-addons --save
No diretório de trabalho, crie um arquivo chamado
index.js
e cole o seguinte código:const express = require('express'); const path = require('path'); var app = express(); app = require("https-localhost")(); app.use(express.static(path.join(__dirname, '/'))); app.use('/', express.static(__dirname + '/node_modules/@googleworkspace/meet-addons')); app.get('/sidepanel', function(req, res){ res.render(path.join(__dirname, 'sidepanel.html')); }); app.get('/mainstage', function(req, res){ res.render(path.join(__dirname, 'mainstage.html')); }); app.listen(3000);
No diretório de trabalho, crie um arquivo chamado
mainstage.html
e cole o seguinte código:<html style="width: 100%; height: 100%"> <head> <title>Main Stage Add On</title> <script src="meet.addons.js"></script> </head> <body style="width: 100%; height: 100%; margin: 0; background: white;"> <div style="display: flex; flex-direction: column; height: 100%"> <h1>Main Stage Add-on</h1> <div> <div> <button id="get-collaboration-starting-state"> getCollaborationStartingState </button> </div> <div id="receivedCollaborationStartingState" style="margin-left: 20px; width: 300px; overflow-wrap: anywhere"></div> </div> </div> <script> let mainStageClient; async function init() { const session = await window.meet.addon.createAddonSession({ cloudProjectNumber: "CLOUD_PROJECT_NUMBER", }); console.log("Successfully constructed the add-on session."); const mainStageClient = await session.createMainStageClient(); console.log("Successfully constructed main stage client."); document .getElementById('get-collaboration-starting-state') .addEventListener( 'click', async () => { document.getElementById( 'receivedCollaborationStartingState').textContent = JSON.stringify( await mainStageClient.getCollaborationStartingState()); }); } document.body.onload = () => { init(); }; </script> </body> </html>
No diretório de trabalho, crie um arquivo chamado
sidepanel.html
e cole o seguinte código:<html style="width: 100%; height: 100%"> <head> <title>Side Panel Add-on</title> <script src="meet.addons.js"></script> </head> <body style="width: 100%; height: 100%; margin: 0"> <div style="display: flex; flex-direction: column; height: 100%"> <h1>Side Panel Add-on</h1> <div> <div> <button id="set-collaboration-starting-state"> setCollaborationStartingState </button> </div> <div> <input type="text" id="sidePanelIframeUrl" style="margin-left: 20px" value="https://localhost:3000/sidepanel.html" /> </div> <div> <input type="text" id="mainStageIframeUrl" style="margin-left: 20px" value="https://localhost:3000/mainstage.html" /> </div> <div> <input type="text" id="additionalData" style="margin-left: 20px" value="additional data" /> </div> </div> </div> <script> let sidePanelClient; async function init() { const session = await window.meet.addon.createAddonSession({ cloudProjectNumber: "CLOUD_PROJECT_NUMBER", }); console.log("Successfully constructed the add-on session."); sidePanelClient = await session.createSidePanelClient(); console.log("Successfully constructed side panel client."); document .getElementById('set-collaboration-starting-state') .addEventListener( 'click', async () => { const sidePanelIframeUrlInputElement = document.getElementById('sidePanelIframeUrl'); const mainStageIframeUrlInputElement = document.getElementById('mainStageIframeUrl'); const additionalDataInputElement = document.getElementById('additionalData'); await sidePanelClient.setCollaborationStartingState({ sidePanelUrl: sidePanelIframeUrlInputElement.value, mainStageUrl: mainStageIframeUrlInputElement.value, additionalData: additionalDataInputElement.value, }); }); } document.body.onload = () => { init(); }; </script> </body> </html>
Substitua o seguinte para os arquivos
mainstage.html
esidepanel.html
:CLOUD_PROJECT_NUMBER
: o número do projeto Projeto do Google Cloud
No seu diretório de trabalho, instale o https-localhost pacote:
npm install https-localhost --save
No diretório de trabalho, execute o exemplo:
node index.js
No navegador, acesse
https://localhost:3000/mainstage.html
ehttps://localhost:3000/sidepanel.html
para verificar as páginas da Web.
Criar o complemento do Meet
Configure a implantação do complemento seguindo as instruções sobre como criar um complemento do Meet.
Executar a amostra
Acesse o Meet.
Clique em Atividades .
Na seção Seus complementos, você vai encontrar
Google Meet Add-ons Quickstart
Selecione-o para executar .