mirror of
https://github.com/frappe/books.git
synced 2025-01-10 18:24:40 +00:00
[setup] use the new create()
This commit is contained in:
parent
fa3a274df9
commit
605f89ffd9
137
setup/index.js
137
setup/index.js
@ -8,90 +8,87 @@ module.exports = class SetupWizard {
|
|||||||
constructor({postSetup = () => {}}) {
|
constructor({postSetup = () => {}}) {
|
||||||
this.slideList = [];
|
this.slideList = [];
|
||||||
this.indicatorList = [];
|
this.indicatorList = [];
|
||||||
this.currentIndex = 0;
|
|
||||||
this.footerLinks = {};
|
this.footerLinks = {};
|
||||||
|
|
||||||
|
this.currentIndex = 0;
|
||||||
this.data = {};
|
this.data = {};
|
||||||
|
|
||||||
this.postSetup = postSetup;
|
this.postSetup = postSetup;
|
||||||
|
this.make();
|
||||||
|
|
||||||
|
this.showSlide(this.currentIndex);
|
||||||
|
}
|
||||||
|
|
||||||
|
make() {
|
||||||
let body = document.querySelector('body');
|
let body = document.querySelector('body');
|
||||||
|
|
||||||
// container
|
|
||||||
this.container = frappe.ui.add('form', 'setup-container container', body);
|
this.container = frappe.ui.add('form', 'setup-container container', body);
|
||||||
|
|
||||||
// dots
|
|
||||||
this.$indicators = frappe.ui.add('div', 'indicators vertical-margin align-center', this.container);
|
this.$indicators = frappe.ui.add('div', 'indicators vertical-margin align-center', this.container);
|
||||||
|
|
||||||
// make form
|
this.makeSlides();
|
||||||
|
this.makeLinks();
|
||||||
|
}
|
||||||
|
|
||||||
|
makeSlides() {
|
||||||
slideConfigs.forEach(config => {
|
slideConfigs.forEach(config => {
|
||||||
this.formLayout = new FormLayout(config);
|
this.formLayout = new FormLayout(config);
|
||||||
this.slideList.push(this.formLayout);
|
this.slideList.push(this.formLayout);
|
||||||
let form = this.formLayout.form;
|
let form = this.formLayout.form;
|
||||||
|
|
||||||
let title = document.createElement('h3');
|
|
||||||
title.innerHTML = config.title;
|
|
||||||
title.classList.add('text-extra-muted');
|
|
||||||
form.insertBefore(title, form.firstChild);
|
|
||||||
this.container.appendChild(form);
|
this.container.appendChild(form);
|
||||||
|
|
||||||
let indicator = document.createElement('span');
|
let title = frappe.ui.create('h3', {
|
||||||
indicator.classList.add('indicator', 'gray');
|
className: 'text-extra-muted',
|
||||||
this.indicatorList.push(indicator);
|
innerHTML: config.title
|
||||||
this.$indicators.appendChild(indicator);
|
})
|
||||||
});
|
form.insertBefore(title, form.firstChild);
|
||||||
|
|
||||||
// make links
|
let indicator = frappe.ui.create('span', {
|
||||||
|
inside: this.$indicators,
|
||||||
|
className: 'indicator gray'
|
||||||
|
})
|
||||||
|
this.indicatorList.push(indicator);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
makeLinks() {
|
||||||
this.linkArea = frappe.ui.add('div', 'setup-link-area align-right', this.container);
|
this.linkArea = frappe.ui.add('div', 'setup-link-area align-right', this.container);
|
||||||
let links = [
|
|
||||||
{
|
|
||||||
label: 'Prev',
|
|
||||||
name: 'prev',
|
|
||||||
action: () => {
|
|
||||||
this.prevSlide();
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: 'Next',
|
|
||||||
name: 'next',
|
|
||||||
action: () => {
|
|
||||||
this.nextSlide();
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: 'Complete',
|
|
||||||
name: 'complete',
|
|
||||||
action: (data) => {
|
|
||||||
this.postSetup();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
];
|
|
||||||
|
|
||||||
// this.formLayout.on('change', () => {
|
// this.formLayout.on('change', () => {
|
||||||
// const show = this.doc._dirty && !this.doc.submitted;
|
// const show = this.doc._dirty && !this.doc.submitted;
|
||||||
// this.saveButton.classList.toggle('hide', !show);
|
// this.saveButton.classList.toggle('hide', !show);
|
||||||
// });
|
// });
|
||||||
|
|
||||||
links.map(link => {
|
this.getFooterLinks().map(link => {
|
||||||
let $link = utils.addLink(link.label, this.linkArea, () => {
|
let $link = utils.addLink(link.label, this.linkArea, () => {
|
||||||
|
this.buildData();
|
||||||
link.action(this.data);
|
link.action(this.data);
|
||||||
});
|
});
|
||||||
this.footerLinks[link.name] = $link;
|
this.footerLinks[link.name] = $link;
|
||||||
})
|
})
|
||||||
|
|
||||||
this.showSlide(this.currentIndex);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
make() {
|
buildData() {
|
||||||
//
|
this.data = {};
|
||||||
|
this.slideList.forEach(slide => {
|
||||||
|
Object.assign(this.data, slide.doc);
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
showSlide(index) {
|
showSlide(index) {
|
||||||
utils.activate(this.container, this.slideList[index].form, 'form-body', 'active');
|
utils.activate(this.container, this.slideList[index].form, 'form-body', 'active');
|
||||||
this.slideList[index].controlList[0].input.blur();
|
this.slideList[index].controlList[0].input.blur();
|
||||||
this.activateIndicator(index);
|
this.activateIndicator(index);
|
||||||
this.setFooterLinks(index);
|
this.showFooterLinks(index);
|
||||||
this.currentIndex = index;
|
this.currentIndex = index;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
prevSlide() {
|
||||||
|
this.showSlide(this.currentIndex - 1);
|
||||||
|
}
|
||||||
|
|
||||||
|
nextSlide() {
|
||||||
|
this.showSlide(this.currentIndex + 1);
|
||||||
|
}
|
||||||
|
|
||||||
activateIndicator(index) {
|
activateIndicator(index) {
|
||||||
this.indicatorList.forEach(indicator => {indicator.classList.add('gray')});
|
this.indicatorList.forEach(indicator => {indicator.classList.add('gray')});
|
||||||
let indicator = this.indicatorList[index];
|
let indicator = this.indicatorList[index];
|
||||||
@ -101,28 +98,38 @@ module.exports = class SetupWizard {
|
|||||||
indicator.classList.remove('gray');
|
indicator.classList.remove('gray');
|
||||||
}
|
}
|
||||||
|
|
||||||
prevSlide() {
|
showFooterLinks(index) {
|
||||||
this.showSlide(this.currentIndex - 1);
|
let mat = [1, 1, 0]
|
||||||
}
|
|
||||||
|
|
||||||
nextSlide() {
|
|
||||||
this.showSlide(this.currentIndex + 1);
|
|
||||||
}
|
|
||||||
|
|
||||||
setFooterLinks(index) {
|
|
||||||
if(index === 0) {
|
if(index === 0) {
|
||||||
this.footerLinks.prev.classList.add('hide');
|
mat = [0, 1, 0];
|
||||||
this.footerLinks.next.classList.remove('hide');
|
|
||||||
this.footerLinks.complete.classList.add('hide');
|
|
||||||
} else if (index === this.slideList.length - 1) {
|
} else if (index === this.slideList.length - 1) {
|
||||||
this.footerLinks.prev.classList.remove('hide');
|
mat = [1, 0, 1];
|
||||||
this.footerLinks.next.classList.add('hide');
|
|
||||||
this.footerLinks.complete.classList.remove('hide');
|
|
||||||
} else {
|
|
||||||
this.footerLinks.prev.classList.remove('hide');
|
|
||||||
this.footerLinks.next.classList.remove('hide');
|
|
||||||
this.footerLinks.complete.classList.add('hide');
|
|
||||||
}
|
}
|
||||||
|
this.showHideLinks(mat);
|
||||||
|
}
|
||||||
|
|
||||||
|
showHideLinks(matrix = [1, 1, 0]) {
|
||||||
|
let linkNames = this.getFooterLinks().map(link => link.name);
|
||||||
|
matrix.forEach((value, i) => {
|
||||||
|
const fn = value ? 'remove' : 'add';
|
||||||
|
this.footerLinks[linkNames[i]].classList[fn]('hide');
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
getFooterLinks() {
|
||||||
|
return [
|
||||||
|
{
|
||||||
|
label: 'Prev', name: 'prev',
|
||||||
|
action: this.prevSlide.bind(this)
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Next', name: 'next',
|
||||||
|
action: this.nextSlide.bind(this)
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Complete', name: 'complete',
|
||||||
|
action: this.postSetup.bind(this)
|
||||||
|
}
|
||||||
|
];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
4674
www/dist/js/bundle.js
vendored
4674
www/dist/js/bundle.js
vendored
File diff suppressed because one or more lines are too long
@ -9,6 +9,7 @@ client.start({
|
|||||||
}).then(() => {
|
}).then(() => {
|
||||||
new SetupWizard({
|
new SetupWizard({
|
||||||
postSetup: async (data) => {
|
postSetup: async (data) => {
|
||||||
|
console.log(data);
|
||||||
client.makeDesk(3);
|
client.makeDesk(3);
|
||||||
appClient.start();
|
appClient.start();
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user