Skip to content

open-source-labs/OverVue

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Prototyping Development Tool for Vue Developers

OverVue is a prototyping tool that allows developers to dynamically create and visualize a Vue application, implementing a real-time intuitive tree display of component hierarchy and a live-generated code preview. The easy-to-use GUI allows you to add HTML attributes and CSS properties to help the developer envision their next project. The resulting boilerplate code can be exported as a template for further development in your IDE of choice.



这个程序能帮你生成Vue 组件, 设置 routes , 也可以帮你显像Component Parent-Child组件树。你只要做一些小配置然后可以下载code boilerplate. 这样你就可以很方便简洁地生成Vue前台APP了!



Vue.js Pinia Jest Vue Test Utils JavaScript TypeScript Vue Router Electron.js Quasar Prism.js SASS Vuex Babel Git Docker Vuetensils

Table of Contents

Installation

To download the production version for windows or mac, please visit https://www.overvue.org


#### To download the production version for windows or mac, please visit https://www.overvue.org

Install dependencies

npm i

To run electron app in dev mode (note: Vue Devtools will launch automatically)

npm run dev

To build a new .zip / .deb

npm run build

Updated WSL Installation and Configuration Guide

This section has been updated to reflect the latest advancements with the Windows Subsystem for Linux (WSL), especially focusing on the integration of Linux GUI applications directly within WSL without the need for third-party X server tools like X410 or VcXsrv.

Expand

Running Linux GUI Applications in WSL

With the launch of WSLg (Windows Subsystem for Linux GUI), the process of running Linux GUI applications on Windows has been greatly simplified. WSLg integrates directly with WSL 2, offering native support for Linux GUI applications without the necessity for additional display server configurations.

Prerequisites

  • Windows 10 version 19044+ or Windows 11.
  • WSL 2 installed and set as the default version. Use wsl --install for new installations or wsl --update followed by wsl --shutdown to update and restart WSL.

Configuring Linux GUI Applications

WSLg automatically configures the necessary environment, eliminating the need to manually set display variables for GUI applications. Linux GUI apps can now be launched directly from the Start menu or via the command line, without additional setup.

Legacy Setup Notes (Deprecated)

The previous guidance for setting up X410 or VcXsrv for Linux GUI applications in WSL is now deprecated. While these tools are no longer necessary for the majority of GUI applications in WSL, they remain available for those with specific requirements outside the scope of WSLg's capabilities.

Docker Integration

For Docker containers that require GUI applications, ensure Docker Desktop for Windows is configured to use the WSL 2 backend. This integration with WSLg provides a seamless experience for running GUI-based containers.

Additional Setup for Mac Users (Docker)

Mac users running Linux containers or WSL in a virtualized environment should follow the XQuartz setup for X11 forwarding, applicable only to those operating outside direct WSL integration on Windows.

  1. Install XQuartz: brew install --cask xquartz and restart.
  2. In XQuartz Preferences > Security, enable "Allow connections from network clients."
  3. Allow localhost connections: xhost +localhost.

Common Issues and Solutions

  • WSLg not functioning as expected? Verify your Windows version and WSL 2 installation and updates.
  • Linux GUI app won't launch? Ensure all components are up to date and the application is compatible with WSLg.

Resources

This guide is designed to help streamline your development environment by utilizing the latest WSL features while minimizing complexity. For more information and detailed troubleshooting, refer to the official WSL documentation.


Updated WSL Installation and Configuration Guide

This section has been updated to reflect the latest advancements with the Windows Subsystem for Linux (WSL), especially focusing on the integration of Linux GUI applications directly within WSL without the need for third-party X server tools like X410 or VcXsrv.

Expand

Running Linux GUI Applications in WSL

With the launch of WSLg (Windows Subsystem for Linux GUI), the process of running Linux GUI applications on Windows has been greatly simplified. WSLg integrates directly with WSL 2, offering native support for Linux GUI applications without the necessity for additional display server configurations.

Prerequisites

  • Windows 10 version 19044+ or Windows 11.
  • WSL 2 installed and set as the default version. Use wsl --install for new installations or wsl --update followed by wsl --shutdown to update and restart WSL.

Configuring Linux GUI Applications

WSLg automatically configures the necessary environment, eliminating the need to manually set display variables for GUI applications. Linux GUI apps can now be launched directly from the Start menu or via the command line, without additional setup.

Legacy Setup Notes (Deprecated)

The previous guidance for setting up X410 or VcXsrv for Linux GUI applications in WSL is now deprecated. While these tools are no longer necessary for the majority of GUI applications in WSL, they remain available for those with specific requirements outside the scope of WSLg's capabilities.

Docker Integration

For Docker containers that require GUI applications, ensure Docker Desktop for Windows is configured to use the WSL 2 backend. This integration with WSLg provides a seamless experience for running GUI-based containers.

Additional Setup for Mac Users (Docker)

Mac users running Linux containers or WSL in a virtualized environment should follow the XQuartz setup for X11 forwarding, applicable only to those operating outside direct WSL integration on Windows.

  1. Install XQuartz: brew install --cask xquartz and restart.
  2. In XQuartz Preferences > Security, enable "Allow connections from network clients."
  3. Allow localhost connections: xhost +localhost.

Common Issues and Solutions

  • WSLg not functioning as expected? Verify your Windows version and WSL 2 installation and updates.
  • Linux GUI app won't launch? Ensure all components are up to date and the application is compatible with WSLg.

Resources

This guide is designed to help streamline your development environment by utilizing the latest WSL features while minimizing complexity. For more information and detailed troubleshooting, refer to the official WSL documentation.

How to use

  • OverVue will assign a default root App component and a default route called "HomeView"

  • To add a new component, type its name in the component name box and select any HTML elements that should be rendered by that component.

  • HTML elements can also be added after creation by selecting the component in the display, then selecting HTML elements.

  • You may nest HTML elements by dragging and dropping elements in the list tree view in either the right sidebar or the component modal (which can be opened by double clicking on a component node in the tree)

  • Select a parent component for the new component if needed.

  • After creating the component, you can drag the component node to reassign its parent and change the tree structure. For advanced styling options, double click on the desired HTML element to modify. Here, you may add attributes such as class, ID, and v-model.

  • The right-side, Component Details > Code Preview Tab displays live code preview for the selected component.

  • You can view, add, and delete new routes and associated components in the right-side, Routes Tab.

  • State and actions can be created, edited, and assigned to components.

  • When finished creating, view your code preview under the code preview tab and you can export to a file location of your choice. Below is the exported file structure:

public/
  index.html
src/
  assets/
  components/
    UserCreatedComponent1.vue
    UserCreatedComponent2.vue
    ...
  router/
    index.js
  views/
    HomeView.vue
    UserCreatedRouteComponent1.vue
    UserCreatedRouteComponent2.vue
    ...
  App.vue
  main.js
babel.config.js
package.json
  • To get a better look at the features and how to use OverVue, take a look at the in-app tutorial!

↥ Back to top

Changelogs (recent)

Changelogs (recent)

OverVue 11.0
  • Overhauled main view to be an interactive and intuitive tree view
  • Updated HTML Elements list to have nested elements
  • Created a focused component modal
  • Integrated a11y-friendly Vuetensils component library
  • Added unit testing for main tree view feature
  • Refactored codebase, removing unneeded comments, unused files, console logs
  • Cleaned UI of side bars
  • Added previous main grid view to toggle (in top right settings)

  • Bug Fixes

  • Fixed HTML elements not live rendering
  • Fixed delete HTML element functionality being inconsistent
  • Fixed Code Preview having unexpected code (i.e. v-model=undefined)
  • Fixed various bugs related to empty HTML lists or routes with no children
  • Fixed import statements and nesting in Code Preview and exported code
  • Fixed entire testing suite
OverVue 10.0
  • Overhauled main view to be an interactive and intuitive tree view
  • Updated HTML Elements list to have nested elements
  • Created a focused component modal
  • Integrated a11y-friendly Vuetensils component library
  • Added unit testing for main tree view feature
  • Refactored codebase, removing unneeded comments, unused files, console logs
  • Cleaned UI of side bars
  • Added previous main grid view to toggle (in top right settings)

  • Bug Fixes

  • Fixed HTML elements not live rendering
  • Fixed delete HTML element functionality being inconsistent
  • Fixed Code Preview having unexpected code (i.e. v-model=undefined)
  • Fixed various bugs related to empty HTML lists or routes with no children
  • Fixed import statements and nesting in Code Preview and exported code
  • Fixed entire testing suite
OverVue 9.0
  • Converted codebase (40+ components) from Options API to Composition API
  • Migrated store from Vuex to Pinia
  • Migrated codebase to TypeScript
  • Implemented testing of Pinia store
  • Updated Electron builder dependency
  • UI overhaul

  • Bug Fixes

  • Fixed nesting HTML elements functionality
  • Fixed adding innerText functionality
  • Fixed formatting of exported code
  • Fixed parent child component relationship in code snippet and on export
  • Fixed typing and initial values of store to match actions usage
  • Eliminated code redundancy by implementing Composition API and Pinia

Changelogs 8.0 and older

OverVue 8.0
  • Added component snap to grid functionality with additional grid density drop down menu feature
  • Code snippet reflects CSS grid area styling of components
  • Ability to import components from Element Plus library
  • Exported project template code now more accurately reflects component placement in app
  • Improved canvas drag and deselect
  • Improved WSL developer installation instructions
  • Added TypeScipt to application
  • Implemented component search bar feature
  • Ability to add Google and Github OAuth to exported project
  • Added unit testing and component testing boilerplate to exported project
  • UI overhaul

  • Bug Fixes

  • Fixed routing components in project exports
  • Fixed component hierarchy in project exports
  • Fixed import statements of route child components
  • Fixed edge case HTML element bugs in project exports
  • Fixed in app component movement bugs which caused position to not update correctly
  • Fixed drag and drop HTML element on click bug
  • Eliminated code redundancy by implementing mixins
OverVue 7.0
  • Color customizability of components
  • Code snippet reflects CSS styling of components
  • Added more semantic HTML tags
  • Options to add class, ID, and v-model attributes
  • Added drag and drop feature when adding/altering HTML tags
  • Ability to add child components to the code snippet of parent components
  • Added scoped style tags - On class creation will create styling entry with positioning of component/html element
  • Consolidated state/actions/props into one tab
  • UI overhaul

  • Bug Fixes

  • Fixed undo and redo capabilities
  • Fixed badge number not rendering for nested HTML tags
OverVue 6.0
  • Toggle to TypeScript mode to generate code snippets and export your project or individual components in TypeScript
  • An interactive and real-time tree display of your component hierarchy allows you to easily visualize parent-child component relationships and the Vue Router structure
  • Enhance your workflow by adding notes to your components. When you export your project or components into your favorite IDE, notes will be converted into comments within your Vue files.
  • Now with a “Get Started” tutorial, a visual queue of your HTML elements, and an overall simplified UI, OveVue is as intuitive as ever.
  • OverVue is now containerized with Docker to bring developers the same experience, regardless of your operating system.

  • Bug Fixes

  • Fixed drawer disappearing when the window size is smaller
  • Fixed inability to delete parent/child relationship
  • Fixed the inability to add multiple children to parent except when making a new component
  • Fixed CodeSnippet does not scroll when it overflows the container
  • Fixed clicking canvas does not fully deactivate active component
  • Fixed Error handling for 'pasting' component when no component is copied
  • Fixed dancing components
  • Fixed project tree visulization
  • OverVue 11.0
    • Overhauled main view to be an interactive and intuitive tree view
    • Updated HTML Elements list to have nested elements
    • Created a focused component modal
    • Integrated a11y-friendly Vuetensils component library
    • Added unit testing for main tree view feature
    • Refactored codebase, removing unneeded comments, unused files, console logs
    • Cleaned UI of side bars
    • Added previous main grid view to toggle (in top right settings)

    • Bug Fixes

    • Fixed HTML elements not live rendering
    • Fixed delete HTML element functionality being inconsistent
    • Fixed Code Preview having unexpected code (i.e. v-model=undefined)
    • Fixed various bugs related to empty HTML lists or routes with no children
    • Fixed import statements and nesting in Code Preview and exported code
    • Fixed entire testing suite
    OverVue 10.0
    • Overhauled main view to be an interactive and intuitive tree view
    • Updated HTML Elements list to have nested elements
    • Created a focused component modal
    • Integrated a11y-friendly Vuetensils component library
    • Added unit testing for main tree view feature
    • Refactored codebase, removing unneeded comments, unused files, console logs
    • Cleaned UI of side bars
    • Added previous main grid view to toggle (in top right settings)

    • Bug Fixes

    • Fixed HTML elements not live rendering
    • Fixed delete HTML element functionality being inconsistent
    • Fixed Code Preview having unexpected code (i.e. v-model=undefined)
    • Fixed various bugs related to empty HTML lists or routes with no children
    • Fixed import statements and nesting in Code Preview and exported code
    • Fixed entire testing suite
    OverVue 9.0
    • Converted codebase (40+ components) from Options API to Composition API
    • Migrated store from Vuex to Pinia
    • Migrated codebase to TypeScript
    • Implemented testing of Pinia store
    • Updated Electron builder dependency
    • UI overhaul

    • Bug Fixes

    • Fixed nesting HTML elements functionality
    • Fixed adding innerText functionality
    • Fixed formatting of exported code
    • Fixed parent child component relationship in code snippet and on export
    • Fixed typing and initial values of store to match actions usage
    • Eliminated code redundancy by implementing Composition API and Pinia

    Changelogs 8.0 and older

    OverVue 8.0
    • Added component snap to grid functionality with additional grid density drop down menu feature
    • Code snippet reflects CSS grid area styling of components
    • Ability to import components from Element Plus library
    • Exported project template code now more accurately reflects component placement in app
    • Improved canvas drag and deselect
    • Improved WSL developer installation instructions
    • Added TypeScipt to application
    • Implemented component search bar feature
    • Ability to add Google and Github OAuth to exported project
    • Added unit testing and component testing boilerplate to exported project
    • UI overhaul

    • Bug Fixes

    • Fixed routing components in project exports
    • Fixed component hierarchy in project exports
    • Fixed import statements of route child components
    • Fixed edge case HTML element bugs in project exports
    • Fixed in app component movement bugs which caused position to not update correctly
    • Fixed drag and drop HTML element on click bug
    • Eliminated code redundancy by implementing mixins
    OverVue 7.0
    • Color customizability of components
    • Code snippet reflects CSS styling of components
    • Added more semantic HTML tags
    • Options to add class, ID, and v-model attributes
    • Added drag and drop feature when adding/altering HTML tags
    • Ability to add child components to the code snippet of parent components
    • Added scoped style tags - On class creation will create styling entry with positioning of component/html element
    • Consolidated state/actions/props into one tab
    • UI overhaul

    • Bug Fixes

    • Fixed undo and redo capabilities
    • Fixed badge number not rendering for nested HTML tags
    OverVue 6.0
    • Toggle to TypeScript mode to generate code snippets and export your project or individual components in TypeScript
    • An interactive and real-time tree display of your component hierarchy allows you to easily visualize parent-child component relationships and the Vue Router structure
    • Enhance your workflow by adding notes to your components. When you export your project or components into your favorite IDE, notes will be converted into comments within your Vue files.
    • Now with a “Get Started” tutorial, a visual queue of your HTML elements, and an overall simplified UI, OveVue is as intuitive as ever.
    • OverVue is now containerized with Docker to bring developers the same experience, regardless of your operating system.

    • Bug Fixes

    • Fixed drawer disappearing when the window size is smaller
    • Fixed inability to delete parent/child relationship
    • Fixed the inability to add multiple children to parent except when making a new component
    • Fixed CodeSnippet does not scroll when it overflows the container
    • Fixed clicking canvas does not fully deactivate active component
    • Fixed Error handling for 'pasting' component when no component is copied
    • Fixed dancing components
    • Fixed project tree visulization
    OverVue 5.0
    OverVue 5.0
    • Upgraded source code to Vue 3
    • Upgraded major dependencies to newest versions
      • Upgraded from Vuex 3 to Vuex 4
      • Upgraded from Electron 5 to 16
      • Upgraded from Quasar 1 to 2
    • Rewrote exports in Vue 3
    • Reconfigured Vue Devtools to launch and connect upon running quasar in dev mode
    • Note that due to breaking changes when upgrading to Vue 3, vued3tree had to be replaced with vue3-tree.Due to this, a bulleted list currently renders instead of a tree. This is intended to be a short-term change, with the old package being utilized again once it is compatible.
    • Upgraded source code to Vue 3
    • Upgraded major dependencies to newest versions
      • Upgraded from Vuex 3 to Vuex 4
      • Upgraded from Electron 5 to 16
      • Upgraded from Quasar 1 to 2
    • Rewrote exports in Vue 3
    • Reconfigured Vue Devtools to launch and connect upon running quasar in dev mode
    • Note that due to breaking changes when upgrading to Vue 3, vued3tree had to be replaced with vue3-tree.Due to this, a bulleted list currently renders instead of a tree. This is intended to be a short-term change, with the old package being utilized again once it is compatible.
    OverVue 4.0
    • Integrated Slack through a Slack Login button to link user's slack channel to their OverVue instance
    • After logging in with Slack, user's have the ability to send a message to their selected Slack channel after saving
    • Implemented the ability to delete State and Actions from the store
    • Added the feature to quickly copy/paste Components through hotkeys
    • Reworked the interface to give users a more intuitive experience
      • Moved bottom dashboard to the right
      • Features on the left are geared toward creation/editing components
      • Features on the right are geared toward viewing overall hierarchy of App Prototype
      • Component Editor menu now switches between create/edit mode depending on if a Component is selected
      • Vuex Store and Actions now moved to left menu with ability to view/create/delete state and actions
    • Implemented Vue Devtools for development ease
    • Sped up component tree rendering speed for quicker, smoother viewing

    • Bug Fixes

    • Fixed html buttons not properly rendering for selected component
    • Fixed code snippet not properly rendering for selected component
    • Fixed JSON parser typeerror with component html lists
    • Fixed component tree view rendering instability with right sidebar
    • Fixed children and parent relationship mutations causing type related side effects
    • Fixed issue where state/actions deleted in store aren't reflected across components
    • Fixed issue with undo feature that would delete inputed text one character at a time
    OverVue 3.0
    OverVue 3.0
    • Implemented full component edit functionality
    • Improved sidebar user interface to consolidate edit functionality
    • UI is more reactive, improved dashboard's ability to update dynamically
    • Added ability to incorporate Vuex in application
    • Updated component details section to better display all aspects of a component
    • Added action, state, and props section to component details dashboard
    • New Vuex store dashboard section
    • More robust code snippets with Vuex props, state, and actions included
    • Bug fixes for parent/child issues
    • Improved Documentation for easier onboarding of new contributors
    • Implemented full component edit functionality
    • Improved sidebar user interface to consolidate edit functionality
    • UI is more reactive, improved dashboard's ability to update dynamically
    • Added ability to incorporate Vuex in application
    • Updated component details section to better display all aspects of a component
    • Added action, state, and props section to component details dashboard
    • New Vuex store dashboard section
    • More robust code snippets with Vuex props, state, and actions included
    • Bug fixes for parent/child issues
    • Improved Documentation for easier onboarding of new contributors
    OverVue 2.0
    OverVue 2.0
    • Improved hierarchy tree rendering
    • Improved Route addition and deletion
    • Able to search for components by name
    • Improved UI to be more informative
    • UI is more reactive, code snippets update dynamically
    • Component children menu is consistent with children list at time of creation
    • Children components can no longer choose any of their ancestors to be their children.
    • Can now use Quasar build -m electron to make windows .exe
    • Exporting projects now exports the mockup files as well into the assets folder
    • Saving projects now saves the mockup image url
    • Extensive bug fixing for Vue component and HTML element deletion behavior, exporting and saving.
    • Improved hierarchy tree rendering
    • Improved Route addition and deletion
    • Able to search for components by name
    • Improved UI to be more informative
    • UI is more reactive, code snippets update dynamically
    • Component children menu is consistent with children list at time of creation
    • Children components can no longer choose any of their ancestors to be their children.
    • Can now use Quasar build -m electron to make windows .exe
    • Exporting projects now exports the mockup files as well into the assets folder
    • Saving projects now saves the mockup image url
    • Extensive bug fixing for Vue component and HTML element deletion behavior, exporting and saving.

    ↥Back to top

    How to contribute

    Expand
    ## How to contribute
    Expand

    We'd love for you to test out the application and submit any issues you encounter. Also feel free to fork to your own repo and submit PRs.

    Here are some features we're thinking about adding:

    Here are some features we're thinking about adding:

    • Ability to choose options or composition API for code preview and exported code
    • Ability to choose Vuex or Pinia for code preview and exported code
    • Ability to add two-way binding to input elements
    • Expand testing suite and add more dynamic tests
    • Reincorporate Slack OAuth
    • Add styling and script tags to Vuetensils boilerplate

    Smaller changes that can be worked on:

    • Removing ghost image when dragging HTML elements
    • Highlight active HTML element when selected/updating
    • Remove duplicate imports and account for nested components in Vuetensils import statement
    • HTML elements list occasionally does not render properly after component is dragged



    ↥Back to top

    Contributors


    OverVue 11.0 LinkedIn GitHub
    Anthony Herrera LinkedIn GitHub
    Daniel Garan LinkedIn GitHub
    Kevin Can LinkedIn GitHub
    Robery Sinizieri LinkedIn GitHub
    Roderick de Leon LinkedIn GitHub

    OverVue 10.0 GitHub
    David Lee @GomDave
    Trisha Duong @trishanduong
    Jaime de Venecia @jdvplus
    Janica Abagat @janicaa1

    OverVue 9.0 GitHub
    Ji Kim @dwejikim
    Chris Davis @chdavis0917
    Linden Young @lindenyoung
    Jigar Patel @jigarxp

    OverVue 8.0 GitHub
    Emma Genesen @EGenesen
    Alex Law @alexlaw528
    Honghao(Michael) Sun @sunhonghaoparis
    Chris Wong @Koregano73

    OverVue 7.0 GitHub
    Katherine Kim @katherinek123
    Keyla Koizumi Nishimura @keylakoizumin
    Jace Crowe @JaceCrowe
    Johnny Chan @jchan444

    OverVue 6.0 GitHub
    Megan Nadkarni @megatera
    Kerolos Nesem @Kerolos-Nesem
    Julia Bakerink @jbbake
    Bryan Bart @MrBeeAreWhy
    Aram Paparian @apaparian

    OverVue 5.0 GitHub
    Zoew McGrath @Z-McGrath
    Shanon Lee @shanonlee541
    Ross Lamerson @lamerson28
    Gabriela Kokhabi @gkokhabi

    OverVue 4.0 GitHub
    Sonny Nguyen @sn163
    Ryan Bender @rdbender
    Kenny Lee @kennyea
    Jeffrey Sul @jeffreysul
    Alex Lu @aleckslu

    OverVue 3.0 GitHub
    Faraz Moallemi @farazmoallemi
    Terry Tilley @codeByCandlelight
    Nicholas Schillaci @schillaci767
    Sean Grace @ziggrace

    OverVue 2.0 GitHub
    Joju Olaode @JojuOlaode
    Allison Pratt @allisons11
    Keriann Lin @keliphan
    Alexander Havas @LOLDragoon

    OverVue 1.0 GitHub
    Drew Nguyen @drewngyen
    Dean Ohashi @dnohashi
    Dean Chung @deanfchung
    Joseph Eisele @jeisele2

    OverVue was inspired by PreVue


    ↥Back to top

About

Prototyping Tool For Vue Devs 适用于Vue的原型工具

Topics

Resources

License

Code of conduct

Contributing

Security policy

Stars

Watchers

Forks

Sponsor this project

Packages

No packages published

Contributors 47