Add a bunch of placeholder files
Placeholder files for future app structure Also figured out how to have root url code stuff
This commit is contained in:
parent
b6ce6b7e2c
commit
c75acc48a2
18 changed files with 172 additions and 6 deletions
1
frontend-reactive/app/components/page.hbs
Normal file
1
frontend-reactive/app/components/page.hbs
Normal file
|
@ -0,0 +1 @@
|
||||||
|
{{yield}}
|
1
frontend-reactive/app/components/page/header.hbs
Normal file
1
frontend-reactive/app/components/page/header.hbs
Normal file
|
@ -0,0 +1 @@
|
||||||
|
{{yield}}
|
1
frontend-reactive/app/components/page/left-sidebar.hbs
Normal file
1
frontend-reactive/app/components/page/left-sidebar.hbs
Normal file
|
@ -0,0 +1 @@
|
||||||
|
{{yield}}
|
5
frontend-reactive/app/components/timeline.hbs
Normal file
5
frontend-reactive/app/components/timeline.hbs
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
{{#each this.notes as |note|}}
|
||||||
|
<Note />
|
||||||
|
{{/each}}
|
||||||
|
|
||||||
|
<InfinityLoader />
|
|
@ -1,8 +1,8 @@
|
||||||
import Model, { attr } from "@ember-data/model";
|
import Model, { attr } from '@ember-data/model';
|
||||||
|
|
||||||
export default class RemoteServerModel extends Model {
|
export default class RemoteServerModel extends Model {
|
||||||
@attr("string") serverType;
|
@attr('string') serverType;
|
||||||
@attr("string") name;
|
@attr('string') name;
|
||||||
@attr("string") iconUrl;
|
@attr('string') iconUrl;
|
||||||
@attr("boolean") isSelf;
|
@attr('boolean') isSelf;
|
||||||
}
|
}
|
||||||
|
|
|
@ -7,5 +7,9 @@ export default class Router extends EmberRouter {
|
||||||
}
|
}
|
||||||
|
|
||||||
Router.map(function () {
|
Router.map(function () {
|
||||||
// Add route declarations here
|
this.route('about');
|
||||||
|
|
||||||
|
this.route('notes', function () {
|
||||||
|
this.route(':note_id');
|
||||||
|
});
|
||||||
});
|
});
|
||||||
|
|
3
frontend-reactive/app/routes/about.ts
Normal file
3
frontend-reactive/app/routes/about.ts
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
import Route from '@ember/routing/route';
|
||||||
|
|
||||||
|
export default class AboutRoute extends Route {}
|
7
frontend-reactive/app/routes/application.ts
Normal file
7
frontend-reactive/app/routes/application.ts
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
import Route from '@ember/routing/route';
|
||||||
|
|
||||||
|
export default class ApplicationRoute extends Route {
|
||||||
|
model() {
|
||||||
|
console.log('root route loaded');
|
||||||
|
}
|
||||||
|
}
|
3
frontend-reactive/app/routes/notes/:note-id.ts
Normal file
3
frontend-reactive/app/routes/notes/:note-id.ts
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
import Route from '@ember/routing/route';
|
||||||
|
|
||||||
|
export default class Notes:noteIdRoute extends Route {}
|
2
frontend-reactive/app/templates/about.hbs
Normal file
2
frontend-reactive/app/templates/about.hbs
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
{{page-title "About"}}
|
||||||
|
{{outlet}}
|
2
frontend-reactive/app/templates/notes/:note-id.hbs
Normal file
2
frontend-reactive/app/templates/notes/:note-id.hbs
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
{{page-title ":noteId"}}
|
||||||
|
{{outlet}}
|
26
frontend-reactive/tests/integration/components/page-test.ts
Normal file
26
frontend-reactive/tests/integration/components/page-test.ts
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
import { module, test } from 'qunit';
|
||||||
|
import { setupRenderingTest } from 'frontend-reactive/tests/helpers';
|
||||||
|
import { render } from '@ember/test-helpers';
|
||||||
|
import { hbs } from 'ember-cli-htmlbars';
|
||||||
|
|
||||||
|
module('Integration | Component | page', function (hooks) {
|
||||||
|
setupRenderingTest(hooks);
|
||||||
|
|
||||||
|
test('it renders', async function (assert) {
|
||||||
|
// Set any properties with this.set('myProperty', 'value');
|
||||||
|
// Handle any actions with this.set('myAction', function(val) { ... });
|
||||||
|
|
||||||
|
await render(hbs`<Page />`);
|
||||||
|
|
||||||
|
assert.dom().hasText('');
|
||||||
|
|
||||||
|
// Template block usage:
|
||||||
|
await render(hbs`
|
||||||
|
<Page>
|
||||||
|
template block text
|
||||||
|
</Page>
|
||||||
|
`);
|
||||||
|
|
||||||
|
assert.dom().hasText('template block text');
|
||||||
|
});
|
||||||
|
});
|
|
@ -0,0 +1,26 @@
|
||||||
|
import { module, test } from 'qunit';
|
||||||
|
import { setupRenderingTest } from 'frontend-reactive/tests/helpers';
|
||||||
|
import { render } from '@ember/test-helpers';
|
||||||
|
import { hbs } from 'ember-cli-htmlbars';
|
||||||
|
|
||||||
|
module('Integration | Component | page/header', function (hooks) {
|
||||||
|
setupRenderingTest(hooks);
|
||||||
|
|
||||||
|
test('it renders', async function (assert) {
|
||||||
|
// Set any properties with this.set('myProperty', 'value');
|
||||||
|
// Handle any actions with this.set('myAction', function(val) { ... });
|
||||||
|
|
||||||
|
await render(hbs`<Page::Header />`);
|
||||||
|
|
||||||
|
assert.dom().hasText('');
|
||||||
|
|
||||||
|
// Template block usage:
|
||||||
|
await render(hbs`
|
||||||
|
<Page::Header>
|
||||||
|
template block text
|
||||||
|
</Page::Header>
|
||||||
|
`);
|
||||||
|
|
||||||
|
assert.dom().hasText('template block text');
|
||||||
|
});
|
||||||
|
});
|
|
@ -0,0 +1,26 @@
|
||||||
|
import { module, test } from 'qunit';
|
||||||
|
import { setupRenderingTest } from 'frontend-reactive/tests/helpers';
|
||||||
|
import { render } from '@ember/test-helpers';
|
||||||
|
import { hbs } from 'ember-cli-htmlbars';
|
||||||
|
|
||||||
|
module('Integration | Component | page/left-sidebar', function (hooks) {
|
||||||
|
setupRenderingTest(hooks);
|
||||||
|
|
||||||
|
test('it renders', async function (assert) {
|
||||||
|
// Set any properties with this.set('myProperty', 'value');
|
||||||
|
// Handle any actions with this.set('myAction', function(val) { ... });
|
||||||
|
|
||||||
|
await render(hbs`<Page::LeftSidebar />`);
|
||||||
|
|
||||||
|
assert.dom().hasText('');
|
||||||
|
|
||||||
|
// Template block usage:
|
||||||
|
await render(hbs`
|
||||||
|
<Page::LeftSidebar>
|
||||||
|
template block text
|
||||||
|
</Page::LeftSidebar>
|
||||||
|
`);
|
||||||
|
|
||||||
|
assert.dom().hasText('template block text');
|
||||||
|
});
|
||||||
|
});
|
|
@ -0,0 +1,26 @@
|
||||||
|
import { module, test } from 'qunit';
|
||||||
|
import { setupRenderingTest } from 'frontend-reactive/tests/helpers';
|
||||||
|
import { render } from '@ember/test-helpers';
|
||||||
|
import { hbs } from 'ember-cli-htmlbars';
|
||||||
|
|
||||||
|
module('Integration | Component | timeline', function (hooks) {
|
||||||
|
setupRenderingTest(hooks);
|
||||||
|
|
||||||
|
test('it renders', async function (assert) {
|
||||||
|
// Set any properties with this.set('myProperty', 'value');
|
||||||
|
// Handle any actions with this.set('myAction', function(val) { ... });
|
||||||
|
|
||||||
|
await render(hbs`<Timeline />`);
|
||||||
|
|
||||||
|
assert.dom().hasText('');
|
||||||
|
|
||||||
|
// Template block usage:
|
||||||
|
await render(hbs`
|
||||||
|
<Timeline>
|
||||||
|
template block text
|
||||||
|
</Timeline>
|
||||||
|
`);
|
||||||
|
|
||||||
|
assert.dom().hasText('template block text');
|
||||||
|
});
|
||||||
|
});
|
11
frontend-reactive/tests/unit/routes/about-test.ts
Normal file
11
frontend-reactive/tests/unit/routes/about-test.ts
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
import { module, test } from 'qunit';
|
||||||
|
import { setupTest } from 'frontend-reactive/tests/helpers';
|
||||||
|
|
||||||
|
module('Unit | Route | about', function (hooks) {
|
||||||
|
setupTest(hooks);
|
||||||
|
|
||||||
|
test('it exists', function (assert) {
|
||||||
|
const route = this.owner.lookup('route:about');
|
||||||
|
assert.ok(route);
|
||||||
|
});
|
||||||
|
});
|
11
frontend-reactive/tests/unit/routes/application-test.ts
Normal file
11
frontend-reactive/tests/unit/routes/application-test.ts
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
import { module, test } from 'qunit';
|
||||||
|
import { setupTest } from 'frontend-reactive/tests/helpers';
|
||||||
|
|
||||||
|
module('Unit | Route | application', function (hooks) {
|
||||||
|
setupTest(hooks);
|
||||||
|
|
||||||
|
test('it exists', function (assert) {
|
||||||
|
const route = this.owner.lookup('route:application');
|
||||||
|
assert.ok(route);
|
||||||
|
});
|
||||||
|
});
|
11
frontend-reactive/tests/unit/routes/notes/:note-id-test.ts
Normal file
11
frontend-reactive/tests/unit/routes/notes/:note-id-test.ts
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
import { module, test } from 'qunit';
|
||||||
|
import { setupTest } from 'frontend-reactive/tests/helpers';
|
||||||
|
|
||||||
|
module('Unit | Route | notes/:note_id', function (hooks) {
|
||||||
|
setupTest(hooks);
|
||||||
|
|
||||||
|
test('it exists', function (assert) {
|
||||||
|
const route = this.owner.lookup('route:notes/:note-id');
|
||||||
|
assert.ok(route);
|
||||||
|
});
|
||||||
|
});
|
Loading…
Reference in a new issue