0.3.111 • Published 6 days ago

@amazon-codecatalyst/blueprint-component.source-repositories v0.3.111

Weekly downloads
-
License
Apache-2.0
Repository
-
Last release
6 days ago
import {...} from '@amazon-codecatalyst/blueprint-component.source-repositories'

Repository & Source Code Component

A repository is used by codecatalyst to store some code. It takes a name as input. Most components are stored in a repository, such as source code files, workflows, as well as other components such as MDE workspaces. The source-repository component also exports components used for managing files and static assets.

const repository = new SourceRepository(this, {
  title: 'my-new-repository-title',
});

Repositories have naming constraints see full documentation.

Adding a file

We can write some text file to a repository with the SourceFile construct. This operation is one of the most common use cases and takes a repository, a filepath, and some text contents. If the file path doesn't exist within a repository, this component will create all the needed folders too!

new SourceFile(repository, `path/to/my/file/in/repo/file.txt`, 'my file contents');

Note: all the file constructs are last-write-wins. If you write two files to the same location within the same repository, the last execution will overwrite whatever is there. You can use this feature to "layer" generated code, and its especially useful when extending over the code blueprints may have generated.

Adding a generic file

Sometimes we want to write arbitrary bits to our repository. We can read from a buffer and use the File construct.

new File(repository, `path/to/my/file/in/repo/file.img`, new Buffer(...));

new File(repository, `path/to/my/file/in/repo/new-img.img`, new StaticAsset('path/to/image.png').content());

Copying files

The easiest way to get started with some generated code is to copy-paste some starter code and then generate more code on top of that base. For this we can place our code inside the static-assets directory and then target that code with the StaticAsset construct. The pathing in this case will always start at the root of the static-assets directory.

const starterCode = new StaticAsset('path/to/file/file.txt')
const starterCodeText = new StaticAsset('path/to/file/file.txt').toString()
const starterCodeRawContent = new StaticAsset('path/to/image/hello.png').content()

const starterCodePath = new StaticAsset('path/to/image/hello.png').path()
// starterCodePath is equal to 'path/to/image/hello.png'

A subclass of StaticAsset is SubstitionAsset. This functions exactly the same way but allows us to run a mustache subsitition over the file instead.

const starterCodeText = new SubstitionAsset('path/to/file/file.txt').subsitite({
  'my_variable': 'subbed value1',
  'another_variable': 'subbed value2'
})

This can be really useful for doing copy-and-replace style generation. Note: running subsitite over files that aren't text interpretable is usually going to produce errors.

Targetting multiple files

Static Assets support glob targetting through a static function on StaticAsset and its subclasses called findAll(...), this will return a list of static assets preloaded with their paths, contents, and more. We can chain this with File constructions to copy-paste everything in the static-assets directory.

StaticAsset.findAll().forEach(item => {
  new File(repository, item.path(), item.content());
});

or we can target just .md files under a specific folder and its subfolders in static-assets and substitute the same variables in each file.

SubstitionAsset.findAll('my-folder/**/*.md').forEach(item => {
  new SourceFile(repository, item.path(), item.subsitite({
    'my_variable': 'subbed value1',
    'another_variable': 'subbed value2'
  }));
});

Example 1: Creating a new repository

Repository component is used to create a new repository in a generated project:

import { SourceRepository } from '@amazon-codecatalyst/blueprint-component.source-repositories';
...
const repository = new SourceRepository(this, { title: 'myRepo' });

You can then add files or workflows to the created repository:

Example 2: Adding file(s) and/or workflow(s) to an existing repository

import { SourceFile } from '@amazon-codecatalyst/blueprint-component.source-repositories';
import { Workflow } from '@amazon-codecatalyst/blueprint-component.workflows';
...
new SourceFile(repository, 'README.md', 'This is the content of my readme');
new Workflow(this, repository, {/**...workflowDefinition...**/});

Combining the above two pieces of code would generate a single repository named myRepo with a source file README.md as well as a codecatalyst workflow at the root.

0.3.111

6 days ago

0.3.110

11 days ago

0.3.109

14 days ago

0.3.108

14 days ago

0.3.107

17 days ago

0.3.105

19 days ago

0.3.106

19 days ago

0.3.103

20 days ago

0.3.104

20 days ago

0.3.101

21 days ago

0.3.102

21 days ago

0.3.100

24 days ago

0.3.99

24 days ago

0.3.98

25 days ago

0.3.97

26 days ago

0.3.96

27 days ago

0.3.95

28 days ago

0.3.94

1 month ago

0.3.93

1 month ago

0.3.92

1 month ago

0.3.91

1 month ago

0.3.90

1 month ago

0.3.89

1 month ago

0.3.88

1 month ago

0.3.87

1 month ago

0.3.86

1 month ago

0.3.85

1 month ago

0.3.84

1 month ago

0.3.82

2 months ago

0.3.81

2 months ago

0.3.79

2 months ago

0.3.80

2 months ago

0.3.78

2 months ago

0.3.77

2 months ago

0.3.76

2 months ago

0.3.75

2 months ago

0.3.74

2 months ago

0.3.73

2 months ago

0.3.72

2 months ago

0.3.71

2 months ago

0.3.70

2 months ago

0.3.69

2 months ago

0.3.68

2 months ago

0.3.67

2 months ago

0.3.66

2 months ago

0.3.65

2 months ago

0.3.64

2 months ago

0.3.63

2 months ago

0.3.62

2 months ago

0.3.61

2 months ago

0.3.60

3 months ago

0.3.59

3 months ago

0.3.58

3 months ago

0.3.57

3 months ago

0.3.53

3 months ago

0.3.52

3 months ago

0.3.55

3 months ago

0.3.54

3 months ago

0.3.51

3 months ago

0.3.50

3 months ago

0.3.49

4 months ago

0.3.48

4 months ago

0.3.47

4 months ago

0.3.46

4 months ago

0.3.42

4 months ago

0.3.41

4 months ago

0.3.45

4 months ago

0.3.44

4 months ago

0.3.43

4 months ago

0.3.40

4 months ago

0.3.39

4 months ago

0.3.38

4 months ago

0.3.37

4 months ago

0.3.36

4 months ago

0.3.35

5 months ago

0.3.34

5 months ago

0.3.33

5 months ago

0.3.31

5 months ago

0.3.32

5 months ago

0.3.30

5 months ago

0.3.29

5 months ago

0.3.28

6 months ago

0.3.27

6 months ago

0.3.26

6 months ago

0.3.25

6 months ago

0.3.24

6 months ago

0.3.23

6 months ago

0.3.22

6 months ago

0.3.21

7 months ago

0.3.20

7 months ago

0.3.19

7 months ago

0.3.18

7 months ago

0.3.17

7 months ago

0.3.16

7 months ago

0.3.15

7 months ago

0.3.14

7 months ago

0.3.13

7 months ago

0.3.12

7 months ago

0.3.11

7 months ago

0.3.10

7 months ago

0.3.9

7 months ago

0.3.8

7 months ago

0.3.7

7 months ago

0.3.6

7 months ago

0.3.5

7 months ago

0.3.4

7 months ago

0.3.3

7 months ago

0.3.2

7 months ago

0.3.1

7 months ago

0.3.0

7 months ago

0.0.0

7 months ago