View badge.graphql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
query { | |
badge( | |
network: gnosis, | |
id: "0xf61cabba1e6fc166a66bca0fcaa83762edb6d4bd-10000009", | |
) { | |
balance | |
metadata { | |
name | |
description | |
image |
View external-script.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
console.log('Hello World From External source'); |
View Markdium-JSON.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"assets": [ | |
"apps/vs-code/src/assets", | |
"apps/vs-code/src/package.json" | |
] |
View Markdium-typescript.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
RouterModule.forRoot([], { useHash: true }) |
View Markdium-JSON.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"version": "2.0.0", | |
"tasks": [{ | |
"type": "npm", | |
"script": "watch", | |
"problemMatcher": "$tsc-watch", | |
"isBackground": true, | |
"presentation": { | |
"reveal": "never" | |
}, |
View Markdium-typescript.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { commands, ExtensionContext, window, ViewColumn } from 'vscode'; | |
// On activation | |
export function activate(context: ExtensionContext) { | |
// Register command "start" | |
commands.registerCommand('start', () => { | |
const panel = window.createWebviewPanel( | |
'studio', // Key used to reference the panel | |
'Studio', // Title display in the tab | |
ViewColumn.Active, // Editor column to show the new webview panel in. |
View Markdium-typescript.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { commands, ExtensionContext, window, ViewColumn, Uri } from 'vscode'; | |
import { promises as fs } from 'fs'; | |
import { join } from 'path'; | |
// On activation | |
export function activate(context: ExtensionContext) { | |
// Register command "start" | |
commands.registerCommand('start', async () => { | |
const panel = window.createWebviewPanel( | |
'studio', |
View Markdium-JSON.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "studio", | |
"version": "0.0.0", | |
"main": "main.js", | |
"engines": { | |
"vscode": "^1.44.0" | |
}, | |
"contributes": { | |
"commands": [{ | |
"command": "start", |
View Markdium-typescript.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const index = join(context.extensionPath, 'studio/index.html'); | |
// Refresh the webview on update from the code | |
const updateWebview = async () => { | |
const html = await fs.readFile(index, 'utf-8'); | |
panel.webview.html = html.replace(matchLinks, toUri); | |
} | |
// In dev mode listen on changes from index.html & update the view | |
if (!environment.production) { |
View Markdium-typescript.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { commands, ExtensionContext, window } from 'vscode'; | |
// On activation | |
export function activate(context: ExtensionContext) { | |
// Register command "start" | |
commands.registerCommand('start', () => { | |
window.showInformationMessage('Hello World'); | |
}) | |
} |
NewerOlder