forked from opentiny/tiny-engine
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: es import error、add build command(comments)、add demo designer... (…
…opentiny#514) * feat: add designer demo package * fix: remove useless svg assets * fix: add .js to resolve es import error * fix: add build command in comments and entry * fix: remove metaService * feat: update registry template
- Loading branch information
Showing
30 changed files
with
675 additions
and
53 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,265 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<link rel="icon" href="/favicon.ico" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<style type="text/css"> | ||
.loading-warp { | ||
display: flex; | ||
flex-direction: column; | ||
justify-content: center; | ||
position: fixed; | ||
top: -75px; | ||
bottom: 0; | ||
left: 0; | ||
right: 0; | ||
} | ||
.loading { | ||
width: 60px; | ||
height: 60px; | ||
margin: 0 auto; | ||
position: relative; | ||
animation: load 3s linear infinite; | ||
} | ||
.loading div { | ||
width: 100%; | ||
height: 100%; | ||
position: absolute; | ||
} | ||
.loading span { | ||
display: inline-block; | ||
width: 20px; | ||
height: 20px; | ||
border-radius: 50%; | ||
background: #99cc66; | ||
position: absolute; | ||
left: 50%; | ||
margin-top: -10px; | ||
margin-left: -10px; | ||
animation: changeBgColor 3s ease infinite; | ||
} | ||
@keyframes load { | ||
0% { | ||
transform: rotate(0deg); | ||
} | ||
33.3% { | ||
transform: rotate(120deg); | ||
} | ||
66.6% { | ||
transform: rotate(240deg); | ||
} | ||
100% { | ||
transform: rotate(360deg); | ||
} | ||
} | ||
@keyframes changeBgColor { | ||
0%, | ||
100% { | ||
background: #99cc66; | ||
} | ||
33.3% { | ||
background: #ffff66; | ||
} | ||
66.6% { | ||
background: #ff6666; | ||
} | ||
} | ||
.loading div:nth-child(2) { | ||
transform: rotate(120deg); | ||
} | ||
.loading div:nth-child(3) { | ||
transform: rotate(240deg); | ||
} | ||
.loading div:nth-child(2) span { | ||
animation-delay: 1s; | ||
} | ||
.loading div:nth-child(3) span { | ||
animation-delay: 2s; | ||
} | ||
html, | ||
body, | ||
div, | ||
span, | ||
object, | ||
iframe, | ||
p, | ||
blockquote, | ||
pre, | ||
abbr, | ||
address, | ||
cite, | ||
code, | ||
del, | ||
dfn, | ||
em, | ||
img, | ||
ins, | ||
kbd, | ||
q, | ||
samp, | ||
small, | ||
strong, | ||
sub, | ||
sup, | ||
var, | ||
b, | ||
i, | ||
dl, | ||
dt, | ||
dd, | ||
ol, | ||
ul, | ||
li, | ||
fieldset, | ||
form, | ||
label, | ||
legend, | ||
table, | ||
caption, | ||
tbody, | ||
tfoot, | ||
thead, | ||
tr, | ||
th, | ||
td, | ||
article, | ||
aside, | ||
canvas, | ||
details, | ||
figcaption, | ||
figure, | ||
footer, | ||
header, | ||
hgroup, | ||
menu, | ||
nav, | ||
section, | ||
summary, | ||
time, | ||
mark, | ||
audio, | ||
video { | ||
margin: 0; | ||
padding: 0; | ||
border: 0; | ||
outline: 0; | ||
font-size: 100%; | ||
background: transparent; | ||
user-select: none; | ||
} | ||
html, | ||
body { | ||
width: 100%; | ||
height: 100%; | ||
min-height: 100vh; | ||
} | ||
|
||
.design-canvas { | ||
margin: 0; | ||
padding: 0; | ||
} | ||
|
||
body::-webkit-scrollbar { | ||
width: 8px; | ||
height: 8px; | ||
} | ||
body::-webkit-scrollbar-track, | ||
body::-webkit-scrollbar-track-piece, | ||
body::-webkit-scrollbar-corner { | ||
background-color: transparent; | ||
} | ||
body::-webkit-scrollbar-thumb { | ||
background-color: #dbdbdb; | ||
border-radius: 4px; | ||
} | ||
body::-webkit-scrollbar-thumb:hover { | ||
background-color: #c2c2c2; | ||
} | ||
.design-page { | ||
display: block; | ||
height: 100%; | ||
} | ||
.design-page > :not(:defined):empty { | ||
display: flex; | ||
margin: 10px; | ||
align-items: center; | ||
} | ||
/* 此选择器表示所有未被定义的自定义元素,用来表示区块还没加载完成,并添加加载中动画 */ | ||
.design-page > :not(:defined):empty::before { | ||
content: ''; | ||
display: block; | ||
width: 20px; | ||
height: 20px; | ||
border: 3px solid #4f77ff; | ||
border-top-color: transparent; | ||
border-radius: 100%; | ||
animation: circle infinite 0.75s linear; | ||
} | ||
/* 以下代码是为了保证区块还没加载完成之前不显示内部插槽内容 */ | ||
.design-page > :not(:defined):empty > * { | ||
display: none; | ||
} | ||
.design-page > :not(:defined):empty::after { | ||
margin-left: 10px; | ||
content: '区块加载中...'; | ||
font-size: 16px; | ||
} | ||
.canvas-container { | ||
background: #f1f1f1; | ||
height: 100%; | ||
} | ||
.canvas-container .container-box { | ||
background-repeat: no-repeat; | ||
background-size: 1px 100%, 100% 1px; | ||
background-position: 100% 0, 100% 100%; | ||
position: relative; | ||
height: 100%; | ||
background-image: linear-gradient(-90deg, #e0e0e0, #e0e0e0), linear-gradient(-180deg, #e0e0e0, #e0e0e0); | ||
} | ||
.design-page .tiny-row .tiny-col:empty { | ||
min-height: 30px; | ||
border: 1px solid #ccc; | ||
} | ||
.canvas-container .container-box .container-tip { | ||
background-repeat: no-repeat; | ||
background-size: 1px 100%, 100% 1px; | ||
background-position: initial; | ||
font-size: 14px; | ||
font-weight: 400; | ||
height: 100%; | ||
min-height: 48px; | ||
display: flex; | ||
align-items: center; | ||
justify-content: center; | ||
color: #a7b1bd; | ||
background-image: linear-gradient(-90deg, #e0e0e0, #e0e0e0), linear-gradient(-180deg, #e0e0e0, #e0e0e0); | ||
} | ||
.canvas-grid-bg { | ||
background-image: linear-gradient(#dadada7d 1px, transparent 0), | ||
linear-gradient(90deg, #dadada7d 1px, transparent 0), linear-gradient(#dadada 1px, transparent 0), | ||
linear-gradient(90deg, #dadada 1px, transparent 0); | ||
background-size: 11px 11px, 11px 11px, 55px 55px, 55px 55px; | ||
background-color: rgb(255, 255, 255); | ||
} | ||
@keyframes circle { | ||
0% { | ||
transform: rotate(0deg); | ||
} | ||
100% { | ||
transform: rotate(360deg); | ||
} | ||
} | ||
</style> | ||
</head> | ||
<body class="design-canvas" id="app"> | ||
<div class="loading-warp"> | ||
<div class="loading"> | ||
<div><span></span></div> | ||
<div><span></span></div> | ||
<div><span></span></div> | ||
</div> | ||
</div> | ||
<script type="module" src="./src/canvas.js"></script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
/** | ||
* Copyright (c) 2024 - present TinyEngine Authors. | ||
* Copyright (c) 2024 - present Huawei Cloud Computing Technologies Co., Ltd. | ||
* | ||
* Use of this source code is governed by an MIT-style license. | ||
* | ||
* THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, | ||
* BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR | ||
* A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. | ||
* | ||
*/ | ||
|
||
import defaultConfig from '@opentiny/tiny-engine/vite.config.js' | ||
import { defineConfig } from 'vite' | ||
|
||
export default { | ||
viteConfig: defaultConfig(({ command }) => defineConfig({ command, mode: 'serve' })), | ||
otherConfig: {} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<link rel="icon" type="image/svg+xml" href="/vite.svg" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>Vite + Vue</title> | ||
</head> | ||
<body> | ||
<div id="app"></div> | ||
<script type="module" src="/src/main.js"></script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ | ||
"name": "designer-demo", | ||
"private": true, | ||
"version": "0.0.0", | ||
"type": "module", | ||
"scripts": { | ||
"dev": "engine-cli serve", | ||
"build": "engine-cli build" | ||
}, | ||
"dependencies": { | ||
"vue": "^3.4.21", | ||
"@opentiny/tiny-engine": "workspace:^", | ||
"@opentiny/tiny-engine-entry": "workspace:^", | ||
"@opentiny/tiny-engine-canvas": "workspace:^" | ||
}, | ||
"devDependencies": { | ||
"@vitejs/plugin-vue": "^5.0.4", | ||
"vite": "^5.2.7", | ||
"@opentiny/tiny-engine-cli": "workspace:^", | ||
"@opentiny/vite-plugin-generate-comments": "workspace:^" | ||
} | ||
} |
Oops, something went wrong.