1. 01 8月, 2016 1 次提交
  2. 28 7月, 2016 1 次提交
  3. 08 6月, 2016 1 次提交
  4. 06 6月, 2016 1 次提交
  5. 02 6月, 2016 1 次提交
    • B
      Frontend for namespace selection · 36e3397c
      bryk 提交于
      1. Sorry for the size, but this PR was all-in or nothing
      2. The mechanics for namespace is that user selects it via the dropdown
         and the selection goes through all pages, but has effect on display
         only on list pages.
      3. The selector is now ugly. I'll style and improve wording later.
      36e3397c
  6. 16 5月, 2016 1 次提交
    • B
      Frontend for deployment list and workloads · 886d479e
      bryk 提交于
      This looks much like a compy&paste (which is mostly true), but that's
      the plan. I want to implement the list pages now and then extract common
      patterns, if any.
      886d479e
  7. 10 5月, 2016 1 次提交
  8. 04 5月, 2016 1 次提交
  9. 29 4月, 2016 1 次提交
    • P
      Modernized RC list page · cd872801
      Piotr Bryk 提交于
      What I did here:
      * I copied old RC list code
      * Changed all directives to angular 1.5 components
      * Removed custom CSS styles
      * Added missing tests
      
      What is missing:
      * Zerostate page
      * responsiveness (this is a problem of the common component)
      * Documentation
      cd872801
  10. 26 4月, 2016 1 次提交
    • P
      Deprecate current RC list codebase (#679) · 41725433
      Piotr Bryk 提交于
      I'll be developing new one, which will use the common framework. I hope
      it to be smaller.
      
      This one will get deleted once new one is done. With this renaming I'll
      be easy.
      41725433
  11. 03 2月, 2016 1 次提交
  12. 25 1月, 2016 1 次提交
  13. 08 1月, 2016 2 次提交
  14. 05 1月, 2016 2 次提交
  15. 28 12月, 2015 1 次提交
    • B
      Column layout for replica set list view · 7f65f2a3
      bryk 提交于
      This PR implements column layout for the replica set list view. The
      layout is implemented through a directive that puts its transcluded
      elements into a column layout.
      
      There's some algorithmic code in this PR, so please comment if something
      is not tested or easy to understand.
      
      Please also verify on your machines that this works correctly.
      7f65f2a3
  16. 21 12月, 2015 1 次提交
    • B
      Extract replica set card to a separate directive · d496eadc
      bryk 提交于
      * this is a refactoring change - no functional changes
      * added missing tests
      * added missing module dependency (tests found it)
      * this is a prerequisite PR for future work on the card
      d496eadc
  17. 18 12月, 2015 1 次提交
  18. 25 11月, 2015 1 次提交
    • B
      Add more ESLint rules for JavaScript linting · 9b80b347
      bryk 提交于
      With this change I've gone through all ESLint rules at:
      http://eslint.org/docs/rules/ and added all of them that I feel make
      sense to the project.
      
      This will allow us to focus on business logic of our code, rather than
      on style discussions, which are now better guarded thanks to ESLint and
      clang-format.
      
      On the final note: it does not matter what concrete lint rules are
      enforced (e.g., semicolons or nor). The important part is that they are
      enforced by a tool and we do not spend time dicussing about them.
      
      Addresses: #66
      9b80b347
  19. 24 11月, 2015 1 次提交
  20. 20 11月, 2015 1 次提交
    • B
      Rename JS files from dot to underscore case · 213d8601
      bryk 提交于
      This is a required change because with dot case we cannot reference
      other modules inside JSDoc `@type` annotations. For example, if you want
      to reference `@type {./deploy.controller.FooType}` does not work,
      because the compiler does not know whether `deploy` is a module or
      `deploy.controller`. Changing dot case to undersocre, camel or dash case
      solves this problem.
      
      I decided to go with underscore case because this is what golang uses
      (e.g., `foo_test.js`) so we'll have higher similarity of backend and
      frontend codebases.
      213d8601
  21. 18 11月, 2015 1 次提交
  22. 13 11月, 2015 1 次提交
  23. 04 11月, 2015 1 次提交
  24. 29 10月, 2015 1 次提交
  25. 28 10月, 2015 2 次提交
    • B
      Implement simple chrome operating on ui.router · 4c37e879
      bryk 提交于
      This change implements initial version of the chrome. It uses ui.router
      for routing and state management. The reason to use this router is the
      fact that it is more flexible than stock one. It also resembles Angular2
      router, so hypothetical migration should be easier.
      4c37e879
    • B
      Use standard Angular router instead of the new one · d516d004
      bryk 提交于
      This change modifies a lot of JS, but this is only to prove that the
      code works. Later changes will cleanup the JS more.
      d516d004
  26. 21 10月, 2015 1 次提交
  27. 20 10月, 2015 1 次提交
    • B
      Defie source code folder structure with sample app · eb12a534
      bryk 提交于
      This is a sample Angular application written in ES6 with modules. It has
      sample unit and integration tests. It was generated with a help of
      Yeoman.
      
      Don't mind what the application does right now. I'll use it for a next
      few days to verify that build system is working. Then it will be
      revamped.
      eb12a534