-
Notifications
You must be signed in to change notification settings - Fork 78
added positron desktop ide module based on vs code desktop #528
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from 7 commits
f67c57a
f2b936c
b3e6d32
8248cef
9a99802
ce18970
eb4a371
eb9384c
5162eaf
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. this is not what I meant. You can remove this. I am adding this here: https://www.figma.com/board/gVD663b9aPUQzNTQ8aRdyV/AI-Integrations-in-Coder-Registry?node-id=1-41 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. sorry, I still don't know what you meant but i've removed the file :) |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| --- | ||
| display_name: "CytoShahar" | ||
| bio: "Data engineer by day, maker by night" | ||
| avatar: "./.images/avatar.jpeg" | ||
| github: "https://github.com/CytoShahar" | ||
| linkedin: "https://www.linkedin.com/in/shaharzrihen" # Optional | ||
| status: "community" | ||
| --- | ||
|
|
||
| # Shahar Zrihen | ||
|
|
||
| Data engineer by day, maker by night |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,38 @@ | ||
| --- | ||
| display_name: Positron Desktop | ||
| description: Add a one-click button to launch Positron Desktop | ||
| icon: ../../../../.icons/positron.svg | ||
| verified: true | ||
| tags: [ide, positron] | ||
| --- | ||
|
|
||
| # Positron Desktop | ||
|
|
||
| Add a button to open any workspace with a single click. | ||
|
|
||
| Uses the [Coder Remote VS Code Extension](https://github.com/coder/vscode-coder). | ||
|
|
||
| ```tf | ||
| module "positron" { | ||
| count = data.coder_workspace.me.start_count | ||
| source = "registry.coder.com/cytoshahar/positron/coder" | ||
| version = "1.0.0" | ||
| agent_id = coder_agent.example.id | ||
| } | ||
| ``` | ||
|
|
||
| ## Examples | ||
|
|
||
| ### Open in a specific directory | ||
|
|
||
| ```tf | ||
| module "positron" { | ||
| count = data.coder_workspace.me.start_count | ||
| source = "registry.coder.com/cytoshahar/positron/coder" | ||
| version = "1.0.0" | ||
| agent_id = coder_agent.example.id | ||
| folder = "/home/coder/project" | ||
| } | ||
| ``` | ||
|
|
||
| Based on the [Coder VS Code Desktop Module](https://github.com/coder/registry/tree/main/registry/coder/modules/vscode-desktop) |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,88 @@ | ||
| import { describe, expect, it } from "bun:test"; | ||
| import { | ||
| runTerraformApply, | ||
| runTerraformInit, | ||
| testRequiredVariables, | ||
| } from "~test"; | ||
|
|
||
| describe("positron-desktop", async () => { | ||
| await runTerraformInit(import.meta.dir); | ||
|
|
||
| testRequiredVariables(import.meta.dir, { | ||
| agent_id: "foo", | ||
| }); | ||
|
|
||
| it("default output", async () => { | ||
| const state = await runTerraformApply(import.meta.dir, { | ||
| agent_id: "foo", | ||
| }); | ||
| expect(state.outputs.positron_url.value).toBe( | ||
| "positron://coder.coder-remote/open?owner=default&workspace=default&url=https://mydeployment.coder.com&token=$SESSION_TOKEN", | ||
| ); | ||
|
|
||
| const coder_app = state.resources.find( | ||
| (res) => res.type === "coder_app" && res.name === "positron", | ||
| ); | ||
|
|
||
| expect(coder_app).not.toBeNull(); | ||
| expect(coder_app?.instances.length).toBe(1); | ||
| expect(coder_app?.instances[0].attributes.order).toBeNull(); | ||
| }); | ||
|
|
||
| it("adds folder", async () => { | ||
| const state = await runTerraformApply(import.meta.dir, { | ||
| agent_id: "foo", | ||
| folder: "/foo/bar", | ||
| }); | ||
| expect(state.outputs.positron_url.value).toBe( | ||
| "positron://coder.coder-remote/open?owner=default&workspace=default&folder=/foo/bar&url=https://mydeployment.coder.com&token=$SESSION_TOKEN", | ||
| ); | ||
| }); | ||
|
|
||
| it("adds folder and open_recent", async () => { | ||
| const state = await runTerraformApply(import.meta.dir, { | ||
| agent_id: "foo", | ||
| folder: "/foo/bar", | ||
| open_recent: "true", | ||
| }); | ||
| expect(state.outputs.positron_url.value).toBe( | ||
| "positron://coder.coder-remote/open?owner=default&workspace=default&folder=/foo/bar&openRecent&url=https://mydeployment.coder.com&token=$SESSION_TOKEN", | ||
| ); | ||
| }); | ||
|
|
||
| it("adds folder but not open_recent", async () => { | ||
| const state = await runTerraformApply(import.meta.dir, { | ||
| agent_id: "foo", | ||
| folder: "/foo/bar", | ||
| openRecent: "false", | ||
| }); | ||
| expect(state.outputs.positron_url.value).toBe( | ||
| "positron://coder.coder-remote/open?owner=default&workspace=default&folder=/foo/bar&url=https://mydeployment.coder.com&token=$SESSION_TOKEN", | ||
| ); | ||
| }); | ||
|
|
||
| it("adds open_recent", async () => { | ||
| const state = await runTerraformApply(import.meta.dir, { | ||
| agent_id: "foo", | ||
| open_recent: "true", | ||
| }); | ||
| expect(state.outputs.positron_url.value).toBe( | ||
| "positron://coder.coder-remote/open?owner=default&workspace=default&openRecent&url=https://mydeployment.coder.com&token=$SESSION_TOKEN", | ||
| ); | ||
| }); | ||
|
|
||
| it("expect order to be set", async () => { | ||
| const state = await runTerraformApply(import.meta.dir, { | ||
| agent_id: "foo", | ||
| order: "22", | ||
| }); | ||
|
|
||
| const coder_app = state.resources.find( | ||
| (res) => res.type === "coder_app" && res.name === "positron", | ||
| ); | ||
|
|
||
| expect(coder_app).not.toBeNull(); | ||
| expect(coder_app?.instances.length).toBe(1); | ||
| expect(coder_app?.instances[0].attributes.order).toBe(22); | ||
| }); | ||
| }); |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,74 @@ | ||
| terraform { | ||
| required_version = ">= 1.0" | ||
|
|
||
| required_providers { | ||
| coder = { | ||
| source = "coder/coder" | ||
| version = ">= 2.5" | ||
| } | ||
| } | ||
| } | ||
|
|
||
| locals { | ||
| icon_url = "/icon/positron.svg" | ||
| } | ||
CytoShahar marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
|
||
| variable "agent_id" { | ||
| type = string | ||
| description = "The ID of a Coder agent." | ||
| } | ||
|
|
||
| variable "folder" { | ||
| type = string | ||
| description = "The folder to open in Positron." | ||
| default = "" | ||
| } | ||
|
|
||
| variable "open_recent" { | ||
| type = bool | ||
| description = "Open the most recent workspace or folder. Falls back to the folder if there is no recent workspace or folder to open." | ||
| default = false | ||
| } | ||
|
|
||
| variable "order" { | ||
| type = number | ||
| description = "The order determines the position of app in the UI presentation. The lowest order is shown first and apps with equal order are sorted by name (ascending order)." | ||
| default = null | ||
| } | ||
|
|
||
| variable "group" { | ||
| type = string | ||
| description = "The name of a group that this app belongs to." | ||
| default = null | ||
| } | ||
|
|
||
| data "coder_workspace" "me" {} | ||
| data "coder_workspace_owner" "me" {} | ||
|
|
||
| resource "coder_app" "positron" { | ||
| agent_id = var.agent_id | ||
| external = true | ||
| icon = local.icon_url | ||
| slug = "positron" | ||
| display_name = "Positron Desktop" | ||
| order = var.order | ||
| group = var.group | ||
|
|
||
| url = join("", [ | ||
| "positron://coder.coder-remote/open", | ||
| "?owner=", | ||
| data.coder_workspace_owner.me.name, | ||
| "&workspace=", | ||
| data.coder_workspace.me.name, | ||
| var.folder != "" ? join("", ["&folder=", var.folder]) : "", | ||
| var.open_recent ? "&openRecent" : "", | ||
| "&url=", | ||
| data.coder_workspace.me.access_url, | ||
| "&token=$SESSION_TOKEN", | ||
| ]) | ||
| } | ||
|
|
||
| output "positron_url" { | ||
| value = coder_app.positron.url | ||
| description = "Positron Desktop URL." | ||
| } | ||
Uh oh!
There was an error while loading. Please reload this page.