-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add min required library versions for generated components (#302)
- Loading branch information
1 parent
8b02361
commit a8cefbf
Showing
7 changed files
with
310 additions
and
10 deletions.
There are no files selected for viewing
43 changes: 43 additions & 0 deletions
43
packages/codegen-ui-react/lib/__tests__/react-studio-dependency-provider.test.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,43 @@ | ||
/* | ||
Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. | ||
Licensed under the Apache License, Version 2.0 (the "License"). | ||
You may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
import semver from 'semver'; | ||
import { ReactRequiredDependencyProvider } from '..'; | ||
|
||
describe('ReactStudioDependencyProvider', () => { | ||
const requiredDependencies = new ReactRequiredDependencyProvider().getRequiredDependencies(); | ||
|
||
describe('getRequiredDependencies', () => { | ||
it('has required dependencies', () => { | ||
expect(requiredDependencies.length).toBeGreaterThan(0); | ||
}); | ||
|
||
it('includes ui-react', () => { | ||
expect(requiredDependencies.filter((dep) => dep.dependencyName === '@aws-amplify/ui-react')).toBeTruthy(); | ||
}); | ||
|
||
it('includes all valid semver values', () => { | ||
requiredDependencies.forEach((dep) => { | ||
expect(semver.valid(dep.supportedSemVerPattern)).toBeDefined(); | ||
}); | ||
}); | ||
|
||
it('includes reasons on all dependencies', () => { | ||
requiredDependencies.forEach((dep) => { | ||
expect(dep.reason.length).toBeGreaterThan(0); | ||
}); | ||
}); | ||
}); | ||
}); |
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
32 changes: 32 additions & 0 deletions
32
packages/codegen-ui-react/lib/react-required-dependency-provider.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,32 @@ | ||
/* | ||
Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. | ||
Licensed under the Apache License, Version 2.0 (the "License"). | ||
You may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
import { RequiredDependency, RequiredDependencyProvider } from '@aws-amplify/codegen-ui'; | ||
|
||
type SemVerRequiredDependency = RequiredDependency & { | ||
supportedSemVerPattern: string; | ||
}; | ||
|
||
export class ReactRequiredDependencyProvider extends RequiredDependencyProvider<SemVerRequiredDependency> { | ||
getRequiredDependencies(): SemVerRequiredDependency[] { | ||
return [ | ||
{ | ||
dependencyName: '@aws-amplify/ui-react', | ||
supportedSemVerPattern: '^2.1.4', | ||
reason: 'Required to leverage amplify ui primitives, and studio component helper functions.', | ||
}, | ||
]; | ||
} | ||
} |
Oops, something went wrong.