1. 27 8月, 2020 1 次提交
  2. 28 2月, 2020 1 次提交
    • S
      Migrate angular to v9 (#4930) · 4cab78ce
      Sebastian Florek 提交于
      * Bump required node version
      
      * Migrate angular from v8 to v9
      
      * Bump rest of dependencies
      
      * Bump angular material
      
      * Update tsconfig
      
      * Fix ace editor
      
      * Cleanup
      
      * Fix i18n
      4cab78ce
  3. 19 7月, 2019 1 次提交
    • S
      Bump gts to 1.0.0 (#4034) · 7b199eed
      Shu Muto 提交于
      Fixed typescript format due to introducing `prettier`.
      Also, drop `clang-format` in favor of `prettier`.
      7b199eed
  4. 13 6月, 2019 1 次提交
  5. 09 5月, 2019 1 次提交
    • S
      Fix ts errors (#3795) · 8c55caea
      Shu Muto 提交于
      * Fix typescript formatting in favor of gts 1.0.0
      
      This commit fixes format errors by `prettier`.
      
      * Fix deprecated errors in favor of gts 1.0.0
      
      * Ignore version.ts in gts and prettier
      8c55caea
  6. 20 3月, 2018 1 次提交
  7. 16 3月, 2018 1 次提交
  8. 15 1月, 2018 1 次提交
  9. 06 10月, 2017 1 次提交
  10. 03 8月, 2017 1 次提交
  11. 28 3月, 2017 1 次提交
    • S
      Refactor frontend (#1764) · f619f9c8
      Sebastian Florek 提交于
      * Refactor config maps module
      
      * Refactor daemonset module
      
      * Refactor deployment module
      
      * Refactor HPAs module
      
      * Refactor ingress module
      
      * Refactor job module
      
      * Refactor namespace module
      
      * Refactor node module
      
      * Refactor PVC module
      
      * Refactor Persistent Volume module
      
      * Refactor Pod module
      
      * Refactor Replica Set module
      
      * Refactor Replication Controller module
      
      * Refactor Secret module
      
      * Refactor Service module
      
      * Refactor Stateful Set module
      
      * Refactor Storage Class module
      
      * Refactor TPR module
      
      * Refactor other modules
      
      * Fix travis
      f619f9c8
  12. 21 11月, 2016 1 次提交
    • P
      Redesign secret detail page (#1452) · 3a492dd3
      Piotr Bryk 提交于
      * Redesign secret detail page
      
      This is my second iteration to the details page upgrade effort started by @batikanu.
      
      * I propose moving eye icon to the left of the list of secrets
      * Changed card titles of cards there to be same as in resource lists
      * Changed eye-off eye-on icons to reflect material design guidelines (one icon is artificially created using SVG)
      3a492dd3
  13. 19 2月, 2016 1 次提交
  14. 26 1月, 2016 2 次提交
    • A
      Choose and create ImagePullSecrets · a784fc16
      Atanas Mirchev 提交于
      a784fc16
    • B
      Misc UX changes for the entire UI · 8ba30d71
      bryk 提交于
      * made the gap between header and cards 16px
      * 8px or 16px padding on right and left sides of page (it feels wrong
        for cards to abut the edge)
      * show tooltip for images only when needed
      * link-out links open in new window
      * logs menu has smaller font
      * Use sentence capitalization for property labels, e.g. “Internal
        endpoint” vs “Internal Endpoint”
      * change labels to `key: value`
      * rewrite of delete replica set dialog to make it stylable
      8ba30d71
  15. 21 12月, 2015 1 次提交
    • B
      Lint project SCSS stylesheet files · 568f01bd
      bryk 提交于
      This change adds linter for styles to the project and updates all styles
      to conform with the default set of rules.
      
      This should help us maintain a little bit more consistency in our
      styles.
      568f01bd
  16. 18 12月, 2015 1 次提交
  17. 03 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. 17 11月, 2015 1 次提交
  22. 04 11月, 2015 1 次提交
  23. 29 10月, 2015 1 次提交
  24. 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
  25. 21 10月, 2015 1 次提交
  26. 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