Files
docx-js/docs/contribution-guidelines.md

210 lines
4.8 KiB
Markdown
Raw Normal View History

2018-08-04 03:28:27 +01:00
# Contribution Guidelines
2023-02-27 21:06:54 +00:00
- Include documentation reference(s) at the top of each file as a comment. For example:
2018-10-23 23:44:50 +01:00
```ts
2018-10-23 23:44:50 +01:00
// http://officeopenxml.com/WPdocument.php
```
2023-03-16 03:24:51 +00:00
<!-- cSpell:ignore datypic -->
2023-02-27 21:06:54 +00:00
It can be a link to `officeopenxml.com` or `datypic.com` etc.
It could also be a reference to the official ECMA-376 standard: https://www.ecma-international.org/publications-and-standards/standards/ecma-376/
- Include a portion of the schema as a comment for cross reference. For example:
```ts
// <xsd:element name="tbl" type="CT_Tbl" minOccurs="0" maxOccurs="1"/>
```
2020-07-30 11:42:55 +01:00
- Follow Prettier standards, and consider using the [Prettier VSCode](https://marketplace.visualstudio.com/items?itemName=esbenp.prettier-vscode) plugin.
2018-10-23 23:44:50 +01:00
- Follow the `ESLint` rules
2018-10-23 23:44:50 +01:00
2018-10-21 04:50:57 +01:00
## Always think about the user
Put yourself in their position, and imagine how they would feel about the feature you wrote.
2018-10-21 04:50:57 +01:00
2019-04-04 15:35:41 -04:00
1. Is it easy to use?
2018-10-21 04:50:57 +01:00
2. Has it been documented well?
2019-04-04 15:35:41 -04:00
3. Is it intuitive?
2020-07-30 11:42:55 +01:00
4. Is it declarative?
2018-10-21 04:50:57 +01:00
5. Is it fun to use?
## Good Commit Names
Please write good commit messages when making a commit: https://chris.beams.io/posts/git-commit/
**Do not:**
2020-07-30 11:42:55 +01:00
2022-07-06 14:05:37 +01:00
<!-- cspell:disable -->
2018-10-21 04:50:57 +01:00
```
c // What?
2022-07-06 14:05:37 +01:00
rtl // Adding acronyms without explaining anything else is not helpful
2018-10-21 04:50:57 +01:00
works! // Glad its working, but the message is not helpful
demo updated // Getting better, but capitalize the first letter
Unesesary coment removed // Make sure to use correct spelling
```
2022-07-06 14:05:37 +01:00
<!-- cspell:enable -->
2018-10-21 04:50:57 +01:00
2018-10-23 23:44:50 +01:00
**Do**
2018-11-13 14:38:26 +00:00
2019-04-04 15:35:41 -04:00
`ITableFloatOptions` is an interface for a JSON of primitives. The end user would need to pass in a json object and not need to worry about the internals:
2018-11-13 14:38:26 +00:00
```ts
2018-10-23 23:44:50 +01:00
public float(tableFloatOptions: ITableFloatOptions): Table
```
2018-08-04 03:28:27 +01:00
2022-07-06 14:05:37 +01:00
## Declarative API
2018-08-07 01:25:28 +01:00
2022-07-06 14:05:37 +01:00
Make sure the API is declarative, so no _method calling_ or _mutation_. This is a design decision, consistent with the rest of the project. There are benefits to declarative code over other styles of code, explained here: https://dzone.com/articles/why-declarative-coding-makes-you-a-better-programm
2018-08-07 01:25:28 +01:00
2020-07-30 11:42:55 +01:00
**Do not:**
2018-08-07 01:25:28 +01:00
2020-07-30 11:42:55 +01:00
```ts
const paragraph = doc.createParagraph();
const text = paragraph.createText();
text.contents = "Hello World";
```
2018-08-07 01:25:28 +01:00
2020-07-30 11:42:55 +01:00
**Do**
2018-08-07 01:25:28 +01:00
2020-07-30 11:42:55 +01:00
```ts
2021-03-19 20:53:56 +00:00
const doc = new Document({
sections: [{
children: [
new Paragraph({
children: [new TextRun("Hello World")],
}),
],
}];
2020-07-30 11:42:55 +01:00
});
```
2018-08-07 01:25:28 +01:00
## Getters and Setters
Getters and Setters are done with a capital letter like so:
```ts
2018-08-07 01:25:28 +01:00
public get Level() {
2018-10-23 23:44:50 +01:00
...
2018-08-07 01:25:28 +01:00
}
```
2020-07-30 11:42:55 +01:00
This is the convention of this project. There is no performance advantage by doing this. It means we don't need to prefix all private variables with `_`:
2018-08-07 01:25:28 +01:00
2018-10-21 04:50:57 +01:00
**Do not:**
2018-08-07 01:25:28 +01:00
```ts
2018-08-07 01:25:28 +01:00
private get _level: string;
```
2018-10-21 04:50:57 +01:00
**Do**
2018-08-07 01:25:28 +01:00
```ts
2018-08-07 01:25:28 +01:00
private get level: string;
```
2018-10-21 04:50:57 +01:00
## Interfaces over type alias
Do not use `type`, but rather use `Interfaces`. `type` cannot be extended, and a class cannot implement it.
> "In general, use what you want ( type alias / interface ) just be consistent"
> "always use interface for public API's definition when authoring a library or 3rd party ambient type definitions"
>
2020-07-30 11:42:55 +01:00
> - https://medium.com/@martin_hotell/interface-vs-type-alias-in-typescript-2-7-2a8f1777af4c
2018-10-21 04:50:57 +01:00
`Interface` is generally preferred over `type`: https://stackoverflow.com/questions/37233735/typescript-interfaces-vs-types
**Do not:**
```ts
2020-07-30 11:42:55 +01:00
type RelationshipFileInfo = { id: number; target: string };
2018-10-21 04:50:57 +01:00
```
**Do:**
```ts
2018-10-21 04:50:57 +01:00
interface IRelationshipFileInfo {
id: number;
target: string;
}
```
## String enums vs type
To take full advantage of TypeScript's typing system, its best to use `string enums`:
**Do not:**
```ts
2018-10-21 04:50:57 +01:00
type WeaponType = "bow" | "sword" | "wand";
```
**Do:**
```ts
2018-10-21 04:50:57 +01:00
enum WeaponType = {
BOW = "bow",
SWORD = "sword",
WAND = "wand",
}
```
2019-03-05 13:32:09 +00:00
## Spell correctly, in full and in American English
2018-10-21 04:50:57 +01:00
**Do not:**
2020-07-30 11:42:55 +01:00
```ts
2020-07-30 11:42:55 +01:00
readdy; // misspelling
perm; // abbreviation
conf; // abbreviation
cnty; // abbreviation
relationFile; // abbreviation
colour; // U.K. English
2018-10-21 04:50:57 +01:00
```
**Do:**
2020-07-30 11:42:55 +01:00
```ts
2020-07-30 11:42:55 +01:00
ready;
permission;
config;
country;
relationshipFile;
color;
2018-10-21 04:50:57 +01:00
```
## Keep files small (within reason)
To minimize merge conflicts, reduce complexity, and improve readability, keep the files small.
## Name files and folders with `/foo-bar/kebab-case.ts`
To be consistent and in-line with the project, name files `like-this.ts`.
https://stackoverflow.com/questions/7273316/what-is-the-javascript-filename-naming-convention
2018-08-04 03:28:27 +01:00
## Testing
Please write a test of every file you make and suffix it with `.spec.ts`.
Here is a template of a test:
```ts
2018-08-04 03:28:27 +01:00
import { assert } from "chai";
describe("ClassName", () => {
beforeEach(() => {
// TODO
});
describe("#methodName()", () => {
it("should ", () => {
// TODO
});
});
});
```
2018-10-21 04:50:57 +01:00
Try not to use the `tests/utility.ts` file as this is being deprecated.