Skip to content

Commit 5c5bb0d

Browse files
committed
[IMP] awesome_owl: counters, a card and a to do list
1 parent 5e36068 commit 5c5bb0d

File tree

11 files changed

+180
-3
lines changed

11 files changed

+180
-3
lines changed

awesome_owl/static/src/card/card.js

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
import { Component, useState } from "@odoo/owl";
2+
3+
export class Card extends Component {
4+
static template = "awesome_owl.card";
5+
// static props = {
6+
// title : {type: String },
7+
// content : {type: String },
8+
// }
9+
setup() {
10+
this.state= useState({ 'open': false });
11+
}
12+
13+
flip_state(){
14+
this.state.open = !this.state.open
15+
}
16+
}

awesome_owl/static/src/card/card.xml

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<?xml version="1.0" encoding="UTF-8" ?>
2+
<templates xml:space="preserve">
3+
4+
<t t-name="awesome_owl.card">
5+
<div class="card d-inline-block m-2" style="width: 18rem;">
6+
<div class="card-body">
7+
<h3>
8+
I'm a card
9+
<button t-on-click="flip_state">Toggle</button>
10+
</h3>
11+
<t t-if="state.open">
12+
<t t-slot="default"/>
13+
</t>
14+
</div>
15+
</div>
16+
</t>
17+
</templates>
+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
import { Component,useState } from "@odoo/owl";
2+
3+
export class Counter extends Component {
4+
static template = "awesome_owl.counter";
5+
static props = {
6+
onChange : {type: Function, optional: true},
7+
}
8+
9+
setup() {
10+
this.state = useState({value: 0 });
11+
}
12+
13+
increment() {
14+
this.state.value++;
15+
this.props.onChange()
16+
}
17+
}
+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<?xml version="1.0" encoding="UTF-8" ?>
2+
<templates xml:space="preserve">
3+
4+
<t t-name="awesome_owl.counter">
5+
<h5>
6+
I count your clickies
7+
</h5>
8+
<p>
9+
Counter: <t t-esc="state.value"/>
10+
<button class="btn btn-primary" t-on-click="increment">
11+
Click me to increment
12+
</button>
13+
</p>
14+
</t>
15+
16+
</templates>

awesome_owl/static/src/playground.js

+17-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,23 @@
11
/** @odoo-module **/
22

3-
import { Component } from "@odoo/owl";
3+
import { Component, useState } from "@odoo/owl";
4+
import { Counter } from "./counter/counter";
5+
import { Card } from "./card/card";
6+
import { ToDoList } from "./todolist/todolist";
47

58
export class Playground extends Component {
69
static template = "awesome_owl.playground";
10+
static components = { Counter, Card, ToDoList }
11+
// title = markup("<div>I am a title</div>")
12+
// content = markup("<div>some content</div>")
13+
14+
setup() {
15+
this.sum = useState({value: 2 });
16+
17+
}
18+
19+
incrementSum() {
20+
this.sum.value++;
21+
}
22+
723
}

awesome_owl/static/src/playground.xml

+13-2
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,20 @@
22
<templates xml:space="preserve">
33

44
<t t-name="awesome_owl.playground">
5-
<div class="p-3">
6-
hello world
5+
<div>
6+
<h1>
7+
Hello World \(0o0)/
8+
</h1>
79
</div>
10+
<Counter onChange.bind="incrementSum"/>
11+
<Counter onChange.bind="incrementSum"/>
12+
I'm a sum of all the clickies: <t t-esc="sum.value"/>
13+
<div>
14+
<Card>
15+
<Counter onChange.bind="incrementSum"/>
16+
</Card>
17+
</div>
18+
<ToDoList/>
819
</t>
920

1021
</templates>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
import { Component,useState } from "@odoo/owl";
2+
3+
export class ToDoItem extends Component {
4+
static template = "awesome_owl.todoitem";
5+
6+
static props = {
7+
todo : {type: Object, optional: true},
8+
todo_index : {type: Number, optional: true},
9+
}
10+
11+
removeTodo() {
12+
this.props.todo.splice("props.todo_index", 1);
13+
}
14+
15+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<?xml version="1.0" encoding="UTF-8" ?>
2+
<templates xml:space="preserve">
3+
4+
<t t-name="awesome_owl.todoitem">
5+
<div>
6+
<input type="checkbox" t-model="props.todo.isCompleted"/>
7+
<p t-attf-class="{{props.todo.isCompleted == true ? 'text-muted text-decoration-line-through' : ''}}">
8+
<t t-esc="((props.todo_index)+1) + '. ' + props.todo.description"/>
9+
<button class="fa fa-remove" t-on-click="removeTodo"/>
10+
</p>
11+
</div>
12+
</t>
13+
14+
</templates>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
import { Component,useState, useRef, onMounted } from "@odoo/owl";
2+
import { ToDoItem } from "../todoitem/todoitem";
3+
import { useAutofocus } from '../utils.js';
4+
5+
6+
export class ToDoList extends Component {
7+
static template = "awesome_owl.todolist";
8+
static components = { ToDoItem };
9+
10+
setup (){
11+
this.todos = useState({todos_list:[], current_input: ""});
12+
useAutofocus('focus')
13+
// alternative way
14+
// this.focusRef = useRef('focus');
15+
// onMounted(() => {
16+
// this.focus.el.focus()
17+
// })
18+
}
19+
20+
addTodo (ev){
21+
if (ev.keyCode === 13 && this.todos.current_input){
22+
this.todos.todos_list.push({ description: this.todos.current_input , isCompleted: false})
23+
this.todos.current_input = ''
24+
}
25+
}
26+
27+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<?xml version="1.0" encoding="UTF-8" ?>
2+
<templates xml:space="preserve">
3+
4+
<t t-name="awesome_owl.todolist">
5+
<h3>To Do List</h3>
6+
<input type="text" t-on-keyup="addTodo" t-model="todos.current_input" t-ref="focus"/>
7+
<p t-foreach="todos.todos_list" t-as="todo" t-key="todo_index">
8+
<ToDoItem todo="todo" todo_index="todo_index"/>
9+
</p>
10+
</t>
11+
12+
</templates>

awesome_owl/static/src/utils.js

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
import { useRef, useEffect } from "@odoo/owl";
2+
3+
function useAutofocus(refname) {
4+
5+
let ref = useRef(refname);
6+
useEffect(
7+
(el) => el && el.focus(),
8+
() => [ref.el]
9+
);
10+
11+
12+
}
13+
14+
export {
15+
useAutofocus
16+
};

0 commit comments

Comments
 (0)