Skip to content

Commit c09a2b6

Browse files
Change 'username' field to 'owner"
1 parent 8b49a83 commit c09a2b6

File tree

7 files changed

+13
-13
lines changed

7 files changed

+13
-13
lines changed

app/imports/api/stuff/stuff.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ const StuffSchema = new SimpleSchema({
1616
type: Number,
1717
optional: false,
1818
},
19-
username: {
19+
owner: {
2020
type: String,
2121
optional: false,
2222
},

app/imports/startup/server/stuff.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { Stuff } from '../../api/stuff/stuff.js';
44

55
/** Initialize the database with a default data document. */
66
function addData(data) {
7-
console.log(` Adding: ${data.name} (${data.username})`);
7+
console.log(` Adding: ${data.name} (${data.owner})`);
88
Stuff.insert(data);
99
}
1010

@@ -20,7 +20,7 @@ if (Stuff.find().count() === 0) {
2020
Meteor.publish('Stuff', function publish() {
2121
if (this.userId) {
2222
const username = Meteor.users.findOne(this.userId).username;
23-
return Stuff.find({ username });
23+
return Stuff.find({ owner: username });
2424
}
2525
return this.ready();
2626
});

app/imports/ui/components/StuffItemAdmin.jsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ class StuffItemAdmin extends React.Component {
1010
<Table.Cell>{this.props.stuff.name}</Table.Cell>
1111
<Table.Cell>{this.props.stuff.quantity}</Table.Cell>
1212
<Table.Cell>{this.props.stuff.condition}</Table.Cell>
13-
<Table.Cell>{this.props.stuff.username}</Table.Cell>
13+
<Table.Cell>{this.props.stuff.owner}</Table.Cell>
1414
</Table.Row>
1515
);
1616
}

app/imports/ui/pages/AddStuff.jsx

+3-3
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ class AddStuff extends React.Component {
3535
submit(data) {
3636
const { name, quantity, condition } = data;
3737
const username = Meteor.user().username;
38-
Stuff.insert({ name, quantity, condition, username }, this.insertCallback);
38+
Stuff.insert({ name, quantity, condition, owner: username }, this.insertCallback);
3939
}
4040

4141
/** Render the form. Use Uniforms: https://github.com/vazco/uniforms */
@@ -44,14 +44,14 @@ class AddStuff extends React.Component {
4444
<Grid container centered>
4545
<Grid.Column>
4646
<Header as="h2" textAlign="center">Add Stuff</Header>
47-
<AutoForm ref={(ref) => this.formRef = ref} schema={StuffSchema} onSubmit={this.submit}>
47+
<AutoForm ref={(ref) => { this.formRef = ref; }} schema={StuffSchema} onSubmit={this.submit}>
4848
<Segment>
4949
<TextField name='name'/>
5050
<TextField name='quantity'/>
5151
<SelectField name='condition'/>
5252
<SubmitField value='Submit'/>
5353
<ErrorsField/>
54-
<TextField name='username' type='hidden' label={false} value='[email protected]'/>
54+
<TextField name='owner' type='hidden' label={false} value='[email protected]'/>
5555
</Segment>
5656
</AutoForm>
5757
</Grid.Column>

app/imports/ui/pages/EditStuff.jsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ class EditStuff extends React.Component {
4040
<SelectField name='condition'/>
4141
<SubmitField value='Submit'/>
4242
<ErrorsField/>
43-
<TextField name='username' type='hidden' label={false} />
43+
<TextField name='owner' type='hidden' label={false} />
4444
</Segment>
4545
</AutoForm>
4646
</Grid.Column>

app/imports/ui/pages/ListStuffAdmin.jsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ class ListStuffAdmin extends React.Component {
2525
<Table.HeaderCell>Name</Table.HeaderCell>
2626
<Table.HeaderCell>Quantity</Table.HeaderCell>
2727
<Table.HeaderCell>Condition</Table.HeaderCell>
28-
<Table.HeaderCell>Username</Table.HeaderCell>
28+
<Table.HeaderCell>Owner</Table.HeaderCell>
2929
</Table.Row>
3030
</Table.Header>
3131
<Table.Body>

config/settings.development.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
],
66

77
"defaultData": [
8-
{ "name": "Basket", "quantity": 3, "username": "[email protected]", "condition": "excellent" },
9-
{ "name": "Bicycle", "quantity": 2, "username": "[email protected]", "condition": "poor" },
10-
{ "name": "Banana", "quantity": 2, "username": "[email protected]", "condition": "good" },
11-
{ "name": "Boogie Board", "quantity": 2, "username": "[email protected]", "condition": "excellent" }
8+
{ "name": "Basket", "quantity": 3, "owner": "[email protected]", "condition": "excellent" },
9+
{ "name": "Bicycle", "quantity": 2, "owner": "[email protected]", "condition": "poor" },
10+
{ "name": "Banana", "quantity": 2, "owner": "[email protected]", "condition": "good" },
11+
{ "name": "Boogie Board", "quantity": 2, "owner": "[email protected]", "condition": "excellent" }
1212
]
1313
}

0 commit comments

Comments
 (0)