From 9c84770fdeae0df162bc6e32491c2b893d953f55 Mon Sep 17 00:00:00 2001 From: shaoying Date: Mon, 31 Oct 2022 18:52:10 +0800 Subject: [PATCH] opt some --- frame.js | 16 +- panel/action.js | 5 +- plugin/input/key.js | 2 +- plugin/local/team/plan.js | 2 +- plugin/table.js | 2 + proto.js | 356 +++++++++++++++++++++++++++++++++++++- 6 files changed, 361 insertions(+), 22 deletions(-) diff --git a/frame.js b/frame.js index 3b965ce9..7f48ab0c 100644 --- a/frame.js +++ b/frame.js @@ -21,7 +21,7 @@ Volcanos(chat.ONENGINE, {_init: function(can, meta, list, cb, target) { }, target) }, function() { can.onmotion._init(can, target), can.onkeymap._init(can), can.misc.Info(can.user.title(), ice.RUN, can) can.onengine.listen(can, chat.ONSEARCH, function(msg, word) { word[0] == ctx.COMMAND && can.run(msg, ["can.command"]) }) - can.onengine.signal(can, chat.ONMAIN, can.request()), can.base.isFunc(cb) && cb() + can.onengine.signal(can, chat.ONMAIN, can.request()), can.base.isFunc(cb) && cb(can) }) }, _search: function(event, can, msg, panel, cmds, cb) { @@ -189,7 +189,7 @@ Volcanos(chat.ONAPPEND, {_init: function(can, meta, list, cb, target, field) { }, _output0: function(can, meta, event, cmds, cb, silent) { var msg = can.request(event); if (msg.RunAction(event, can, cmds)) { return } if (msg.Option(ice.MSG_HANDLE) != ice.TRUE && cmds && cmds[0] == ctx.ACTION && meta.feature[cmds[1]]) { var msg = can.request(event, {action: cmds[1]}) - return can.user.input(event, can, meta.feature[cmds[1]], function(args) { can.Update(can.request(event, {_handle: ice.TRUE}, can.Option()), args.concat(cmds.slice(0, 2))) }) + return can.user.input(event, can, meta.feature[cmds[1]], function(args) { can.Update(can.request(event, {_handle: ice.TRUE}, can.Option()), cmds.slice(0, 2).concat(args)) }) } return can.onengine._plugin(event, can, msg, can, cmds, cb) || can.run(event, cmds, cb||function(msg) { if (silent) { return } if ((msg._can == can || msg._can == can.core.Value(can, chat._OUTPUTS_CURRENT)) && can.core.CallFunc([can, chat.ONIMPORT, ice.MSG_PROCESS], {can: can, msg: msg})) { return } @@ -299,7 +299,7 @@ Volcanos(chat.ONAPPEND, {_init: function(can, meta, list, cb, target, field) { function _cb(sub, value, old) { if (value == old) { return } can.base.isFunc(cb)? cb(sub, value, old): target.value = value||"", can.onmotion.delay(can, function() { can.onmotion.focus(can, target) }) } can.core.ItemCB(can.onfigure[input], function(key, on) { var last = target[key]||function(){}; target[key] = function(event) { can.core.CallFunc(on, {event: event, can: can, meta: meta, cb: _cb, target: target, sub: target._can, last: last, cbs: function(cb) { - function show() { + function show() { var sub = target._can can.onlayout.figure(event, can, target._can._target), can.onmotion.toggle(can, target._can._target, true), can.base.isFunc(cb) && cb(target._can, _cb) can.page.style(can, sub._output, html.MAX_HEIGHT, can.base.Max(can.page.height()-sub._target.offsetTop-2*html.ACTION_HEIGHT, can.page.height()/2)) } if (target._can) { return show() } @@ -374,9 +374,9 @@ Volcanos(chat.ONLAYOUT, {_init: function(can, target) { target = target||documen }, }) Volcanos(chat.ONMOTION, {_init: function(can, target) { - var last = can.page.width() < can.page.height(); window.onresize = function(event) { - if (can.user.isMobile && last === can.page.width() < can.page.height()) { return } last = can.page.width() < can.page.height() - can.onengine.signal(can, chat.ONRESIZE), window.setsize && window.setsize(can.page.width(), can.page.height()) + document.body.onclick = function(event) { if (can.page.tagis(event.target, html.SELECT, html.INPUT, html.TEXTAREA)) { return } + if (can.page.tagis(event.target, html.A) && can.user.isWebview) { return event.shiftKey? window.outopen(event.target.href): can.user.open(event.target.href) } + can.page.Select(can, document.body, can.page.Keys("div.carte.float"), function(target) { can.page.Remove(can, target) }) } }, story: { @@ -474,10 +474,6 @@ Volcanos(chat.ONMOTION, {_init: function(can, target) { }, }) Volcanos(chat.ONKEYMAP, {_init: function(can, target) { - document.body.onclick = function(event) { if (can.page.tagis(event.target, html.SELECT, html.INPUT, html.TEXTAREA)) { return } - if (can.page.tagis(event.target, html.A) && can.user.isWebview) { return event.shiftKey? window.outopen(event.target.href): can.user.open(event.target.href) } - can.page.Select(can, document.body, can.page.Keys("div.carte.float"), function(target) { can.page.Remove(can, target) }) - } can.onkeymap._build(can), document.body.onkeydown = function(event) { if (can.page.tagis(event.target, html.SELECT, html.INPUT, html.TEXTAREA)) { return } var msg = can.request(event, {"model": "normal"}); if (msg.Option(ice.MSG_HANDLE) == ice.TRUE) { return } diff --git a/panel/action.js b/panel/action.js index 8da21fa6..26008bcc 100644 --- a/panel/action.js +++ b/panel/action.js @@ -130,7 +130,10 @@ Volcanos(chat.ONACTION, {_init: function(can, target) { can.onmotion.select(can, can._output, html.FIELDSET_PLUGIN, parseInt(event.key)-1) } }, - onresize: function(can, msg) { can.onlayout._init(can), can.onaction.layout(can, can.Conf(chat.LAYOUT)) }, + onresize: function(can, height, width) { + can.onlayout._init(can), can.onaction.layout(can, can.Conf(chat.LAYOUT)) + window.setsize && window.setsize(can.page.width(), can.page.height()) + }, onsize: function(can, msg, height, width) { can.Conf({height: height-can.Conf(html.MARGIN_Y), width: width-can.Conf(html.MARGIN_X)}) }, onsearch: function(can, msg, word) { if (word[0] == mdb.FOREACH || word[0] == mdb.PLUGIN) { can.onexport.plugin(can, msg, word) } }, onprint: function(can, msg) { can.page.styleHeight(can, can._target, "") }, diff --git a/plugin/input/key.js b/plugin/input/key.js index 915f1d8c..fa7a9dd5 100644 --- a/plugin/input/key.js +++ b/plugin/input/key.js @@ -17,7 +17,7 @@ Volcanos(chat.ONFIGURE, {key: { }) }, onblur: function(event, can, sub) { can.onmotion.delay(can, function() { sub._delay_hidden || can.onmotion.hidden(can, sub._target), sub._delay_hidden = false }, 300) }, onkeydown: function(event, can, meta, cb, target, sub, last) { if (sub.hidden()) { return } - if (event.key == lang.ENTER && meta._enter && (!can.page.tagis(event.target, html.TEXTAREA) || event.ctrlKey) && meta._enter(event)) { return } + if (event.key == lang.ENTER && meta._enter && (!can.page.tagis(event.target, html.TEXTAREA) || event.ctrlKey) && meta._enter(event)) { return sub.close() } can.onkeymap.selectCtrlN(event, can, sub._output, "tr:not(.hidden)>td:first-child", function(td) { return cb(sub, td.innerText, target.value), td }) || can.onkeymap.selectInputs(event, sub, function() { sub._load(event, sub, cb, target, meta.name) }, target) }, diff --git a/plugin/local/team/plan.js b/plugin/local/team/plan.js index 31558edc..b9bf85fe 100644 --- a/plugin/local/team/plan.js +++ b/plugin/local/team/plan.js @@ -113,7 +113,7 @@ Volcanos(chat.ONIMPORT, {_init: function(can, msg, target) { can.onmotion.clear( can.onmotion.toggle(can, can._action, !can.isFloatMode() && !(can.user.isMobile && can.page.height() < can.page.width())) can.onmotion.toggle(can, can._status, !can.isFloatMode() && !(can.user.isMobile && can.page.height() < can.page.width())) can.page.styleWidth(can, can.ui.content, can.ConfWidth()-can.ui.project.offsetWidth-can.ui.profile.offsetWidth) - if (!can.isAutoMode() || can.isPlugType()) { can.page.styleHeight(can, can._output, can.ConfHeight()) + if (!can.isAutoMode() || can.isStoryType()) { can.page.styleHeight(can, can._output, can.ConfHeight()) var height = can._display_heights[can.sup.task? [can.sup.task.zone, can.sup.task.id].join(ice.FS): ""]||200 if (can.ui.display.innerHTML && can.ui.display.style.display != html.NONE) { can.page.style(can, can.ui.content, html.HEIGHT, can.ConfHeight()-height) diff --git a/plugin/table.js b/plugin/table.js index 7a6ae599..58b5f264 100644 --- a/plugin/table.js +++ b/plugin/table.js @@ -179,6 +179,8 @@ Volcanos(chat.ONIMPORT, {_init: function(can, msg, cb, target) { can.onmotion.cl }) Volcanos(chat.ONLAYOUT, { _init: function(can) { can.core.CallFunc([can.onimport, html.LAYOUT], {can: can}) }, + simple: function(can) { can.onlayout._init(can) }, + output: function(can) { can.onlayout._init(can) }, float: function(can) { can.onlayout._init(can) }, full: function(can) { can.onlayout._init(can) }, cmd: function(can) { can.onlayout._init(can) }, diff --git a/proto.js b/proto.js index f6bf1d3b..e6e3840a 100644 --- a/proto.js +++ b/proto.js @@ -1,8 +1,7 @@ -var kit = { +var kit = {proto: function(sub, sup) { return sub.__proto__ = sup, sub }, Dict: function() { var res = {}, args = arguments; for (var i = 0; i < args.length; i += 2) { - if (typeof args[i] == "object") { for (var k in args[i]) { res[k] = args[i][k] } i-- } else if (args[i] != undefined) { res[args[i]] = args[i+1] } + if (typeof args[i] == "object") { for (var k in args[i]) { res[k] = args[i][k] } i-- } else if (typeof args[i] == "string" && args[i]) { res[args[i]] = args[i+1] } } return res }, - proto: function(sub, sup) { return sub.__proto__ = sup, sub }, } var ice = { TB: "\t", SP: " ", DF: ":", EQ: "=", AT: "@", PS: "/", PT: ".", FS: ",", NL: "\n", LT: "<", GT: ">", @@ -130,13 +129,13 @@ var wiki = { STORY_ITEM: ".story", H2: "h2.story", H3: "h3.story", } var chat = { - LIB: "lib", PAGE: "page", PANEL: "panel", PLUGIN: "plugin", OUTPUT: "output", STORY: "story", + LIB: "lib", PAGE: "page", PANEL: "panel", PLUGIN: "plugin", STORY: "story", TOAST: "toast", CARTE: "carte", INPUT: "input", UPLOAD: "upload", CONTEXTS: "contexts", LAYOUT: "layout", PROJECT: "project", CONTENT: "content", DISPLAY: "display", PROFILE: "profile", TITLE: "title", TOPIC: "topic", BLACK: "black", WHITE: "white", PRINT: "print", SHARE: "share", RIVER: "river", STORM: "storm", FIELD: "field", TOOL: "tool", STATE: "state", MENUS: "menus", SSO: "sso", LOCATION: "location", - SIMPLE: "simple", FLOAT: "float", FULL: "full", CMD: "cmd", + SIMPLE: "simple", OUTPUT: "output", FLOAT: "float", FULL: "full", CMD: "cmd", libs: ["/lib/base.js", "/lib/core.js", "/lib/misc.js", "/lib/page.js", "/lib/user.js"], panel_list: [ @@ -207,7 +206,7 @@ var html = {PLUGIN_MARGIN: 10, ACTION_HEIGHT: 31, ACTION_MARGIN: 200, CLASS: "class", DISPLAY: "display", BLOCK: "block", NONE: "none", HIDDEN: "hidden", TOGGLE: "toggle", HEIGHT: "height", WIDTH: "width", PADDING: "padding", MARGIN: "margin", LEFT: "left", TOP: "top", RIGHT: "right", BOTTOM: "bottom", - MIN_HEIGHT: "min-height", MAX_HEIGHT: "max-height", MAX_WIDTH: "max-width", MIN_WIDTH: "min-width", MARGIN_TOP: "margin-top", MARGIN_X: "margin-x", MARGIN_Y: "margin-y", + MIN_HEIGHT: "min-height", MAX_HEIGHT: "max-height", MIN_WIDTH: "min-width", MAX_WIDTH: "max-width", MARGIN_TOP: "margin-top", MARGIN_X: "margin-x", MARGIN_Y: "margin-y", BACKGROUND: "background", OPACITY: "opacity", OVERFLOW: "overflow", SCROLL: "scroll", SPEED: "speed", FLOAT: "float", CLEAR: "clear", BOTH: "both", PAGE: "page", TABS: "tabs", MENU: "menu", NODE: "node", @@ -230,7 +229,7 @@ function shy(help, meta, list, cb) { var args = arguments, i = 0 function next(type) { if (i < args.length && (!type || type == typeof args[i])) { return args[i++] } } return cb = typeof args[args.length-1] == lang.FUNCTION? args[args.length-1]: function() {}, cb.help = next(lang.STRING)||"", cb.meta = next(lang.OBJECT)||{}, cb.list = next(lang.OBJECT)||[], cb }; var _can_name = "", _can_path = "" -var Volcanos = shy("火山架", {iceberg: "/chat/", volcano: "/frame.js", cache: {}, pack: {}}, function(name, can, libs, cb) { +var Volcanos = shy({iceberg: "/chat/", volcano: "/frame.js", cache: {}, pack: {}}, function(name, can, libs, cb) { var meta = arguments.callee.meta, list = arguments.callee.list; if (typeof name == lang.OBJECT) { if (name.length > 0) { return Volcanos({panels: [{name: "Header", pos: html.HIDE, state: [aaa.USERNICK]}, {name: "Action", pos: html.MAIN, tool: name}]}) } var Config = name; name = Config.name||ice.CAN, kit.proto(meta, Config), _can_name = "", _can_path = "" @@ -246,7 +245,7 @@ var Volcanos = shy("火山架", {iceberg: "/chat/", volcano: "/frame.js", cache: }) }, requireModules: function(libs, cb, cbs) { - for (var i = 0; i < libs.length; i++) { if (libs[i].indexOf(ice.HTTP) == 0 || libs[i].indexOf(ice.PS) == 0) { continue } + for (var i = 0; i < libs.length; i++) { if (libs[i].indexOf(ice.PS) == 0 || libs[i].indexOf(ice.HTTP) == 0) { continue } if (libs[i].indexOf(nfs._CSS) == -1 && libs[i].indexOf(nfs._JS) == -1) { libs[i] = libs[i]+"/lib/"+libs[i]+nfs._JS } libs[i] = "/require/node_modules/"+libs[i] } can.require(libs, cb, cbs) @@ -292,8 +291,341 @@ var Volcanos = shy("火山架", {iceberg: "/chat/", volcano: "/frame.js", cache: getAction: function(key, cb) { return can.get("Action", key, cb) }, getActionSize: function(cb) { return can.get("Action", "size", cb) }, - isPlugType: function(value) { return can.page.ClassList.has(can, can._fields, "plug") }, + isStoryType: function(value) { return can.page.ClassList.has(can, can._fields, "story") }, isSimpleMode: function(value) { return can.Mode() == chat.SIMPLE }, + isOutputMode: function(value) { return can.Mode() == chat.OUTPUT }, + isFloatMode: function(value) { return can.Mode() == chat.FLOAT }, + isFullMode: function(value) { return can.Mode() == chat.FULL }, + isCmdMode: function(value) { return can.Mode() == chat.CMD }, + isAutoMode: function(value) { return can.Mode() == "" }, + Mode: function(value) { return can.Conf(ice.MODE, value) }, + ConfDefault: function(value) { can.core.Item(value, function(k, v) { can.Conf(k) || can.Conf(k, v) }) }, + ConfHeight: function(value) { return can.Conf(html.HEIGHT, value) }, + ConfWidth: function(value) { return can.Conf(html.WIDTH, value) }, + Conf: function(key, value) { var res = can._conf + for (var i = 0; i < arguments.length; i += 2) { + if (typeof key == lang.OBJECT) { res = can.core.Value(can._conf, arguments[i]), i--; continue } + res = can.core.Value(can._conf, arguments[i], arguments[i+1]) + } return can.base.isUndefined(res) && key.indexOf(ctx.FEATURE+ice.PT) == -1? can.Conf(can.core.Keys(ctx.FEATURE, key)): res + }, _conf: {}, + }; can = kit.proto(can||{}, kit.proto(proto, meta)), _can_path = _can_name||_can_path + + if (_can_name) { meta.cache[_can_name] = meta.cache[_can_name]||[], meta.cache[_can_name].push(can) } else { list.push(can) } + if (libs && libs.length > 0) { for (var i = 0; i < libs.length; i++) { if (libs[i] == undefined) { continue } + if (libs[i] == "") { libs[i] = _can_path.replace(nfs._JS, nfs._CSS) } + if (libs[i][0] != ice.PS && libs[i].indexOf(ice.HTTP) != 0) { libs[i] = _can_path.slice(0, _can_path.lastIndexOf(ice.PS)+1)+libs[i] } + } } if (can._follow) { libs = libs.concat(meta.libs, meta.volcano) } + return can.require(libs, cb), can +}) +try { if (typeof(window) == lang.OBJECT) { // chrome + Volcanos.meta.target = document.body, Volcanos.meta._height = window.innerHeight, Volcanos.meta._width = window.innerWidth + Volcanos.meta._load = function(url, cb) { switch (url.split("?")[0].split(ice.PT).pop().toLowerCase()) { + case nfs.CSS: var item = document.createElement(mdb.LINK); item.rel = "stylesheet", item.href = url, item.onload = cb, document.head.appendChild(item); break + default: var item = document.createElement(nfs.SCRIPT); item.src = url, item.onerror = cb, item.onload = cb, document.body.appendChild(item) + } } +} else { // nodejs + global.kit = kit, global.ice = ice + global.ctx = ctx, global.cli = cli, global.aaa = aaa, global.web = web + global.mdb = mdb, global.ssh = ssh, global.nfs = nfs, global.tcp = tcp + global.code = code, global.wiki = wiki, global.chat = chat, global.team = team, global.mall = mall + global.svg = svg, global.html = html, global.lang = lang + global.shy = shy, global.Volcanos = Volcanos +} } catch (e) { console.log(e) } + +var kit = {proto: function(sub, sup) { return sub.__proto__ = sup, sub }, + Dict: function() { var res = {}, args = arguments; for (var i = 0; i < args.length; i += 2) { + if (typeof args[i] == "object") { for (var k in args[i]) { res[k] = args[i][k] } i-- } else if (typeof args[i] == "string" && args[i]) { res[args[i]] = args[i+1] } + } return res }, +} +var ice = { + TB: "\t", SP: " ", DF: ":", EQ: "=", AT: "@", PS: "/", PT: ".", FS: ",", NL: "\n", LT: "<", GT: ">", + OK: "ok", TRUE: "true", FALSE: "false", SUCCESS: "success", FAILURE: "failure", PROCESS: "process", + + AUTO: "auto", HTTP: "http", HELP: "help", COPY: "copy", + LIST: "list", BACK: "back", SHOW: "show", HIDE: "hide", + VIEW: "view", MODE: "mode", SHIP: "ship", EXEC: "exec", + + POD: "pod", CTX: "ctx", CMD: "cmd", ARG: "arg", OPT: "opt", + CAN: "can", RUN: "run", RES: "res", ERR: "err", + + MSG_DETAIL: "detail", + MSG_OPTION: "option", + MSG_APPEND: "append", + MSG_RESULT: "result", + MSG_FIELDS: "fields", + MSG_SESSID: "sessid", + + MSG_SOURCE: "_source", + MSG_TARGET: "_target", + MSG_HANDLE: "_handle", + MSG_DAEMON: "_daemon", + MSG_UPLOAD: "_upload", + MSG_ACTION: "_action", + MSG_STATUS: "_status", + MSG_PREFIX: "_prefix", + + MSG_PROCESS: "_process", + MSG_DISPLAY: "_display", + MSG_TOOLKIT: "_toolkit", + PROCESS_AGAIN: "_again", + + MSG_TITLE: "sess.title", + MSG_TOPIC: "sess.topic", + MSG_RIVER: "sess.river", + MSG_STORM: "sess.storm", + MSG_TOAST: "sess.toast", + + MSG_USERNAME: "user.name", + MSG_USERNICK: "user.nick", + + LOG_DISABLE: "log.disable", + + ErrWarn: "warn: ", + ErrNotLogin: "not login: ", + ErrNotRight: "not right: ", + ErrNotFound: "not found: ", + ErrNotValid: "not valid: ", +} + +var ctx = { + CONTEXT: "context", COMMAND: "command", CONFIG: "config", INPUTS: "inputs", FEATURE: "feature", + INDEX: "index", ARGS: "args", STYLE: "style", DISPLAY: "display", ACTION: "action", +} +var cli = { + DAEMON: "daemon", START: "start", STOP: "stop", OPEN: "open", CLOSE: "close", BEGIN: "begin", END: "end", + COLOR: "color", WHITE: "white", BLACK: "black", RED: "red", GREEN: "green", BLUE: "blue", + YELLOW: "yellow", CYAN: "cyan", PURPLE: "purple", MAGENTA: "magenta", + MAKE: "make", MAIN: "main", DONE: "done", COST: "cost", FROM: "from", CLEAR: "clear", +} +var aaa = { + LOGIN: "login", LOGOUT: "logout", INVITE: "invite", TOKEN: "token", + PASSWORD: "password", USERNAME: "username", USERNICK: "usernick", BACKGROUND: "background", AVATAR: "avatar", + LANGUAGE: "language", ENGLISH: "english", CHINESE: "chinese", + VOID: "void", TECH: "tech", +} +var web = { + SPACE: "space", DREAM: "dream", SHARE: "share", + WEBSITE: "website", REFRESH: "refresh", CLEAR: "clear", UPLOAD: "upload", DOWNLOAD: "download", + SHARE_CACHE: "/share/cache/", + + GET: "GET", PUT: "PUT", POST: "POST", DELETE: "DELETE", + Accept: "Accept", ContentType: "Content-Type", + ContentJSON: "application/json", ContentFORM: "application/x-www-form-urlencoded", +} +var mdb = { + DICT: "dict", META: "meta", HASH: "hash", LIST: "list", + + ID: "id", KEY: "key", TIME: "time", ZONE: "zone", TYPE: "type", NAME: "name", TEXT: "text", LINK: "link", SCAN: "scan", HELP: "help", + SHORT: "short", FIELD: "field", TOTAL: "total", COUNT: "count", LIMIT: "limit", + INDEX: "index", VALUE: "value", EXTRA: "extra", ALIAS: "alias", EXPIRE: "expire", + + CREATE: "create", REMOVE: "remove", INSERT: "insert", DELETE: "delete", MODIFY: "modify", SELECT: "select", + INPUTS: "inputs", PRUNES: "prunes", EXPORT: "export", IMPORT: "import", + SEARCH: "search", ENGINE: "engine", RENDER: "render", PLUGIN: "plugin", + + MAIN: "main", PAGE: "page", NEXT: "next", PREV: "prev", LIMIT: "limit", OFFEND: "offend", + FOREACH: "*", RANDOMS: "%", +} +var ssh = { +} +var nfs = { + PATH: "path", FILE: "file", LINE: "line", SIZE: "size", + SAVE: "save", LOAD: "load", FIND: "find", GREP: "grep", TAGS: "tags", + DIR: "dir", CAT: "cat", DEFS: "defs", TRASH: "trash", SCRIPT: "script", CONTENT: "content", DIR_ROOT: "dir_root", PWD: "./", + HTML: "html", CSS: "css", JS: "js", GO: "go", SH: "sh", CSV: "csv", JSON: "json", + ZML: "zml", IML: "iml", TXT: "txt", PNG: "png", + _CSS: ".css", _JS: ".js", +} +var tcp = { + HOST: "host", PORT: "port", +} +var lex = { + SPLIT: "split", PREFIX: "prefix", SUFFIX: "suffix", +} +var gdb = { + SIGNAL: "signal", +} +var log = { + INFO: "info", WARN: "warn", ERROR: "error", DEBUG: "debug", TRACE: "trace", +} + +var code = { + FAVOR: "favor", XTERM: "xterm", INNER: "inner", VIMER: "vimer", + WEBPACK: "webpack", BINPACK: "binpack", AUTOGEN: "autogen", COMPILE: "compile", PUBLISH: "publish", + COMMENT: "comment", KEYWORD: "keyword", CONSTANT: "constant", DATATYPE: "datatype", FUNCTION: "function", + TEMPLATE: "template", COMPLETE: "complete", NAVIGATE: "navigate", +} +var wiki = { + TITLE: "title", BRIEF: "brief", REFER: "refer", SPARK: "spark", + ORDER: "order", TABLE: "table", CHART: "chart", IMAGE: "image", VIDEO: "video", + FIELD: "field", SHELL: "shell", LOCAL: "local", PARSE: "parse", + NAVMENU: "navmenu", PREMENU: "premenu", CONTENT: "content", + STORY_ITEM: ".story", H2: "h2.story", H3: "h3.story", +} +var chat = { + LIB: "lib", PAGE: "page", PANEL: "panel", PLUGIN: "plugin", STORY: "story", + TOAST: "toast", CARTE: "carte", INPUT: "input", UPLOAD: "upload", CONTEXTS: "contexts", + LAYOUT: "layout", PROJECT: "project", CONTENT: "content", DISPLAY: "display", PROFILE: "profile", + TITLE: "title", TOPIC: "topic", BLACK: "black", WHITE: "white", PRINT: "print", + SHARE: "share", RIVER: "river", STORM: "storm", FIELD: "field", TOOL: "tool", + STATE: "state", MENUS: "menus", SSO: "sso", LOCATION: "location", + SIMPLE: "simple", OUTPUT: "output", FLOAT: "float", FULL: "full", CMD: "cmd", + + libs: ["/lib/base.js", "/lib/core.js", "/lib/misc.js", "/lib/page.js", "/lib/user.js"], + panel_list: [ + {name: "Header", pos: "head", state: ["time", "usernick", "avatar"]}, + {name: "River", pos: "left"}, {name: "Action", pos: "main"}, {name: "Search", pos: "auto"}, + {name: "Footer", pos: "foot", state: ["ncmd", "ntip"]}, + ], + plugin_list: [ + "/plugin/state.js", + "/plugin/input.js", + "/plugin/table.js", + "/plugin/input/key.js", + "/plugin/input/date.js", + "/plugin/story/spide.js", + "/plugin/story/trend.js", + "/plugin/local/code/xterm.js", + "/plugin/local/code/vimer.js", + "/plugin/local/code/inner.js", + "/plugin/local/code/inner/syntax.js", + "/plugin/local/wiki/draw/path.js", + "/plugin/local/wiki/draw.js", + "/plugin/local/wiki/word.js", + "/plugin/local/team/plan.js", + "/plugin/local/mall/goods.js", + ], PLUGIN_INPUT: "/plugin/input/", PLUGIN_STORY: "/plugin/story/", PLUGIN_LOCAL: "/plugin/local/", + PLUGIN_STATE_JS: "/plugin/state.js", PLUGIN_INPUT_JS: "/plugin/input.js", PLUGIN_TABLE_JS: "/plugin/table.js", + ONENGINE: "onengine", ONDAEMON: "ondaemon", ONAPPEND: "onappend", ONLAYOUT: "onlayout", ONMOTION: "onmotion", ONKEYMAP: "onkeymap", + ONIMPORT: "onimport", ONSYNTAX: "onsyntax", ONFIGURE: "onfigure", ONACTION: "onaction", ONDETAIL: "ondetail", ONEXPORT: "onexport", ONPLUGIN: "onplugin", + + ONMAIN: "onmain", ONLOGIN: "onlogin", ONREMOTE: "onremote", ONSEARCH: "onsearch", + ONSIZE: "onsize", ONTOAST: "ontoast", ONSHARE: "onshare", ONPRINT: "onprint", + ONRESIZE: "onresize", ONKEYUP: "onkeyup", ONKEYDOWN: "onkeydown", ONMOUSEENTER: "onmouseenter", ORIENTATIONCHANGE: "orientationchange", + ONSTORM_SELECT: "onstorm_select", ONACTION_NOTOOL: "onaction_notool", ONACTION_TOUCH: "onaction_touch", ONACTION_CMD: "onaction_cmd", + ONOPENSEARCH: "onopensearch", ONSEARCH_FOCUS: "onsearch_focus", ONCOMMAND_FOCUS: "oncommand_focus", + + _INIT: "_init", _TRANS: "_trans", _ENGINE: "_engine", _SEARCH: "_search", _OUTPUTS_CURRENT: "_outputs.-1", + _NAMES: "_names", _TOAST: "_toast", +} +var team = { + TASK: "task", PLAN: "plan", +} +var mall = { + COUNT: "count", PRICE: "price", + ASSET: "asset", SALARY: "salary", +} + +var svg = { + GROUP: "group", PID: "pid", GRID: "grid", + SHAPE: "shape", TEXT: "text", RECT: "rect", LINE: "line", CIRCLE: "circle", ELLIPSE: "ellipse", + STROKE_WIDTH: "stroke-width", STROKE: "stroke", FILL: "fill", FONT_SIZE: "font-size", FONT_FAMILY: "font-family", MONOSPACE: "monospace", TEXT_ANCHOR: "text-anchor", + G: "g", X: "x", Y: "y", R: "r", RX: "rx", RY: "ry", CX: "cx", CY: "cy", X1: "x1", Y1: "y1", X2: "x2", Y2: "y2", + PATH: "path", PATH2V: "path2v", PATH2H: "path2h", + M: "M", Q: "Q", T: "T", +} +var html = {PLUGIN_MARGIN: 10, ACTION_HEIGHT: 31, ACTION_MARGIN: 200, + FIELDSET: "fieldset", LEGEND: "legend", OPTION: "option", ACTION: "action", OUTPUT: "output", STATUS: "status", + FORM_OPTION: "form.option", DIV_ACTION: "div.action", DIV_OUTPUT: "div.output", DIV_STATUS: "div.status", + FIELDSET_PANEL: "fieldset.panel", FIELDSET_PLUGIN: "fieldset.plugin", FIELDSET_STORY: "fieldset.story", FIELDSET_FLOAT: "fieldset.float", + FIELDSET_HEAD: "fieldset.head", FIELDSET_FOOT: "fieldset.foot", FIELDSET_LEFT: "fieldset.left", FIELDSET_MAIN: "fieldset.main", + OPTION_ARGS: "select.args,input.args,textarea.args", INPUT_ARGS: "input.args,textarea.args", INPUT_BUTTON: "input[type=button]", INPUT_FILE: "input[type=file]", + + INPUT: "input", TEXT: "text", TEXTAREA: "textarea", SELECT: "select", BUTTON: "button", + FORM: "form", FILE: "file", CLICK: "click", SUBMIT: "submit", CANCEL: "cancel", UPLOAD: "upload", USERNAME: "username", PASSWORD: "password", + TABLE: "table", THEAD: "thead", TBODY: "tbody", TR: "tr", TH: "th", TD: "td", BR: "br", UL: "ul", LI: "li", + H1: "h1", H2: "h2", H3: "h3", A: "a", LABEL: "label", INNER: "inner", TITLE: "title", + SPAN: "span", CODE: "code", DIV: "div", IMG: "img", VIDEO: "video", SPACE: "space", + WSS: "wss", SVG: "svg", CANVAS: "canvas", IFRAME: "iframe", CHROME: "chrome", + + CLASS: "class", DISPLAY: "display", BLOCK: "block", NONE: "none", HIDDEN: "hidden", TOGGLE: "toggle", + HEIGHT: "height", WIDTH: "width", PADDING: "padding", MARGIN: "margin", LEFT: "left", TOP: "top", RIGHT: "right", BOTTOM: "bottom", + MIN_HEIGHT: "min-height", MAX_HEIGHT: "max-height", MIN_WIDTH: "min-width", MAX_WIDTH: "max-width", MARGIN_TOP: "margin-top", MARGIN_X: "margin-x", MARGIN_Y: "margin-y", + BACKGROUND: "background", OPACITY: "opacity", OVERFLOW: "overflow", SCROLL: "scroll", SPEED: "speed", FLOAT: "float", CLEAR: "clear", BOTH: "both", + + PAGE: "page", TABS: "tabs", MENU: "menu", NODE: "node", + ZONE: "zone", LIST: "list", ITEM: "item", NAME: "name", ICON: "icon", + HEAD: "head", LEFT: "left", MAIN: "main", FOOT: "foot", AUTO: "auto", SHOW: "show", HIDE: "hide", + PLUGIN: "plugin", LAYOUT: "layout", CONTENT: "content", + + DIV_PAGE: "div.page", DIV_TABS: "div.tabs", + DIV_ZONE: "div.zone", DIV_LIST: "div.list", DIV_ITEM: "div.item", DIV_NAME: "div.name", + DIV_LAYOUT_HEAD: "div.layout.head", DIV_LAYOUT_FOOT: "div.layout.foot", DIV_LAYOUT_LEFT: "div.layout.left", + DIV_CODE: "div.code", DIV_FLOAT: "div.float", DIV_CONTENT: "div.content", TABLE_CONTENT: "table.content", +} +var lang = { + UNDEFINED: "undefined", STRING: "string", NUMBER: "number", BOOLEAN: "boolean", FUNCTION: "function", OBJECT: "object", + META: "Meta", ALT: "Alt", CONTROL: "Control", SHIFT: "Shift", TAB: "Tab", ENTER: "Enter", ESCAPE: "Escape", + CMD: "Cmd", CTRL: "Ctrl", SPACE: "Space", BACKSPACE: "Backspace", ESC: "Esc", PS: "/", +} + +function shy(help, meta, list, cb) { var args = arguments, i = 0 + function next(type) { if (i < args.length && (!type || type == typeof args[i])) { return args[i++] } } + return cb = typeof args[args.length-1] == lang.FUNCTION? args[args.length-1]: function() {}, cb.help = next(lang.STRING)||"", cb.meta = next(lang.OBJECT)||{}, cb.list = next(lang.OBJECT)||[], cb +}; var _can_name = "", _can_path = "" +var Volcanos = shy({iceberg: "/chat/", volcano: "/frame.js", cache: {}, pack: {}}, function(name, can, libs, cb) { + var meta = arguments.callee.meta, list = arguments.callee.list; if (typeof name == lang.OBJECT) { + if (name.length > 0) { return Volcanos({panels: [{name: "Header", pos: html.HIDE, state: [aaa.USERNICK]}, {name: "Action", pos: html.MAIN, tool: name}]}) } + var Config = name; name = Config.name||ice.CAN, kit.proto(meta, Config), _can_name = "", _can_path = "" + meta.iceberg = Config.iceberg||meta.iceberg, meta.libs = Config.libs||chat.libs, panels = Config.panels||chat.panel_list + libs = [], panels.forEach(function(p) { p && (libs = libs.concat(p.list = p.list||["/panel/"+p.name+nfs._CSS, "/panel/"+p.name+nfs._JS])) }), libs = libs.concat(Config.plugin||chat.plugin_list) + cb = can||function(can) { can.onengine._init(can, can.Conf(Config), panels, Config._init||meta._init, can._target) } + can = {_follow: name, _target: Config.target||meta.target, _height: Config.height||meta._height, _width: Config.width||meta._width} + } + var proto = {_path: _can_path, _name: name, _load: function(name, cbs) { var cache = meta.cache[name]||[] + for (list.reverse(); list.length > 0; list) { var sub = list.pop(); sub != can && cache.push(sub) } meta.cache[name] = cache + cache.forEach(function(sub) { var name = sub._name; if (typeof cbs == lang.FUNCTION && cbs(can, name, sub)) { return } + can[name] = can[name]||{}; for (var k in sub) { can[name].hasOwnProperty(k) || sub.hasOwnProperty(k) && (can[name][k] = sub[k]) } + }) + }, + requireModules: function(libs, cb, cbs) { + for (var i = 0; i < libs.length; i++) { if (libs[i].indexOf(ice.PS) == 0 || libs[i].indexOf(ice.HTTP) == 0) { continue } + if (libs[i].indexOf(nfs._CSS) == -1 && libs[i].indexOf(nfs._JS) == -1) { libs[i] = libs[i]+"/lib/"+libs[i]+nfs._JS } + libs[i] = "/require/node_modules/"+libs[i] + } can.require(libs, cb, cbs) + }, + require: function(libs, cb, cbs) { + if (!libs || libs.length == 0) { return typeof cb == lang.FUNCTION && setTimeout(function() { cb(can) }, 10) } + if (libs[0] == undefined) { return can.require(libs.slice(1), cb, cbs) } + if (libs[0] == "") { libs[0] = can._name.replace(nfs._JS, nfs._CSS) } + if (libs[0][0] != ice.PS && libs[0].indexOf(ice.HTTP) != 0) { libs[0] = can._name.slice(0, can._name.lastIndexOf(ice.PS)+1)+libs[0] } + var name = (libs[0].indexOf(ice.HTTP) == 0? libs[0]: libs[0].split("?")[0]).toLowerCase() + function next() { can._load(name, cbs), can.require(libs.slice(1), cb, cbs) } + meta.cache[name]? next(): (_can_path = libs[0], meta._load(name, next)) + }, + request: function(event) { event = event||{}, event = event._event||event + var msg = event._msg||can.misc.Message(event, can); event._msg = msg + function set(key, value) { value == "" || msg.Option(key) || msg.Option(key, value) } + can.core.List(arguments, function(item, index) { if (!item || index == 0) { return } + can.base.isFunc(item.Option)? can.core.List(item.Option(), function(key) { + key.indexOf("_") == 0 || key.indexOf("user.") == 0 || set(key, item.Option(key)) + }): can.core.Item(can.base.isFunc(item)? item(): item, set) + }); return msg + }, + + runActionCommand: function(event, index, args, cb) { can.runAction(event, ice.RUN, can.misc.concat(can, [index], args), cb, true) }, + runAction: function(event, action, args, cb, silent) { + can.run(can.request(event, {_handle: ice.TRUE}, can.Option()), can.misc.concat(can, [ctx.ACTION].concat(action), args), cb, silent) + }, + + search: function(event, cmds, cb) { + if (cmds && typeof cmds == lang.OBJECT && cmds.length > 0 && typeof cmds[0] == lang.OBJECT && cmds[0].length > 0 ) { cmds[0] = cmds[0].join(ice.PT) } + return can.run && can.run(event, [chat._SEARCH].concat(cmds), cb, true) + }, + get: function(name, key, cb) { var value; can.search({}, [can.core.Keys(name, chat.ONEXPORT, key)], cb||function(msg) { value = msg.Result() }); return value }, + set: function(name, key, value) { var msg = can.request(); msg.Option(key, value); return can.search(msg, [[name, chat.ONIMPORT, key]]) }, + setHeaderMenu: function(list, cb) { can._menu && can.page.Remove(can, can._menu) + return can._menu = can.search(can.request({}, {trans: can.onaction._trans}), [["Header", chat.ONIMPORT, html .MENU], can._name].concat(list), cb) + }, + setHeader: function(key, value) { return can.set("Header", key, value) }, + getHeader: function(key, cb) { return can.get("Header", key, cb) }, + setAction: function(key, value) { return can.set("Action", key, value) }, + getAction: function(key, cb) { return can.get("Action", key, cb) }, + getActionSize: function(cb) { return can.get("Action", "size", cb) }, + + isStoryType: function(value) { return can.page.ClassList.has(can, can._fields, "story") }, + isSimpleMode: function(value) { return can.Mode() == chat.SIMPLE }, + isOutputMode: function(value) { return can.Mode() == chat.OUTPUT }, isFloatMode: function(value) { return can.Mode() == chat.FLOAT }, isFullMode: function(value) { return can.Mode() == chat.FULL }, isCmdMode: function(value) { return can.Mode() == chat.CMD }, @@ -323,6 +655,12 @@ try { if (typeof(window) == lang.OBJECT) { // chrome case nfs.CSS: var item = document.createElement(mdb.LINK); item.rel = "stylesheet", item.href = url, item.onload = cb, document.head.appendChild(item); break default: var item = document.createElement(nfs.SCRIPT); item.src = url, item.onerror = cb, item.onload = cb, document.body.appendChild(item) } } + Volcanos.meta._init = function(can) { + var last = can.page.width() < can.page.height(); window.onresize = function(event) { + if (can.user.isMobile && last === can.page.width() < can.page.height()) { return } last = can.page.width() < can.page.height() + can.onengine.signal(can, chat.ONRESIZE, can.request(event, kit.Dict(html.HEIGHT, window.innerHeight, html.WIDTH, window.innerWidth))) + } + } } else { // nodejs global.kit = kit, global.ice = ice global.ctx = ctx, global.cli = cli, global.aaa = aaa, global.web = web