All Projects → kubesphere → kube-design

kubesphere / kube-design

Licence: MIT license
Kube Design for KubeSphere Console

Programming Languages

javascript
184084 projects - #8 most used programming language
SCSS
7915 projects

Projects that are alternatives of or similar to kube-design

Chromelogger Python
Python library for logging variables to Google Chrome console
Stars: ✭ 232 (+163.64%)
Mutual labels:  console
Colour Mysql Console
Sample config files showing how to colorize linux console mysql client
Stars: ✭ 244 (+177.27%)
Mutual labels:  console
basis
Basis Design System
Stars: ✭ 55 (-37.5%)
Mutual labels:  components-library
Doga
📈 HTTP log monitoring console for Humans
Stars: ✭ 238 (+170.45%)
Mutual labels:  console
Laravel Zero
A PHP framework for console artisans
Stars: ✭ 2,821 (+3105.68%)
Mutual labels:  console
Finalcut
A text-based widget toolkit
Stars: ✭ 244 (+177.27%)
Mutual labels:  console
S Tui
Terminal-based CPU stress and monitoring utility
Stars: ✭ 2,825 (+3110.23%)
Mutual labels:  console
ari
Accessible unstyled vue components
Stars: ✭ 22 (-75%)
Mutual labels:  components-library
Asciimatics
A cross platform package to do curses-like operations, plus higher level APIs and widgets to create text UIs and ASCII art animations
Stars: ✭ 2,869 (+3160.23%)
Mutual labels:  console
Terminal
The new Windows Terminal and the original Windows console host, all in the same place!
Stars: ✭ 79,371 (+90094.32%)
Mutual labels:  console
Chroma
A general purpose syntax highlighter in pure Go
Stars: ✭ 3,013 (+3323.86%)
Mutual labels:  console
Term Sheets
Create animated terminal presentations. Export as SVG, animated GIF, or HTML+CSS
Stars: ✭ 243 (+176.14%)
Mutual labels:  console
Wpm
Typeracer-like console app for measuring your WPM
Stars: ✭ 249 (+182.95%)
Mutual labels:  console
Webpack Messages
Beautifully format Webpack messages throughout your bundle lifecycle(s)!
Stars: ✭ 238 (+170.45%)
Mutual labels:  console
helm-charts
Source & Repo of https://charts.kubesphere.io/main & https://charts.kubesphere.io/test
Stars: ✭ 85 (-3.41%)
Mutual labels:  kubesphere
Text Io
A library for creating interactive console applications in Java
Stars: ✭ 229 (+160.23%)
Mutual labels:  console
Sc Im
sc-im - Spreadsheet Calculator Improvised -- An ncurses spreadsheet program for terminal
Stars: ✭ 3,081 (+3401.14%)
Mutual labels:  console
GetConsoleHistoryAndOutput
An Incident Response tool to extract console command history and screen output buffer
Stars: ✭ 41 (-53.41%)
Mutual labels:  console
ngx-vant
Lightweight Mobile UI Components built on Vant and Angular
Stars: ✭ 34 (-61.36%)
Mutual labels:  components-library
Console Kit
💻 APIs for creating interactive CLI tools.
Stars: ✭ 252 (+186.36%)
Mutual labels:  console

Kube Design

Kube Design is a set of React component libraries created for KubeSphere console.

NPM

Requirement

Installation

yarn add @kube-design/components

Example

import React, { Component } from "react";

import { Button } from "@kube-design/components";

class Example extends Component {
  render() {
    return <Button>Button</Button>;
  }
}

Import All Styles

There are two ways to import style files.

Use css

The css file can be imported directly, so no additional configuration is required in the webpack configuration file.

import "@kube-design/components/esm/styles/index.css";

Use scss

If you import the scss file, you may need to compile this part of the scss file in the webpack configuration file.

import "@kube-design/components/esm/styles/index.scss";

webpack.config.js

// module.rules
[
  ...otherRules,
  {
    test: /\.s[ac]ss$/i,
    include: root("node_modules"),
    use: ["style-loader", "css-loader", "sass-loader"],
  },
];

Modular Import

You can use babel-plugin-import to load the component library on demand.

When loading on demand, styles will also be imported on demand. You don't need to import all styles, only main.scss.

Configure the babel as follows:

// babel.config.js

const getBabelPluginImportConfig = require('@kube-design/components/babel.plugin.import')

...

"plugins": [
  ['import', getBabelPluginImportConfig()],
]

Import the main.scss instead of index.scss

import "@kube-design/components/esm/styles/main.scss";

Localization

Kube Design use LocaleProvider component to support localization.

  1. Define locales
// locales.js

const locales = {
  "en-US": {
    HELLO: "Hello!",
  },
  "zh-CN": {
    HELLO: "你好!",
  },
};

export default locales;
  1. Use the LocaleProvider component to wrap the root node

The locale method can be assigned to window for easy use.

import React from "react";
import ReactDOM from "react-dom";
import { LocaleProvider } from "@kube-design/components";
import locales from "./locales";
import App from "./App";

window.locale = LocaleProvider.locale;

const App = () => (
  <LocaleProvider locales={locales} currentLocale="en">
    <App />
  </LocaleProvider>
);

ReactDOM.render(<App />, document.getElementById("root"));
  1. In the root node App.jsx and its child nodes, use locale.get('key') to get the language text
import React from "react";
import { Button } from "@kube-design/components";

export default () => <Button>{locale.get("HELLO")}</Button>;

License

MIT © kubesphere

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].