|
| 1 | +import { CompositeTreeNode } from '@theia/core/lib/browser/tree'; |
| 2 | +import { nls } from '@theia/core/lib/common/nls'; |
| 3 | +import { inject, injectable } from '@theia/core/shared/inversify'; |
| 4 | +import { CreateApi } from '../create/create-api'; |
| 5 | +import { CreateFeatures } from '../create/create-features'; |
| 6 | +import { CreateUri } from '../create/create-uri'; |
| 7 | +import { Create, isNotFound } from '../create/typings'; |
| 8 | +import { CloudSketchbookTree } from '../widgets/cloud-sketchbook/cloud-sketchbook-tree'; |
| 9 | +import { CloudSketchbookTreeModel } from '../widgets/cloud-sketchbook/cloud-sketchbook-tree-model'; |
| 10 | +import { CloudSketchbookTreeWidget } from '../widgets/cloud-sketchbook/cloud-sketchbook-tree-widget'; |
| 11 | +import { SketchbookWidget } from '../widgets/sketchbook/sketchbook-widget'; |
| 12 | +import { SketchbookWidgetContribution } from '../widgets/sketchbook/sketchbook-widget-contribution'; |
| 13 | +import { SketchContribution } from './contribution'; |
| 14 | + |
| 15 | +export function sketchAlreadyExists(input: string): string { |
| 16 | + return nls.localize( |
| 17 | + 'arduino/cloudSketch/alreadyExists', |
| 18 | + "Cloud sketch '{0}' already exists.", |
| 19 | + input |
| 20 | + ); |
| 21 | +} |
| 22 | +export function sketchNotFound(input: string): string { |
| 23 | + return nls.localize( |
| 24 | + 'arduino/cloudSketch/notFound', |
| 25 | + "Could not pull the cloud sketch '{0}'. It does not exist.", |
| 26 | + input |
| 27 | + ); |
| 28 | +} |
| 29 | +export const synchronizingSketchbook = nls.localize( |
| 30 | + 'arduino/cloudSketch/synchronizingSketchbook', |
| 31 | + 'Synchronizing sketchbook...' |
| 32 | +); |
| 33 | +export function pullingSketch(input: string): string { |
| 34 | + return nls.localize( |
| 35 | + 'arduino/cloudSketch/pulling', |
| 36 | + "Synchronizing sketchbook, pulling '{0}'...", |
| 37 | + input |
| 38 | + ); |
| 39 | +} |
| 40 | +export function pushingSketch(input: string): string { |
| 41 | + return nls.localize( |
| 42 | + 'arduino/cloudSketch/pushing', |
| 43 | + "Synchronizing sketchbook, pushing '{0}'...", |
| 44 | + input |
| 45 | + ); |
| 46 | +} |
| 47 | + |
| 48 | +@injectable() |
| 49 | +export abstract class CloudSketchContribution extends SketchContribution { |
| 50 | + @inject(SketchbookWidgetContribution) |
| 51 | + private readonly widgetContribution: SketchbookWidgetContribution; |
| 52 | + @inject(CreateApi) |
| 53 | + protected readonly createApi: CreateApi; |
| 54 | + @inject(CreateFeatures) |
| 55 | + protected readonly createFeatures: CreateFeatures; |
| 56 | + |
| 57 | + protected async treeModel(): Promise< |
| 58 | + (CloudSketchbookTreeModel & { root: CompositeTreeNode }) | undefined |
| 59 | + > { |
| 60 | + const { enabled, session } = this.createFeatures; |
| 61 | + if (enabled && session) { |
| 62 | + const widget = await this.widgetContribution.widget; |
| 63 | + const treeModel = this.treeModelFrom(widget); |
| 64 | + if (treeModel) { |
| 65 | + const root = treeModel.root; |
| 66 | + if (CompositeTreeNode.is(root)) { |
| 67 | + return treeModel as CloudSketchbookTreeModel & { |
| 68 | + root: CompositeTreeNode; |
| 69 | + }; |
| 70 | + } |
| 71 | + } |
| 72 | + } |
| 73 | + return undefined; |
| 74 | + } |
| 75 | + |
| 76 | + protected async pull( |
| 77 | + sketch: Create.Sketch |
| 78 | + ): Promise<CloudSketchbookTree.CloudSketchDirNode | undefined> { |
| 79 | + const treeModel = await this.treeModel(); |
| 80 | + if (!treeModel) { |
| 81 | + return undefined; |
| 82 | + } |
| 83 | + const id = CreateUri.toUri(sketch).path.toString(); |
| 84 | + const node = treeModel.getNode(id); |
| 85 | + if (!node) { |
| 86 | + throw new Error( |
| 87 | + `Could not find cloud sketchbook tree node with ID: ${id}.` |
| 88 | + ); |
| 89 | + } |
| 90 | + if (!CloudSketchbookTree.CloudSketchDirNode.is(node)) { |
| 91 | + throw new Error( |
| 92 | + `Cloud sketchbook tree node expected to represent a directory but it did not. Tree node ID: ${id}.` |
| 93 | + ); |
| 94 | + } |
| 95 | + try { |
| 96 | + await treeModel.sketchbookTree().pull({ node }); |
| 97 | + return node; |
| 98 | + } catch (err) { |
| 99 | + if (isNotFound(err)) { |
| 100 | + await treeModel.refresh(); |
| 101 | + this.messageService.error(sketchNotFound(sketch.name)); |
| 102 | + return undefined; |
| 103 | + } |
| 104 | + throw err; |
| 105 | + } |
| 106 | + } |
| 107 | + |
| 108 | + private treeModelFrom( |
| 109 | + widget: SketchbookWidget |
| 110 | + ): CloudSketchbookTreeModel | undefined { |
| 111 | + for (const treeWidget of widget.getTreeWidgets()) { |
| 112 | + if (treeWidget instanceof CloudSketchbookTreeWidget) { |
| 113 | + const model = treeWidget.model; |
| 114 | + if (model instanceof CloudSketchbookTreeModel) { |
| 115 | + return model; |
| 116 | + } |
| 117 | + } |
| 118 | + } |
| 119 | + return undefined; |
| 120 | + } |
| 121 | +} |
0 commit comments