diff --git a/app/components/breadcrumb.hbs b/app/components/breadcrumb.hbs deleted file mode 100644 index ff30575ec827cf2069a014edbb480c9701398163..0000000000000000000000000000000000000000 --- a/app/components/breadcrumb.hbs +++ /dev/null @@ -1,14 +0,0 @@ -<nav aria-label="breadcrumb" class="m-2"> - <ol class="breadcrumb"> - {{#each this.nodes as |node|}} - <li class="breadcrumb-item"> - <LinkTo - @route="authenticated.nodes" - @model={{node.id}} - @query={{this.query}}> - {{node.title}} - </LinkTo> - </li> - {{/each}} - </ol> -</nav> \ No newline at end of file diff --git a/app/components/breadcrumb.js b/app/components/breadcrumb.js deleted file mode 100644 index 8568edbdac1b963f688954568629dd96f889d3c1..0000000000000000000000000000000000000000 --- a/app/components/breadcrumb.js +++ /dev/null @@ -1,29 +0,0 @@ -import Component from '@glimmer/component'; - - -export default class BreadcrumbComponent extends Component { - - get nodes() { - let current, - _nodes = []; - - current = this.args.node; - - while (current && current.get('id')) { - _nodes.push(current); - current = current.get('parent'); - } - - return _nodes.reverse(); - } - - get query() { - if (this.args.extranode) { - return { - extranode_id: this.args.extranode.id - } - } - - return {}; - } -} diff --git a/app/components/breadcrumb/index.hbs b/app/components/breadcrumb/index.hbs index 3c589c1136da8e8ad30499da43022a4c53d8256c..cf382579d24a4951758d0b746cd83f5dcb8a001a 100644 --- a/app/components/breadcrumb/index.hbs +++ b/app/components/breadcrumb/index.hbs @@ -8,8 +8,8 @@ @extranode={{@extranode}} /> {{else}} <Commander::LinkToRight - @node={{node}} - @extranode={{@node}} /> + @node={{@extranode}} + @extranode={{node}} /> {{/if}} </li> {{/each}} diff --git a/app/components/breadcrumb/left.hbs b/app/components/breadcrumb/left.hbs deleted file mode 100644 index 13aae704793f57e24d6ca13820b66e0b750c2b93..0000000000000000000000000000000000000000 --- a/app/components/breadcrumb/left.hbs +++ /dev/null @@ -1,22 +0,0 @@ -<nav aria-label="breadcrumb" class="m-2"> - <ol class="breadcrumb"> - {{#each this.nodes as |node|}} - <li class="breadcrumb-item"> - {{#if @extranode}} - <LinkTo - @route="authenticated.nodes" - @model={{node.id}} - @query={{hash extranode_id=@extranode.id}}> - {{node.title}} - </LinkTo> - {{else}} - <LinkTo - @route="authenticated.nodes" - @model={{node.id}}> - {{node.title}} - </LinkTo> - {{/if}} - </li> - {{/each}} - </ol> -</nav> \ No newline at end of file diff --git a/app/components/breadcrumb/left.js b/app/components/breadcrumb/left.js deleted file mode 100644 index 4d0c60fcd37989a1220cce58e2a651fe7bda16cc..0000000000000000000000000000000000000000 --- a/app/components/breadcrumb/left.js +++ /dev/null @@ -1,16 +0,0 @@ -import BaseBreadcrumbComponent from "./base"; - - -class LeftBreadcrumbComponent extends BaseBreadcrumbComponent { - url(extranode) { - let node = this.args.node; - - if (extranode) { - return `/nodes/${node.id}?extranode_id=${extranode.id}` - } - - return `/nodes/${node.id}`; - } -} - -export default LeftBreadcrumbComponent; diff --git a/app/components/breadcrumb/right.hbs b/app/components/breadcrumb/right.hbs deleted file mode 100644 index 9b68727a9539da0f94d158c7ec92dd8e5d7f8409..0000000000000000000000000000000000000000 --- a/app/components/breadcrumb/right.hbs +++ /dev/null @@ -1,14 +0,0 @@ -<nav aria-label="breadcrumb" class="m-2"> - <ol class="breadcrumb"> - {{#each this.nodes as |node|}} - <li class="breadcrumb-item"> - <LinkTo - @route="authenticated.nodes" - @model={{@extranode.id}} - @query={{hash extranode_id=node.id}}> - {{node.title}} - </LinkTo> - </li> - {{/each}} - </ol> -</nav> \ No newline at end of file diff --git a/app/components/breadcrumb/right.js b/app/components/breadcrumb/right.js deleted file mode 100644 index 87266541fe02eefb8f0addae2a74a057978e4036..0000000000000000000000000000000000000000 --- a/app/components/breadcrumb/right.js +++ /dev/null @@ -1,8 +0,0 @@ -import BaseBreadcrumbComponent from "./base"; - - -class RightBreadcrumbComponent extends BaseBreadcrumbComponent { - -} - -export default RightBreadcrumbComponent; diff --git a/app/components/commander/index.hbs b/app/components/commander/index.hbs index c64291d6bd3200b2144b6feffb1274e756feacea..5d6f6474139ab6b28090a1be0f787184f853d695 100644 --- a/app/components/commander/index.hbs +++ b/app/components/commander/index.hbs @@ -29,8 +29,8 @@ @extranode={{@extranode}} /> {{else}} <Commander::LinkToRight - @node={{node}} - @extranode={{@node}} /> + @node={{@extranode}} + @extranode={{node}} /> {{/if}} </NodeType> {{/let}} diff --git a/app/components/commander/link_to_right.hbs b/app/components/commander/link_to_right.hbs index e4411f22e63674d057d6a61a4a630dc63297ebdd..0fc74b7e87ffe8df560c31980873aa389b2da410 100644 --- a/app/components/commander/link_to_right.hbs +++ b/app/components/commander/link_to_right.hbs @@ -1,6 +1,6 @@ <LinkTo @route="authenticated.nodes" - @model={{@extranode.id}} - @query={{hash extranode_id=@node.id}}> - {{@node.title}} + @model={{@node.id}} + @query={{hash extranode_id=@extranode.id}}> + {{@extranode.title}} </LinkTo> \ No newline at end of file