Web 新平台 “airoot-uisys” 释放前端开发活力

简介: A powerful web ui tool, so we call it uisys! 一个功能强大的 WEB UI 开发工具,所以我们叫它UISYS。

写这篇文章比较尴尬,因为当今开发WEB的平台主要是nodejs,代表性的框架就是网络三大框架。很多人都了解也都熟悉,他们的优势之一就是模块化开发,适合大项目的构架,另外就是数据绑定的思想。我开发WEB大概很长时间了,之前前身做flash,后来做flex,用过extjs、j-ui,当然web三大框架都用过,说实话对于开发来讲还是限制性比较大。
由衷的感觉早起开发WEB像拿着画笔,现在开发WEB像拿着印刷机。虽然web开发当今蓬勃发展,丹内在确实siqichenc死气沉沉,没有创意和灵感。

因此,我重新开发了一套工具,这套工具给程序员更自由的发挥空间,并且无论开发者在什么水平,都可以轻易实现模块化的思想。在这套工具里,及时你会最简单的html开发,也不影响你循序渐进的使用。

那么下面看下在套工具的能力:
我们用React写个例子:

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Hello React!</title>
<script src="https://cdn.staticfile.org/react/16.4.0/umd/react.development.js"></script>
<script src="https://cdn.staticfile.org/react-dom/16.4.0/umd/react-dom.development.js"></script>
<script src="https://cdn.staticfile.org/babel-standalone/6.26.0/babel.min.js"></script>
</head>
<body>

<div id="example"></div>
<script type="text/babel">
    <!-- 定义一个模块 -->
    function Element(){
      return <h1>Hello Baby!</h1>;
    }

    <!-- 你要展现的代码写在下面. -->
    function App(props) {
        return (
            <div>
               <Element/>
               <Element/>
            </div>
        );
    }

    ReactDOM.render(
        <App />,
        document.getElementById('example')
    );
</script>

</body>
</html>

看下 airoot-uisys 工具下的写法(其中@pub 表示可以单页渲染)。

<@pub/>

<!-- 定义一个模块 -->
<@define name="Element">
  <h1>Hello Baby!</h1>
</@define>

<!-- 你要展现的代码写在下面. -->
<div>
  <Element/>
  <Element/>
</div>  

如果要运行上面的代码,可以看下这个博客:
https://cloud.tencent.com/developer/article/1611252

你也可通过javascript 创建自定义的component
看下React的实现:

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Hello React!</title>
<script src="https://cdn.staticfile.org/react/16.4.0/umd/react.development.js"></script>
<script src="https://cdn.staticfile.org/react-dom/16.4.0/umd/react-dom.development.js"></script>
<script src="https://cdn.staticfile.org/babel-standalone/6.26.0/babel.min.js"></script>
</head>
<body>

<div id="example"></div>
<script type="text/babel">
<!-- 定义一个模块 -->
function Element(){
      return <h1>Hello Baby!</h1>;
}
<!-- 定义一个模块 -->
class App extends React.Component{
    constructor(props) {
        super(props);
        this.state = {comps : [1]}
    }
    
    render() {
        const {comps } = this.state;
        return (
            <div>
                {comps.map(comp => {
                    return <Element/>
                })}
            </div>
        );
    }
}
ReactDOM.render(
    <App />,
    document.getElementById('example')
  );
</script>

</body>
</html>

看下uisys的实现:

<@pub/>

<!-- 定义一个模块 -->
<@define name="Element">
  <h1>Hello Baby!</h1>
</@define>

<!-- 你要展现的代码写在下面. -->
<div>
  <!-- dom 内部区域-->
</div>

<script>
  function init(){
    var element = new Element();
    dom.appendChild(element);
  }
</script>

上面的代码如果不了解dom关键字,你也可以这么写:

<@pub/>

<!-- 定义一个模块 -->
<@define name="Element">
  <div>Hello Baby!</div>
</@define>

<!-- 你要展现的代码写在下面. -->
<div id="ct"></div>

<script>
  function init(){
      var element= new Element();
      #ct.appendChild(element);
  }
</script>

uisys 的灵活性非常好,上面的代码你可以分成两个文件,一个放Element.ui ,一个放App.ui。这里就不多演示了。

airoot uisys 现在发布了v1版本,基于它的能力可以创建很多复杂的web应用。
例如可以用HTML渲染Three.js 的功能,如下效果图:
image

其他如下:

<!-- 
    类注释
    @author sunxy
    @version 0.0
 -->
<@import value="jus.*" />
<@import value="zs.*" />
<@import value="zs.texture.*" />
<desktop>
    <style>
        *{
            transition:all .3s ease;
        }
        #header{
            background-color:#f0f0f0;
        }
        
        #header ul{
            margin-top:20px;
            margin-right:20px;
        }
        
        #header li{
            float:left;
            list-style:none;
            margin-right:10px;
        }
    </style>
    <hbox id="header" width="100%" height="60">
        <div width="400" height="100%" style="font-family:Microsoft YaHei;font-size:32px;font-weight:bold;margin:10px 0px 0px 15px;">AIroot Library Manager</div>
        <div width="100%" height="100%">
            <ul style="float:right;">
                <li>HOME</li>
                <li>ABOUT</li>
                <li>EDIT</li>
                <li>SERVICE</li>
            </ul>
        </div>
    </hbox>
    <position width="100%" height="100%">
        <td id="plt" width="100%" height="100%">
            <SkyBox>
                <children>
                    <Sphere x="0" y="0" z="0" r="3" w="26" h="24" color="#ffaa00" />
                    <Sphere x="10" y="0" z="0" r="3" w="26" h="24" color="#00ffaa"/>
                    <Sphere x="0" y="10" z="0" r="3" w="26" h="24" color="#ff00aa"/>
                    <Sphere x="0" y="0" z="10" r="3" w="26" h="24" color="#00ff00"/>
                    <Sphere x="-10" y="0" z="0" r="3" w="26" h="24" />
                    <Sphere x="0" y="-10" z="0" r="3" w="26" h="24" />
                    <Sphere x="0" y="0" z="-10" r="3" w="26" h="24">
                        <texture>
                            <TextureLoader src="textures/crate.gif" />
                        </texture>
                    </Sphere>
                    <Cube x="20" y="5" width="10" height="10" depth="10">
                        <texture>
                            <TextureLoader src="textures/crate.gif" />
                        </texture>
                    </Cube>
                    <Loader src="" />
                </children>
            </SkyBox>
            <fog />
        </td>
        <LeftLabel />
        <RightLabel right="25" top="10" />
    </position>
</desktop>

目前我正在用airoot uisys重新做一个flash,为什么选择uisys呢,因为uisys在语言写法上不会给你阻碍,思想到代码很直接,可以看下uisys做成flash IDE的效果,一下全部由uisys开发的web flash ide:
image
可以看下里面的代码段落:
1.

<!-- PlayEditor.ui -->
<@pub/>
<head>
    <style>
        body{
            margin:0px;
            background-color:#dddddd;
        }
    </style>
</head>
<@import value="jus.*"/>
<desktop>
    <plat.TimeLine id="tl" height="230" />
    <HBox>
        <plat.Library width="320" height="100%"></Library>
        <plat.Scene width="100%" height="100%"></Scene>
    </HBox>
</desktop>
<script>
    function init(){
        
    }
</script>

2.

<!-- Scene.ui -->
<@import value="jus.*"/>
<style>
    body{
        border-right:1px solid #aaaaaa;
    }
    .header{
        
        display:flex;
        align-items:center;
        padding:0px 10px;
        background-color:#d0d0d0;
        
    }
    
    .frame{
        background-color: #dddddd;
        box-shadow:0px 0px 4px rgba(0,0,0,0.2);
        position:relative;
    }
    .bg{
        background-color:#fefefe;
    }
</style>
<VBox height="100%">
    <div height="48" width="100%" class="header">
        场景&nbsp;&nbsp;
        <Combo>
            
        </Combo>
    </div>
    <Position width="100%" height="100%" class="frame">
        <Index left="100" top="50" right="100" bottom="50"/>
    </Position>
</VBox>

airoot uisys 的可塑性非常强,对于插件的定义绝对三大框架后的大佬(我相信),来看下它为人民教育出版社开发的指数联动交互图书:
image
我们看下其中一页的代码:

<!-- 
    类注释
    @author sunxy
    @version 0.0
 -->
<@import value="component.*" />
<@import value="root.*" />
<page>
    <image x="35" y="62" src="img/photo87.png" />
      <image x="117" y="655" src="img/photo85.png" />
      <blacktext x="126" y="66" audio="audio/page014/OtherData/231_014_01.mp3">Let's talk</blacktext>
       <etext x='54' y='238' audio="audio/page014/OtherData/231_014_02.mp3">Mr Jones,<br/>this is Miss Green.</etext>
       <etext x='356' y='252' audio="audio/page014/OtherData/231_014_03.mp3">Good morning,<br/>Miss Green.</etext>
       <etext x='304' y='497' audio="audio/page014/OtherData/231_014_04.mp3">Good morning.</etext>
    <blacktext x="71" y="594" audio="audio/page014/OtherData/231_014_06.mp3"><img src="img/photo88.png" />Draw and say</blacktext>
       <etext x='148' y='670' audio="audio/page014/OtherData/231_014_07.mp3">This is Miss Green.</etext>
       <etext x='382' y='670' audio="audio/page014/OtherData/231_014_08.mp3">This is Mr Jones.</etext>
      <lnum>14</lnum>
</page>

上面的代码在uisys的编写框架下可以实现点击朗读,和通篇朗读,当然还可以支持游戏。

airoot uisys 先介绍这么多。

相关实践学习
Serverless极速搭建Hexo博客
本场景介绍如何使用阿里云函数计算服务命令行工具快速搭建一个Hexo博客。
目录
相关文章
|
8天前
|
前端开发 JavaScript 安全
前端性能调优:HTTP/2与HTTPS在Web加速中的应用
【10月更文挑战第27天】本文介绍了HTTP/2和HTTPS在前端性能调优中的应用。通过多路复用、服务器推送和头部压缩等特性,HTTP/2显著提升了Web性能。同时,HTTPS确保了数据传输的安全性。文章提供了示例代码,展示了如何使用Node.js创建一个HTTP/2服务器。
20 2
|
5天前
|
监控 前端开发 JavaScript
探索微前端架构:构建可扩展的现代Web应用
【10月更文挑战第29天】本文探讨了微前端架构的核心概念、优势及实施策略,通过将大型前端应用拆分为多个独立的微应用,提高开发效率、增强可维护性,并支持灵活的技术选型。实际案例包括Spotify和Zalando的成功应用。
|
9天前
|
Unix Linux PHP
PHP在Web开发中的平台独立性优势###
本文探讨了PHP的跨平台特性,阐述其作为服务器端脚本语言如何在不同操作系统上无缝运行,以及这一特性为开发者和组织带来的便利性和成本效益。 ###
|
9天前
|
前端开发 JavaScript
Bootstrap Web 前端 UI 框架
Bootstrap 是快速开发 Web 应用程序的前端工具包。
24 3
|
9天前
|
前端开发 安全 应用服务中间件
前端性能调优:HTTP/2与HTTPS在Web加速中的应用
【10月更文挑战第26天】随着互联网的快速发展,前端性能调优成为开发者的重要任务。本文探讨了HTTP/2与HTTPS在前端性能优化中的应用,介绍了二进制分帧、多路复用和服务器推送等特性,并通过Nginx配置示例展示了如何启用HTTP/2和HTTPS,以提升Web应用的性能和安全性。
16 3
|
9天前
|
前端开发 JavaScript API
前端框架新探索:Svelte在构建高性能Web应用中的优势
【10月更文挑战第26天】近年来,前端技术飞速发展,Svelte凭借独特的编译时优化和简洁的API设计,成为构建高性能Web应用的优选。本文介绍Svelte的特点和优势,包括编译而非虚拟DOM、组件化开发、状态管理及响应式更新机制,并通过示例代码展示其使用方法。
25 2
|
10天前
|
开发框架 前端开发 JavaScript
Web前端框架
Web前端框架等名词
14 2
|
13天前
|
缓存 安全 JavaScript
PHP在Web开发中的平台优势与未来趋势###
【10月更文挑战第21天】 PHP,Hypertext Preprocessor,凭借其灵活性、广泛应用和强大社区支持,已成为Web开发的常青树。本文探讨了PHP的发展历程、核心优势、最佳实践案例及面临的挑战与机遇,揭示其在现代Web开发中不可替代的角色,以及如何适应未来技术趋势,持续引领Web创新。 ###
32 2
|
19天前
|
设计模式 PHP 开发者
PHP在Web开发中的平台优势与未来展望###
【10月更文挑战第17天】 本文探讨了PHP作为服务器端脚本语言在Web开发领域的持久魅力与独特优势,从其易于学习、成本效益高、强大社区支持到灵活的框架生态,展现了PHP为何能在全球网站开发中占据重要地位。同时,文章也展望了PHP在未来技术趋势下,如云计算、微服务架构中的发展潜力,强调持续创新对于保持其竞争力的重要性。 ###
25 2
|
21天前
|
人工智能 前端开发
2024 川渝 Web 前端开发技术交流会「互联」:等你来报名!
2024 川渝 Web 前端开发技术交流会「互联」:等你来报名!
2024 川渝 Web 前端开发技术交流会「互联」:等你来报名!
下一篇
无影云桌面