Skip to content

Commit 5d49905

Browse files
Renamed from simplr-forms to react-forms. (#95)
* Renamed from simplr-forms to react-forms. * Line endings updated. * mvdir moved into tools directory.
1 parent e844359 commit 5d49905

File tree

157 files changed

+6603
-6604
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

157 files changed

+6603
-6604
lines changed

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ paket-files/
252252
*.sln.iml
253253
yarn.lock
254254

255-
packages/simplr-forms-test
255+
packages/react-forms-test
256256

257257
dist
258258
@types

.travis.yml

+15-15
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
1-
language: node_js
2-
notifications:
3-
email:
4-
on_success: never
5-
on_failure: change
6-
node_js:
7-
- stable
8-
before_install:
9-
- "npm install -g npm@^5.0.3"
10-
- "npm install -g typescript@^2.3"
11-
script:
12-
- npm run generate
13-
- npm run tools-build
14-
- npm run source-build
15-
- npm test
1+
language: node_js
2+
notifications:
3+
email:
4+
on_success: never
5+
on_failure: change
6+
node_js:
7+
- stable
8+
before_install:
9+
- "npm install -g npm@^5.0.3"
10+
- "npm install -g typescript@^2.3"
11+
script:
12+
- npm run generate
13+
- npm run tools-build
14+
- npm run source-build
15+
- npm test

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
1-
# simplr-forms
1+
# @simplr/react-forms
22
Declarative forms for React.
33

44
Includes declarative modifiers, normalizers and validators.
55

66
At the moment library is work-in-progress. We will try to document some of the notes here, in GitHub.
7-
Feel free to comment on [PRs](https://github.com/SimplrJS/simplr-forms/pulls?utf8=%E2%9C%93&q=is%3Apr%20) and open [issues](https://github.com/SimplrJS/simplr-forms/issues).
7+
Feel free to comment on [PRs](https://github.com/SimplrJS/react-forms/pulls?utf8=%E2%9C%93&q=is%3Apr%20) and open [issues](https://github.com/SimplrJS/react-forms/issues).
88

99
### Development
1010

11-
Latest published version should be in the [master](https://github.com/SimplrJS/simplr-forms/tree/master) branch.
12-
Development is happening in the [dev](https://github.com/SimplrJS/simplr-forms/tree/dev) and feature branches.
11+
Latest published version should be in the [master](https://github.com/SimplrJS/react-forms/tree/master) branch.
12+
Development is happening in the [dev](https://github.com/SimplrJS/react-forms/tree/dev) and feature branches.
1313

1414
Development right now is being done by [SimplrJS](https://github.com/SimplrJS) team inside [QuatroDev](http://quatrodev.com):
1515
* [Dovydas](https://twitter.com/dovydasnav) (QuatroDev) [[GH](https://github.com/DovydasNavickas)]

package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
2-
"name": "simplr-forms-repo",
2+
"name": "@simplr/react-forms-repo",
33
"private": true,
44
"scripts": {
55
"generate": "rush generate",
6-
"tools-build": "npm run rush-tools -- run gulp-build -e simplr-mvdir",
7-
"source-build": "npm run rush-tools -- run build -e simplr-mvdir",
8-
"test": "npm run rush-tools -- run test -e simplr-mvdir",
6+
"tools-build": "npm run rush-tools -- run gulp-build -e @simplr/mvdir",
7+
"source-build": "npm run rush-tools -- run build -e @simplr/mvdir",
8+
"test": "npm run rush-tools -- run test -e @simplr/mvdir",
99
"rush-tools": "ts-node ./tools/rush-tools.ts",
1010
"publish": "npm run rush-tools -- publish"
1111
},
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
*.js
2-
**/*d.ts
1+
*.js
2+
**/*d.ts
File renamed without changes.
Original file line numberDiff line numberDiff line change
@@ -1,57 +1,57 @@
1-
import * as React from "react";
2-
import { mount } from "enzyme";
3-
import * as Sinon from "sinon";
4-
5-
import { FormStore } from "simplr-forms/stores";
6-
7-
import { Form } from "../../src/components/form";
8-
import { Text } from "../../src/components/text";
9-
import { Clear } from "../../src/components/clear";
10-
11-
describe("Clear button", () => {
12-
let sandbox: Sinon.SinonSandbox;
13-
14-
beforeEach(() => {
15-
sandbox = Sinon.sandbox.create();
16-
});
17-
18-
afterEach(() => {
19-
sandbox.restore();
20-
});
21-
22-
it("clears all fields", () => {
23-
const callback = sandbox.stub(FormStore.prototype, "ClearFields");
24-
25-
const wrapper = mount(<Form>
26-
<Text name="field" />
27-
<Clear>Clear form</Clear>
28-
</Form>);
29-
30-
wrapper.find("button").simulate("click");
31-
32-
expect(callback.called).toBe(true);
33-
});
34-
35-
it("clears fields by fieldsIds", () => {
36-
const callback = sandbox.stub(FormStore.prototype, "ClearFields");
37-
const fieldsIds: string[] = [];
38-
for (let i = 0; i < 5; i++) {
39-
fieldsIds.push(`text-${i}`);
40-
}
41-
const fields: JSX.Element[] = [];
42-
fieldsIds.forEach(value => {
43-
fields.push(<Text name={value} key={value} />);
44-
});
45-
46-
const wrapper = mount(<Form>
47-
{fields}
48-
<Clear fieldIds={fieldsIds}>Clear form</Clear>
49-
</Form>);
50-
51-
wrapper.find("button").simulate("click");
52-
53-
expect(callback.called).toBe(true);
54-
// first click, first argument(fieldIds)
55-
expect(callback.args[0][0]).toBe(fieldsIds);
56-
});
57-
});
1+
import * as React from "react";
2+
import { mount } from "enzyme";
3+
import * as Sinon from "sinon";
4+
5+
import { FormStore } from "@simplr/react-forms/stores";
6+
7+
import { Form } from "../../src/components/form";
8+
import { Text } from "../../src/components/text";
9+
import { Clear } from "../../src/components/clear";
10+
11+
describe("Clear button", () => {
12+
let sandbox: Sinon.SinonSandbox;
13+
14+
beforeEach(() => {
15+
sandbox = Sinon.sandbox.create();
16+
});
17+
18+
afterEach(() => {
19+
sandbox.restore();
20+
});
21+
22+
it("clears all fields", () => {
23+
const callback = sandbox.stub(FormStore.prototype, "ClearFields");
24+
25+
const wrapper = mount(<Form>
26+
<Text name="field" />
27+
<Clear>Clear form</Clear>
28+
</Form>);
29+
30+
wrapper.find("button").simulate("click");
31+
32+
expect(callback.called).toBe(true);
33+
});
34+
35+
it("clears fields by fieldsIds", () => {
36+
const callback = sandbox.stub(FormStore.prototype, "ClearFields");
37+
const fieldsIds: string[] = [];
38+
for (let i = 0; i < 5; i++) {
39+
fieldsIds.push(`text-${i}`);
40+
}
41+
const fields: JSX.Element[] = [];
42+
fieldsIds.forEach(value => {
43+
fields.push(<Text name={value} key={value} />);
44+
});
45+
46+
const wrapper = mount(<Form>
47+
{fields}
48+
<Clear fieldIds={fieldsIds}>Clear form</Clear>
49+
</Form>);
50+
51+
wrapper.find("button").simulate("click");
52+
53+
expect(callback.called).toBe(true);
54+
// first click, first argument(fieldIds)
55+
expect(callback.args[0][0]).toBe(fieldsIds);
56+
});
57+
});
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,37 @@
1-
import * as React from "react";
2-
import { mount } from "enzyme";
3-
import * as Sinon from "sinon";
4-
5-
import { FSHContainer, FormStoresHandler } from "simplr-forms/stores";
6-
7-
import { Form } from "../../src/components/form";
8-
9-
describe("Form", () => {
10-
beforeEach(() => {
11-
FSHContainer.SetFormStoresHandler(new FormStoresHandler(), true);
12-
});
13-
14-
it("calls submit callback when submit button is clicked", () => {
15-
const submitCallback = Sinon.stub();
16-
17-
const wrapper = mount(<Form onSubmit={submitCallback}>
18-
<button type="submit">Submit</button>
19-
</Form>);
20-
21-
wrapper.find("button").simulate("submit");
22-
23-
expect(submitCallback.called).toBe(true);
24-
});
25-
26-
it("calls submit callback when submit called from FormStore", () => {
27-
const formId = "form-id";
28-
const submitCallback = Sinon.stub();
29-
30-
mount(<Form formId={formId} onSubmit={submitCallback}></Form>);
31-
32-
const formStore = FSHContainer.FormStoresHandler.GetStore(formId);
33-
formStore.InitiateFormSubmit();
34-
35-
expect(submitCallback.called).toBe(true);
36-
});
37-
});
1+
import * as React from "react";
2+
import { mount } from "enzyme";
3+
import * as Sinon from "sinon";
4+
5+
import { FSHContainer, FormStoresHandler } from "@simplr/react-forms/stores";
6+
7+
import { Form } from "../../src/components/form";
8+
9+
describe("Form", () => {
10+
beforeEach(() => {
11+
FSHContainer.SetFormStoresHandler(new FormStoresHandler(), true);
12+
});
13+
14+
it("calls submit callback when submit button is clicked", () => {
15+
const submitCallback = Sinon.stub();
16+
17+
const wrapper = mount(<Form onSubmit={submitCallback}>
18+
<button type="submit">Submit</button>
19+
</Form>);
20+
21+
wrapper.find("button").simulate("submit");
22+
23+
expect(submitCallback.called).toBe(true);
24+
});
25+
26+
it("calls submit callback when submit called from FormStore", () => {
27+
const formId = "form-id";
28+
const submitCallback = Sinon.stub();
29+
30+
mount(<Form formId={formId} onSubmit={submitCallback}></Form>);
31+
32+
const formStore = FSHContainer.FormStoresHandler.GetStore(formId);
33+
formStore.InitiateFormSubmit();
34+
35+
expect(submitCallback.called).toBe(true);
36+
});
37+
});
Original file line numberDiff line numberDiff line change
@@ -1,57 +1,57 @@
1-
import * as React from "react";
2-
import { mount } from "enzyme";
3-
import * as Sinon from "sinon";
4-
5-
import { FormStore } from "simplr-forms/stores";
6-
7-
import { Form } from "../../src/components/form";
8-
import { Text } from "../../src/components/text";
9-
import { Reset } from "../../src/components/reset";
10-
11-
describe("Reset button", () => {
12-
let sandbox: Sinon.SinonSandbox;
13-
14-
beforeEach(() => {
15-
sandbox = Sinon.sandbox.create();
16-
});
17-
18-
afterEach(() => {
19-
sandbox.restore();
20-
});
21-
22-
it("reset all fields", () => {
23-
const callback = sandbox.spy(FormStore.prototype, "ResetFields");
24-
25-
const wrapper = mount(<Form>
26-
<Text name="field" />
27-
<Reset>Clear form</Reset>
28-
</Form>);
29-
30-
wrapper.find("button").simulate("click");
31-
32-
expect(callback.called).toBe(true);
33-
});
34-
35-
it("reset fields by fieldsIds", () => {
36-
const callback = sandbox.spy(FormStore.prototype, "ResetFields");
37-
const fieldsIds: string[] = [];
38-
for (let i = 0; i < 5; i++) {
39-
fieldsIds.push(`text-${i}`);
40-
}
41-
const fields: JSX.Element[] = [];
42-
fieldsIds.forEach(value => {
43-
fields.push(<Text name={value} key={value} />);
44-
});
45-
46-
const wrapper = mount(<Form>
47-
{fields}
48-
<Reset fieldIds={fieldsIds}>Clear form</Reset>
49-
</Form>);
50-
51-
wrapper.find("button").simulate("click");
52-
53-
expect(callback.called).toBe(true);
54-
// first click, first argument(fieldIds)
55-
expect(callback.args[0][0]).toBe(fieldsIds);
56-
});
57-
});
1+
import * as React from "react";
2+
import { mount } from "enzyme";
3+
import * as Sinon from "sinon";
4+
5+
import { FormStore } from "@simplr/react-forms/stores";
6+
7+
import { Form } from "../../src/components/form";
8+
import { Text } from "../../src/components/text";
9+
import { Reset } from "../../src/components/reset";
10+
11+
describe("Reset button", () => {
12+
let sandbox: Sinon.SinonSandbox;
13+
14+
beforeEach(() => {
15+
sandbox = Sinon.sandbox.create();
16+
});
17+
18+
afterEach(() => {
19+
sandbox.restore();
20+
});
21+
22+
it("reset all fields", () => {
23+
const callback = sandbox.spy(FormStore.prototype, "ResetFields");
24+
25+
const wrapper = mount(<Form>
26+
<Text name="field" />
27+
<Reset>Clear form</Reset>
28+
</Form>);
29+
30+
wrapper.find("button").simulate("click");
31+
32+
expect(callback.called).toBe(true);
33+
});
34+
35+
it("reset fields by fieldsIds", () => {
36+
const callback = sandbox.spy(FormStore.prototype, "ResetFields");
37+
const fieldsIds: string[] = [];
38+
for (let i = 0; i < 5; i++) {
39+
fieldsIds.push(`text-${i}`);
40+
}
41+
const fields: JSX.Element[] = [];
42+
fieldsIds.forEach(value => {
43+
fields.push(<Text name={value} key={value} />);
44+
});
45+
46+
const wrapper = mount(<Form>
47+
{fields}
48+
<Reset fieldIds={fieldsIds}>Clear form</Reset>
49+
</Form>);
50+
51+
wrapper.find("button").simulate("click");
52+
53+
expect(callback.called).toBe(true);
54+
// first click, first argument(fieldIds)
55+
expect(callback.args[0][0]).toBe(fieldsIds);
56+
});
57+
});

0 commit comments

Comments
 (0)