-
-
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.
add o-model, o-if and other cool stuff
- Loading branch information
Showing
5 changed files
with
293 additions
and
101 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 |
---|---|---|
@@ -1,32 +1,47 @@ | ||
import { O } from '../dist/one' | ||
import { One } from '../dist/one' | ||
import { getItems } from './services/get-items' | ||
|
||
const Component = new O('[hello-world]', function () { | ||
this.setState({ | ||
const Component = new One('[hello-world]', async function () { | ||
this.state = { | ||
name: 'John Doe', | ||
count: 0, | ||
text: 'Click me', | ||
items: [ | ||
{ title: 'Item 1' }, | ||
{ title: 'Item 2' }, | ||
{ title: 'Item 3' } | ||
] | ||
}) | ||
}) | ||
bool: false, | ||
selected: 'two', | ||
buttonText: 'Click me', | ||
items: [], | ||
checked: false | ||
} | ||
|
||
const Button = new O('button', function () { | ||
this.setScope(Component) | ||
const items = await getItems() | ||
|
||
this.on('click', function (data) { | ||
const count = data.count + 1 | ||
this.state = { | ||
items, | ||
subtitle: getSubtitle(items.length) | ||
} | ||
|
||
this.register([Button]) | ||
}) | ||
|
||
this.setState({ | ||
const Button = new One('button', function () { | ||
this.on('click', function ({ state }) { | ||
const count = state.count + 1 | ||
const items = state.items.filter(i => i.id === 1) | ||
|
||
this.state = { | ||
buttonText: `Clicked ${count} times`, | ||
count, | ||
text: `Clicked ${count}`, | ||
items: [ | ||
{ title: 'Item 1' } | ||
] | ||
}) | ||
bool: !state.bool, | ||
items, | ||
subtitle: getSubtitle(items.length) | ||
} | ||
}) | ||
}) | ||
|
||
console.log('Component', Component, 'Button', Button) | ||
Component.mount() | ||
|
||
function getSubtitle (count) { | ||
const start = count < 2 ? 'is' : 'are' | ||
const end = count > 1 ? 'items' : 'item' | ||
|
||
return `There ${start} ${count} ${end}` | ||
} |
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
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
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 |
---|---|---|
@@ -1,115 +1,131 @@ | ||
const TEXT = 'o-text' | ||
const FOR = 'o-for' | ||
const KEY = 'key' | ||
import { Render } from './render' | ||
|
||
class O { | ||
class One { | ||
#el = null | ||
#scope = null | ||
#state = {} | ||
|
||
#setup = null | ||
|
||
constructor (el, setup) { | ||
this.#el = typeof el === 'string' ? document.querySelectorAll(el) : el | ||
|
||
setup.bind(this)() | ||
|
||
if (!this.#el) { | ||
throw new Error('Element not found') | ||
} | ||
|
||
if (this.#scope) { | ||
this.#state = this.#scope.getState() | ||
} | ||
this.#setup = setup | ||
|
||
this.models() | ||
} | ||
|
||
get el () { | ||
return this.#el | ||
} | ||
|
||
setup (fn) { | ||
fn.bind(this)() | ||
set el (el) { | ||
this.#el = el | ||
|
||
return this | ||
} | ||
|
||
setScope (scope) { | ||
this.#scope = scope | ||
get scope () { | ||
return this.#scope | ||
} | ||
|
||
on (event, fn) { | ||
const iterator = this.#el.length ? this.#el : [this.#el] | ||
for (const el of iterator) { | ||
el[`on${event}`] = () => { | ||
fn.bind(this)(this.#state) | ||
} | ||
} | ||
set scope (scope) { | ||
this.#scope = scope | ||
|
||
return this | ||
} | ||
|
||
setState (state, override = false) { | ||
this.#state = override ? state : { ...this.#state, ...state } | ||
this.render(this.#scope?.el ?? this.#el) | ||
get state () { | ||
return this.#state | ||
} | ||
|
||
getState (key) { | ||
if (key) { | ||
return this.#state[key] | ||
set state (state) { | ||
this.#state = this.#scope?.state | ||
? { ...this.#scope.state, ...state } | ||
: { ...this.state, ...state } | ||
|
||
if (this.#scope) { | ||
this.#scope.state = this.state | ||
|
||
return this | ||
} | ||
|
||
return this.#state | ||
new Render().render( | ||
this.el, | ||
this.state | ||
) | ||
|
||
return this | ||
} | ||
|
||
render (target, state = this.#state) { | ||
const iterator = target.length ? target : [target] | ||
models () { | ||
this.#el.forEach(el => { | ||
const models = el.querySelectorAll('[o-model]') | ||
|
||
for (const el of iterator) { | ||
if (el.getAttribute(TEXT)) { | ||
const text = el.getAttribute(TEXT) | ||
const key = el.getAttribute(KEY) | ||
const s = key ? state?.[key]?.[text] : state[text] | ||
|
||
if (s != null && s !== el.textContent) { | ||
el.textContent = s | ||
} | ||
} | ||
|
||
if (el.getAttribute(FOR)) { | ||
const template = el.children[0].cloneNode(true) | ||
const rendered = template.getAttribute(KEY) | ||
const array = state[el.getAttribute(FOR)] | ||
if (models.length) { | ||
models.forEach(model => { | ||
const key = model.getAttribute('o-model') | ||
|
||
// Remove all children that are not in the array | ||
if (rendered) { | ||
const children = Array.from(el.children) | ||
model[this.getModelEvent(el)] = (e) => { | ||
const value = e.target.type === 'checkbox' | ||
? e.target.checked | ||
: e.target.value | ||
|
||
let i = 0 | ||
for (const c of children) { | ||
if (!array[i]) { | ||
el.removeChild(c) | ||
this.state = { | ||
[key]: value | ||
} | ||
i++ | ||
} | ||
} | ||
|
||
// Only remove first child if it is the template | ||
if (!rendered) { | ||
el.children[0].remove() | ||
} | ||
|
||
array.forEach((item, i) => { | ||
// Don't append already existing children | ||
if (!el.children[i]) { | ||
template.setAttribute(KEY, i) | ||
el.append(template.cloneNode(true)) | ||
} | ||
}) | ||
} | ||
}) | ||
} | ||
|
||
this.render(el.children, array) | ||
getModelEvent (el) { | ||
if (el.tagName === 'INPUT') { | ||
if (el.type === 'checkbox') { | ||
return 'onchange' | ||
} | ||
return 'oninput' | ||
} | ||
|
||
if (el.children.length) { | ||
for (const c of el.children) { | ||
this.render(c) | ||
} | ||
if (el.tagName === 'SELECT') { | ||
return 'onchange' | ||
} | ||
|
||
return 'oninput' | ||
} | ||
|
||
register (components) { | ||
components.forEach(component => { | ||
component.scope = this | ||
component.state = this.state | ||
component.mount() | ||
}) | ||
} | ||
|
||
on (event, fn) { | ||
const iterator = this.#el.length ? this.#el : [this.#el] | ||
for (const el of iterator) { | ||
el[`on${event}`] = () => { | ||
fn.bind(this)({ | ||
state: this.#scope?.state ?? this.#state | ||
}) | ||
} | ||
} | ||
} | ||
|
||
mount (state) { | ||
if (state) { | ||
this.#state = state | ||
} | ||
this.#setup.bind(this)() | ||
|
||
return this | ||
} | ||
} | ||
|
||
export { O } | ||
export { One } |
Oops, something went wrong.