tldraw/vscode/extension/CONTRIBUTING.md
Francois Laberge 0b15992464
Create VS Code Extension (#4)
* Start of vscode extension. Current code is copy/paste from custom editor samples from Microsoft. We need to evaluate if using their text based customer editor or full on new custom editor is the way to go

* Not sure how I missed these files. Adding them

* Have a custom editor triggering off of .tldr files. Added gitignores for generated folder. Have iframed tldraw loading and security policies set to do so

* Can now load a .tldr file. No saving support yet. Load times are slow, mostly from editor loading up I think

* Have temporary solution for saving working now too.

* Missed af ile

* Backing up progress in syncing tldraw editor history changes

* Removed console

* ...

* ...

* Cleanup

* Have save working well now.

* Moved extension into 'integrations' folder

* Trying out WebviewPanelOptions.retainContextWhenHidden=true and it's looking promising

* Some cleanup

* Trying out new  @tldraw/editor module

* Have prototype loading using new embedded editor

* ...

* Shaved off 1 second from editor loadtime

* Got save working again. Had to manually fixuppreviously created .tldr files as the format changed a bit

* More tuning

* Starting work to get new tldraw/tldraw working.

* Added example tldr files to vscode package

* Removed old editor package

* Have onChange working with latest fix. Back to iframed for a few mom

* Fixed up .tldr files

* Have iframe free extension working, but requiring hand crafted building

* ...

* Better handling of empty .tldr files. Still an issue with freshly created files trying to save as .js or .json

* Thoroughly added comments for the extension code. Need to add diagrams though and now will document/comment/diagram the editor src code

* Added comments to all of the editor side of the VS Code Extension. Also cleaned up the code

* More cleanup of VS Code Extension code and have script automating generating the initial webview's html content from the cra editor static build

* Tweaks to watch logic

* Improved scripts for publishing to VS Code Marketplace

* Improved name

* Made the smiley angry

* Reverted

* Turned smiley mad

* Turned smiley mad

* Made smiley sad

* Have a lot of plumbing working for Github codespaces and github.dev support

* Imported new tldraw vs code extension code. Added instructions for workflows

* Quick fix

* Fix for corrupted arrows files

* Updated editor build step to new location

* Merge branch 'main' into vscode-extension-v1, add local file updating

* Update App.tsx

* Cleanup, bumped to 0.0.124 @tldraw/tdlraw and published a 0.10.0 version of hte extension

* Added Trello/Kanban style file

* Finished video

* brings up to date

* Fix scripts

* Update README.md

* Update .babelrc

Co-authored-by: Steve Ruiz <steveruizok@gmail.com>
2021-11-06 16:49:53 +00:00

6.1 KiB

VS Code Extension

This folder contains code implementing a VS Code extension for working with tldraw within VS Code. Files are saved locally and thus play well with version control. Target use case is developer documentation.

Todos

  • Get live reloading working while extension developing (debug launched)
    • Watching and rebuilding is working, it's just hot-updating the running editor instances that's failing
    • It currently at least updates every time you open a new editor, currently it's the websocket needed for the live reloading logic that is failing to connect.
  • Backlog

Test Cases

Here's a list of functionality and behavior we'd like working for an initial beta.

  • Saving
  • Save (Command+S or menu) should work
  • Save As (menu or shortcut)
  • Undo/Redo
  • Should reflect correctly in VS Code menus (can/can't do it based on stack)
  • Create new file using either of these methods
    • Use VS Code's "New File", name the file with a .tldr extension
    • Use the Tldraw extensions registered command to create a blank .tldr file
  • Opening an
  • The editor should communicate that a file isn't valid when loading it
  • Detect and prevent multiple instances of the editor (For now)

Things we're cutting

  • Distinguishing app state from user state (selection, zoom, pan, etc)

Running The Extension

  • Setup/Run the editor (a create react app that houses the tldraw component)
  • cd integrations/vscode/editor
  • yarn
  • yarn start
  • To setup/run the extension
  • In a new terminal
    • Install dependencies
      • yarn
    • Open just the extension folder in VS Code (necessary to use it's launch.json)
      • cd integrations/vscode/extension
      • code .
    • Run the extension using F5 (the launch.json setups watching too)
    • This will open a new VS Code window where the extension is installed in memory
    • Open a folder containing some .tldr files. Ex. tldraw/integrations/extension/examples
    • Select a .tldr file to test
    • You'll have to toggle between the extension/editor/debug VS Code instances to change things and see the results
    • NOTE: Hot reloading doesn't work right now for the editor's create-react-app workflow. I have yet to figure out how to set the websocket host, which currently assumes it's housed on the same host as the page it's loaded in (which for the extension is some weird custom protocol)
    • If you close and reopen a .tldr file, it will load the latest change though

Publishing/Packaging Extensions

This stuff needs to be fully automated!!! We're not quite there yet.

  • Make sure you have the vsce command line tool installed

  • npm install -g vsce

  • Build the editor static site

  • cd integrations/vscode/editor

  • yarn build

  • This will build a static version of the create react app and put it into integrations/vscode/editor.

  • Bump the package.json version

    • Just do this manually in the file
  • Change the code in integrations/vscode/extension/src/get-html.ts so it uses the production path. It should look like this:

       //return getDevModeHTML(context, webview, documentContent);
       return getProductionModeHTML(context, webview, documentContent);
    
  • Run script that copies over the latest static file path hashes

    • TODO: Find this script. It seems to have gone missing and I can't find it in history
    • The manual version is to look at the latest editor-build/index.html and copy/reference it into get-html.ts
  • Compile the extension in production mode

    • npm run package-web
  • Package up the extension as an extension installer .vsix

    • vsce package
    • A file with a name like: wardlt-0.8.0.vsix will now be put in the extension root
      • TODO: Make this get build to a proper temp directory like dist
  • Before publishing test using the .vsix based installation workflow available in VS Code Desktop

  • Use the Web UI to publish the latest extension by uploading the .vsix file

  • Now test it quickly

  • Read more about this topic here: Publishing Extensions

Good References