Wiki source code of DriveParentCollab
Show last authors
| author | version | line-number | content |
|---|---|---|---|
| 1 | {{html clean="false"}} | ||
| 2 | |||
| 3 | <label for="driveURL">Drive document url</label> | ||
| 4 | <input type="text" id="driveURL" placeholder="Put drive document url here" /> | ||
| 5 | <button id="opencollab">Open Collab</button> | ||
| 6 | <script> | ||
| 7 | (function() { | ||
| 8 | window.addEventListener("DOMContentLoaded", function() { | ||
| 9 | const openCollabButton = document.getElementById("opencollab"); | ||
| 10 | openCollabButton.addEventListener("click", findCollab); | ||
| 11 | }); | ||
| 12 | function findCollab() { | ||
| 13 | const driveURL = document.getElementById("driveURL"); | ||
| 14 | const driveId = getDriveId(driveURL.value); | ||
| 15 | if(driveId) { | ||
| 16 | console.log('Perform request with id:', driveId); | ||
| 17 | fetch(`/rest/v1/collabs?driveId=${driveId}`) | ||
| 18 | .then(res => res.json()) | ||
| 19 | .then(json => { | ||
| 20 | console.log(json); | ||
| 21 | const { link } = json; | ||
| 22 | console.log(link) | ||
| 23 | // window.location.pathname = link; | ||
| 24 | }) | ||
| 25 | } | ||
| 26 | } | ||
| 27 | function getDriveId(driveURL) { | ||
| 28 | const url = new URL(driveURL); | ||
| 29 | const re = /\/(library|lib)\/([^/]*)\/.*/; | ||
| 30 | const id = re.exec(url.pathname)[2]; | ||
| 31 | return id; | ||
| 32 | } | ||
| 33 | })(); | ||
| 34 | </script> | ||
| 35 | {{/html}} |