mirror of
https://github.com/flynx/pWiki.git
synced 2025-12-25 12:21:58 +00:00
Compare commits
No commits in common. "934cae33f37c975f6c04306e125eab9ec893f742" and "5cd04af9f226c90c6cefc84e266f805ca266da28" have entirely different histories.
934cae33f3
...
5cd04af9f2
@ -1776,20 +1776,7 @@ var Outline = {
|
||||
|
||||
// serialization...
|
||||
data: function(elem, deep=true){
|
||||
var that = this
|
||||
elem =
|
||||
// all elements...
|
||||
(elem == 'all' || elem == 'root' || elem == '*') ?
|
||||
[...this.outline.children]
|
||||
: elem instanceof Array ?
|
||||
elem
|
||||
: this.get(elem)
|
||||
// multiple nodes...
|
||||
if(elem instanceof Array){
|
||||
return elem
|
||||
.map(function(elem){
|
||||
return that.data(elem) }) }
|
||||
// single node...
|
||||
elem = this.get(elem)
|
||||
// XXX move these to config...
|
||||
var attrs = this.__block_attrs__
|
||||
var cls_attrs = ['focused']
|
||||
@ -1808,23 +1795,17 @@ var Outline = {
|
||||
&& (res[attr] = true) }
|
||||
return res }, {})),
|
||||
...(deep ?
|
||||
//{children: this.json(elem)}
|
||||
{children: [...elem.lastChild.children]
|
||||
.map(function(elem){
|
||||
return that.data(elem) })}
|
||||
{children: this.json(elem)}
|
||||
: {}),
|
||||
} },
|
||||
// XXX do we need both this and data???
|
||||
// ...the only differences are:
|
||||
// - the default behavior node vs all
|
||||
// - .json() always returns an array
|
||||
// XXX should this always return a list???
|
||||
json: function(node='all'){
|
||||
return [this.data(...(
|
||||
arguments.length == 0 ?
|
||||
['all']
|
||||
: arguments))]
|
||||
.flat() },
|
||||
json: function(node){
|
||||
var that = this
|
||||
var children = [...(node ?
|
||||
node.lastChild.children
|
||||
: this.outline.children)]
|
||||
return children
|
||||
.map(function(elem){
|
||||
return that.data(elem) }) },
|
||||
|
||||
// XXX should this handle children???
|
||||
// XXX revise name...
|
||||
|
||||
@ -144,6 +144,8 @@ var setup = function(){
|
||||
- add loading spinner -- `.loading` class set on `.load(..)` and unset when done...
|
||||
- DONE set/unset class
|
||||
- add animation
|
||||
- `.json(..)`, `.data(..)`, ... should be signature compatible with `.get(..)` (???)
|
||||
- _current state causes constant confusion..._
|
||||
- Time to think about a standalone client -- at least to edit own notes as a test...
|
||||
- _also this would be a nice opportunity to start the move to a newer electron version_
|
||||
- Q: Make the heading level depend on its depth??
|
||||
@ -256,7 +258,6 @@ var setup = function(){
|
||||
- `<editable/>` -- field marker
|
||||
- each child node will copy the template and allow editing of only fields
|
||||
- not clear how to handle template changes...
|
||||
- DONE `.json(..)`, `.data(..)`, ... should be signature compatible with `.get(..)` (???)
|
||||
- DONE Q: Should we use `HTMLTextAreaElement.autoUpdateSize(..)` or handle it globally in setup???
|
||||
collapsed:: true
|
||||
- _...I'm leaning towards the later..._
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user