From 8fae92267e3c9a5e9b46c47e689e36b59ca424c5 Mon Sep 17 00:00:00 2001 From: Ian Minoso Date: Fri, 28 Oct 2016 18:39:34 -0400 Subject: [PATCH] create all components for new repo page --- static/js/app.tsx | 14 ++++++++++++-- .../{component.tsx => publicRepo/header.tsx} | 2 +- .../js/directives/components/publicRepo/main.tsx | 10 ++++++++++ .../directives/components/publicRepo/sidebar.tsx | 10 ++++++++++ static/js/pages/repo-view.js | 5 ----- static/partials/repo-view.html | 4 +++- 6 files changed, 36 insertions(+), 9 deletions(-) rename static/js/directives/components/{component.tsx => publicRepo/header.tsx} (71%) create mode 100644 static/js/directives/components/publicRepo/main.tsx create mode 100644 static/js/directives/components/publicRepo/sidebar.tsx diff --git a/static/js/app.tsx b/static/js/app.tsx index b59f05101..4f5bc19fe 100644 --- a/static/js/app.tsx +++ b/static/js/app.tsx @@ -1,9 +1,19 @@ import * as React from "react"; import * as angular from "angular"; -import repoHeader from "./directives/components/component"; +import repoHeader from "./directives/components/publicRepo/header"; +import repoSidebar from "./directives/components/publicRepo/sidebar"; +import repoMain from "./directives/components/publicRepo/main"; -angular.module('quayPages').directive('repoHeader', function(reactDirective) { +angular.module('quayPages').directive('rpHeader', function(reactDirective) { return reactDirective(repoHeader); }); +angular.module('quayPages').directive('rpSidebar', function(reactDirective) { + return reactDirective(repoSidebar); +}); + +angular.module('quayPages').directive('rpMain', function(reactDirective) { + return reactDirective(repoMain); +}); + diff --git a/static/js/directives/components/component.tsx b/static/js/directives/components/publicRepo/header.tsx similarity index 71% rename from static/js/directives/components/component.tsx rename to static/js/directives/components/publicRepo/header.tsx index 0c5b6919e..606345da8 100644 --- a/static/js/directives/components/component.tsx +++ b/static/js/directives/components/publicRepo/header.tsx @@ -2,7 +2,7 @@ import * as React from "react"; class repoHeader extends React.Component<{}, {}> { render () { - return

The component for the header

; + return
The component for the header
; } } diff --git a/static/js/directives/components/publicRepo/main.tsx b/static/js/directives/components/publicRepo/main.tsx new file mode 100644 index 000000000..e3ff322db --- /dev/null +++ b/static/js/directives/components/publicRepo/main.tsx @@ -0,0 +1,10 @@ +import * as React from "react"; + +class main extends React.Component<{}, {}> { + render () { + return
The component for the main content
; + } +} + +export default main; + diff --git a/static/js/directives/components/publicRepo/sidebar.tsx b/static/js/directives/components/publicRepo/sidebar.tsx new file mode 100644 index 000000000..d2218f90e --- /dev/null +++ b/static/js/directives/components/publicRepo/sidebar.tsx @@ -0,0 +1,10 @@ +import * as React from "react"; + +class repo_sidebar extends React.Component<{}, {}> { + render () { + return
The component for the sidebar
; + } +} + +export default repo_sidebar; + diff --git a/static/js/pages/repo-view.js b/static/js/pages/repo-view.js index 09beb7d3b..3810f294c 100644 --- a/static/js/pages/repo-view.js +++ b/static/js/pages/repo-view.js @@ -11,11 +11,6 @@ }]); function RepoViewCtrl($scope, $routeParams, $location, $timeout, ApiService, UserService, AngularPollChannel, ImageLoaderService, CookieService) { - $scope.reactProps = { - firstProp: 'Prop 1', - secondProp: 'Prop 2' - }; - $scope.namespace = $routeParams.namespace; $scope.name = $routeParams.name; diff --git a/static/partials/repo-view.html b/static/partials/repo-view.html index f3da86092..b52440eab 100644 --- a/static/partials/repo-view.html +++ b/static/partials/repo-view.html @@ -5,7 +5,9 @@
- + + +