This repository has been archived by the owner on Oct 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 278
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Brute Ratel Parser Alpha & Custom Parser Foundation (#143)
Co-authored-by: Austin Golding <[email protected]> Co-authored-by: Courtney Carpenter <[email protected]> Co-authored-by: Sebastian Ang <[email protected]>
- Loading branch information
1 parent
e7a3d96
commit 6fca4d0
Showing
214 changed files
with
4,756 additions
and
1,531 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
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
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
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
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
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
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
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
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
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
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
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
31 changes: 31 additions & 0 deletions
31
applications/client/src/store/graphql/CampaignParserModel.base.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,31 @@ | ||
/* This is a mk-gql generated file, don't modify it manually */ | ||
/* eslint-disable */ | ||
/* tslint:disable */ | ||
// @ts-nocheck | ||
|
||
import { types, prop, tProp, Model, Ref, idProp } from 'mobx-keystone'; | ||
import { QueryBuilder } from 'mk-gql'; | ||
|
||
/** | ||
* CampaignParserBase | ||
* auto generated base class for the model CampaignParserModel. | ||
*/ | ||
export class CampaignParserModelBase extends Model({ | ||
__typename: tProp('CampaignParser'), | ||
parserName: prop<string | null>().withSetter(), | ||
path: prop<string | null>().withSetter(), | ||
}) {} | ||
|
||
export class CampaignParserModelSelector extends QueryBuilder { | ||
get parserName() { | ||
return this.__attr(`parserName`); | ||
} | ||
get path() { | ||
return this.__attr(`path`); | ||
} | ||
} | ||
export function selectFromCampaignParser() { | ||
return new CampaignParserModelSelector(); | ||
} | ||
|
||
export const campaignParserModelPrimitives = selectFromCampaignParser().parserName.path; |
15 changes: 15 additions & 0 deletions
15
applications/client/src/store/graphql/CampaignParserModel.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,15 @@ | ||
import { ExtendedModel, model } from 'mobx-keystone'; | ||
import { CampaignParserModelBase } from './CampaignParserModel.base'; | ||
|
||
/* A graphql query fragment builders for CampaignParserModel */ | ||
export { | ||
selectFromCampaignParser, | ||
campaignParserModelPrimitives, | ||
CampaignParserModelSelector, | ||
} from './CampaignParserModel.base'; | ||
|
||
/** | ||
* CampaignParserModel | ||
*/ | ||
@model('CampaignParser') | ||
export class CampaignParserModel extends ExtendedModel(CampaignParserModelBase, {}) {} |
27 changes: 27 additions & 0 deletions
27
applications/client/src/store/graphql/FileDisplayModel.base.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,27 @@ | ||
/* This is a mk-gql generated file, don't modify it manually */ | ||
/* eslint-disable */ | ||
/* tslint:disable */ | ||
// @ts-nocheck | ||
|
||
import { types, prop, tProp, Model, Ref, idProp } from 'mobx-keystone'; | ||
import { QueryBuilder } from 'mk-gql'; | ||
|
||
/** | ||
* FileDisplayBase | ||
* auto generated base class for the model FileDisplayModel. | ||
*/ | ||
export class FileDisplayModelBase extends Model({ | ||
__typename: tProp('FileDisplay'), | ||
editable: prop<boolean>().withSetter(), | ||
}) {} | ||
|
||
export class FileDisplayModelSelector extends QueryBuilder { | ||
get editable() { | ||
return this.__attr(`editable`); | ||
} | ||
} | ||
export function selectFromFileDisplay() { | ||
return new FileDisplayModelSelector(); | ||
} | ||
|
||
export const fileDisplayModelPrimitives = selectFromFileDisplay().editable; |
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,11 @@ | ||
import { ExtendedModel, model } from 'mobx-keystone'; | ||
import { FileDisplayModelBase } from './FileDisplayModel.base'; | ||
|
||
/* A graphql query fragment builders for FileDisplayModel */ | ||
export { selectFromFileDisplay, fileDisplayModelPrimitives, FileDisplayModelSelector } from './FileDisplayModel.base'; | ||
|
||
/** | ||
* FileDisplayModel | ||
*/ | ||
@model('FileDisplay') | ||
export class FileDisplayModel extends ExtendedModel(FileDisplayModelBase, {}) {} |
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
Oops, something went wrong.