forked from DefinitelyTyped/DefinitelyTyped
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add types/tests for grid-template-parser (DefinitelyTyped#36557)
- Loading branch information
1 parent
49bdfca
commit c35d0df
Showing
4 changed files
with
219 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
import { | ||
grid, | ||
template, | ||
area, | ||
rect, | ||
minColumnStart, | ||
maxColumnStart, | ||
minColumnEnd, | ||
maxColumnEnd, | ||
minRowStart, | ||
maxRowStart, | ||
minRowEnd, | ||
maxRowEnd, | ||
} from 'grid-template-parser'; | ||
|
||
const testGrid = grid(` | ||
"a a a b b" | ||
"a a a b b" | ||
". . c c c" | ||
"d d d d d" | ||
`); | ||
|
||
template({ | ||
width: 5, | ||
height: 4, | ||
areas: { | ||
a: { | ||
column: { start: 1, end: 4, span: 3 }, | ||
row: { start: 1, end: 3, span: 2 }, | ||
}, | ||
b: { | ||
column: { start: 3, end: 6, span: 3 }, | ||
row: { start: 3, end: 5, span: 2 }, | ||
}, | ||
}, | ||
}); | ||
|
||
const a = area({ | ||
x: 0, | ||
y: 0, | ||
width: 3, | ||
height: 2, | ||
}); | ||
|
||
const b = area({ | ||
x: 2, | ||
y: 2, | ||
width: 3, | ||
height: 2, | ||
}); | ||
|
||
template({ | ||
width: 5, | ||
height: 4, | ||
areas: { a, b }, | ||
}); | ||
|
||
rect({ | ||
column: { start: 1, end: 4, span: 3 }, | ||
row: { start: 1, end: 3, span: 2 }, | ||
}); | ||
|
||
minColumnStart(testGrid); | ||
maxColumnStart(testGrid); | ||
minColumnEnd(testGrid); | ||
maxColumnEnd(testGrid); | ||
minRowStart(testGrid); | ||
maxRowStart(testGrid); | ||
minRowEnd(testGrid); | ||
maxRowEnd(testGrid); |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,125 @@ | ||
// Type definitions for grid-template-parser 0.3 | ||
// Project: https://github.com/anthonydugois/grid-template-parser | ||
// Definitions by: Avi Vahl <https://github.com/AviVahl> | ||
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped | ||
// TypeScript Version: 2.1 | ||
|
||
/** | ||
* Parses a grid template. | ||
* | ||
* @param template the grid template to parse. | ||
* @returns an object representation of the grid template. | ||
*/ | ||
export function grid(template: string): Grid; | ||
|
||
/** | ||
* Builds a grid template from an object representation. | ||
* | ||
* @param grid the grid to build. | ||
* @returns the equivalent grid template. | ||
*/ | ||
export function template(grid: Grid): string; | ||
|
||
/** | ||
* Converts an area into a rect. | ||
* | ||
* @param area the area to convert. | ||
* @returns the equivalent rect. | ||
*/ | ||
export function rect(area?: Partial<Area>): Rect; | ||
|
||
/** | ||
* Converts a rect into an area. | ||
* | ||
* @param rect the rect to convert. | ||
* @returns The equivalent area. | ||
*/ | ||
export function area(rect?: Partial<Rect>): Area; | ||
|
||
/** | ||
* Finds the min column start of all grid areas. | ||
* | ||
* @param grid the grid to analyze. | ||
* @returns the min column start. | ||
*/ | ||
export function minColumnStart(grid: Grid): number; | ||
|
||
/** | ||
* Finds the max column start of all grid areas. | ||
* | ||
* @param grid the grid to analyze. | ||
* @returns the max column start. | ||
*/ | ||
export function maxColumnStart(grid: Grid): number; | ||
|
||
/** | ||
* Finds the min column end of all grid areas. | ||
* | ||
* @param grid the grid to analyze. | ||
* @returns the min column end. | ||
*/ | ||
export function minColumnEnd(grid: Grid): number; | ||
|
||
/** | ||
* Finds the max column end of all grid areas. | ||
* | ||
* @param grid the grid to analyze. | ||
* @returns the max column end. | ||
*/ | ||
export function maxColumnEnd(grid: Grid): number; | ||
|
||
/** | ||
* Finds the min row start of all grid areas. | ||
* | ||
* @param grid the grid to analyze. | ||
* @returns the min row start. | ||
*/ | ||
export function minRowStart(grid: Grid): number; | ||
|
||
/** | ||
* Finds the max row start of all grid areas. | ||
* | ||
* @param grid the grid to analyze. | ||
* @returns the max row start. | ||
*/ | ||
export function maxRowStart(grid: Grid): number; | ||
|
||
/** | ||
* Finds the min row end of all grid areas. | ||
* | ||
* @param grid the grid to analyze. | ||
* @returns the min row end. | ||
*/ | ||
export function minRowEnd(grid: Grid): number; | ||
|
||
/** | ||
* Finds the max row end of all grid areas. | ||
* | ||
* @param grid the grid to analyze. | ||
* @returns the max row end. | ||
*/ | ||
export function maxRowEnd(grid: Grid): number; | ||
|
||
export interface Track { | ||
start: number; | ||
end: number; | ||
span: number; | ||
} | ||
|
||
export interface Area { | ||
row: Track; | ||
column: Track; | ||
} | ||
|
||
export interface Rect { | ||
x: number; | ||
y: number; | ||
width: number; | ||
height: number; | ||
} | ||
|
||
export interface Grid { | ||
width: number; | ||
height: number; | ||
areas: { [key: string]: Area }; | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
{ | ||
"compilerOptions": { | ||
"module": "commonjs", | ||
"lib": [ | ||
"es6" | ||
], | ||
"noImplicitAny": true, | ||
"noImplicitThis": true, | ||
"strictFunctionTypes": true, | ||
"strictNullChecks": true, | ||
"baseUrl": "../", | ||
"typeRoots": [ | ||
"../" | ||
], | ||
"types": [], | ||
"noEmit": true, | ||
"forceConsistentCasingInFileNames": true | ||
}, | ||
"files": [ | ||
"index.d.ts", | ||
"grid-template-parser-tests.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{ "extends": "dtslint/dt.json" } |