![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
框架分为两部分
mcore
模板引擎(Core), 无依赖,支持(IE6+)mcoreApp
SPA(单页应用)框架,依赖 jQuery
, mcore
支持(IE6+)注:开发时,依赖 webpack 及 h2svd-loader
webpack 配置
//webpack.config.js
var webpack = require('webpack');
// h2svd-loader
require('h2svd-loader');
module.exports = {
...
module: {
loaders: [
{// 引入 html 转 mcore virtual-dom 的 loader
test: /\/tpl\/.*(\.html)$/,
loader: 'h2svd-loader'
}
]
}
};
template=>start: Template: 模板引擎
render=>operation: @render Html, scope
virtualDomDefine=>operation: Html -> Virtual Dom define 依赖:h2svd-loader(开发时,通过 webpack 实现)
newVirtualDomDefine=>operation: new virtual dom = (Virtual Dom define)(scope)
checkOldVirtualDom=>condition: 是否存在 old virtual dom
diffVirtualDom=>operation: diff VirtualDom
changeNode=>end: 应用变更到 dom
buildNode=>end: 生成 dom
template->render->virtualDomDefine->newVirtualDomDefine->checkOldVirtualDom
checkOldVirtualDom(no)->buildNode
checkOldVirtualDom(yes)->diffVirtualDom->changeNode
virtualDomDefine=>start: Virtual Dom define
build=>operation: build Virtual Dom
findNodeTagName=>condition: find Template.components[Node.tagName]
buildNode=>end: 生成 dom
buildComponent=>end: new Template.components[Node.tagName]
virtualDomDefine->build->findNodeTagName
findNodeTagName(yes)->buildComponent
findNodeTagName(no)->buildNode
diff VirtualDom 时,component 当成没有子树的 Node (只 diff 属性), component 的 dom 变更,由 component 自身维护
模板中,变量都在
scope
名字空间下 (事件除外)
<!-- ./tpl/test.html -->
<ul>
<li mc-for="v , k in scope.list" mc-on-click="showIx(v)">
<span mc-data-ix="k + 1">{v.name}</span>
</li>
</ul>
# demo.coffee
{Template} = require 'mcore'
# init tpl
tpl = new Template()
# bind click event
tpl.showIx = (v, el, event)->
console.log v, el, event
# render
tpl.render require('./tpl/test.html'),
list: [
{name : 'ok1'}
{name : 'ok2'}
]
, -> # rendered
document.body.appendChild tpl.refs
{Template} = require 'mcore'
Template.binders.color = (el, value)->
el.style.color = value
<button mc-color="scope.color">Apply</button>
{Template, Component} = require 'mcore'
class Time extends Component
init: ->
@on 'rendered', =>
setTimeout =>
@set 'time', new Date()
, 1000
@render require('./tpl/tagTime.html'),
time: new Date()
Template.components.time = Time
<!-- ./tpl/tagTime.html -->
{scope.time}
<time></time>
{Template} = require 'mcore'
Temaplat.formatters.formNow = (value)->
moment(value).formNow()
Template.formatters.toString = (value)->
String value or ''
<span>{scope.date | formNow | toString }</span>
FAQs
simple MVVM
The npm package mcoreapp receives a total of 6 weekly downloads. As such, mcoreapp popularity was classified as not popular.
We found that mcoreapp demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.