Coder Social home page Coder Social logo

ville.fluent's Introduction

Ville.Fluent

ville.Fluent is a Qooxdoo theme inspired by Microsofts Fluent UI.

Benefits

Using the Theme in your Application

Use Qooxdoo's package (qx pkg) discovery and installation system. Other option is to download and add the ville.theme folder to your project. Reference it in your compile.json as a stand alone theme, or update your project's theme to extend the ville.theme.fluent theme classes (Appearance, Decoration, Font, Color, etc).

Demos

Demo

WidgetBrowser

Roadmap

  • Full design (In Progress) - Wax demo showing the majority of qx ui widgets leveraging FluentUI design patterns.
  • WidgetBrowser design (Completed) - Out of the box, qxl.widgetbrowser version of the theme.
  • Architecture Review (Not Started) - Evaluate how best to package underlying features - i.e. ville.global (FluentUI's design tokens), ville.wax.MEmbed, ville.theme.MImage, and ville.wax.MTabView.

License

Distributed under the MIT License. See LICENSE for more information.

Contact

Chris Eskew - email: [email protected]

ville.fluent's People

Contributors

sqville avatar

Stargazers

 avatar

Watchers

 avatar

Forkers

goldim

ville.fluent's Issues

Broken VirtualTree theme item

Looks like VirtualTree somehow broken. I see now picture of folder by default.
ville.Fluent theme:
изображение
classic.Theme:
изображение

My code:

qx.Class.define("scada.signalmonitor.tree.Item", {
    extend: qx.ui.tree.VirtualTreeItem,

    properties: {
        checked: {
            check : "Boolean",
            event: "changeChecked",
            nullable : true
        },

        image: {
            check : "String",
            event: "changeImage",
            nullable : true
        },

        count: {
            check : "String",
            event: "changeCount",
            nullable : true
        }
    },

    members: {
        __checkbox : null,
        __image : null,
        __count : null,

        _addWidgets(){
            this.addSpacer();
            this.addOpenButton();

            this.addIcon();
            this.bind("image", this, "icon");

            this.__checkbox = this.__createCheckBox();
            this.addWidget(this.__checkbox);
            this.addLabel();

            this.addListener("click", function(e) {
                if (e.getTarget() !== this.getChildControl("open")){
                    this.__checkbox.execute();
                }
            }, this);

            this.__checkbox.addListener("click", function(e) {
                e.stopPropagation();
            }, this);

            // All else should be right justified
            this.addWidget(new qx.ui.core.Spacer(), {flex: 1});
        },

        __createCheckBox(){
            const checkbox = new qx.ui.form.CheckBox().set({
                focusable: false,
                triState: true,
                marginRight: 4
            });
            this.bind("checked", checkbox, "value");
            checkbox.bind("value", this, "checked");
            return checkbox;
        }
    }
});

Big size of theme

Installing this theme via package system leads to 16 mb in which almost 15 mb for published folder content. I suggest to move this folder to another branch. For example like done in gitpages (if possible).

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.