Skip to content

Commit bb6d154

Browse files
committed
Make loader for wp version enabled (saving) #156874246804752
1 parent 8f3b7e4 commit bb6d154

File tree

8 files changed

+111
-257
lines changed

8 files changed

+111
-257
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -51,3 +51,6 @@ public/dist/
5151
.env
5252
composer.lock
5353
test-coverage.xml
54+
55+
cache/*
56+
!cache/.gitkeep

cache/autoload-1.0.0-dev-2.php

-130
This file was deleted.

public/editor/modules/ui/navbar/lib/control.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ export default class Control extends React.Component {
7373

7474
render () {
7575
let value = this.props.value
76-
return React.createElement(value.icon, { value: value })
76+
return React.createElement(value.icon, { value: value, api: this.props.api })
7777
}
7878
}
7979
Control.propTypes = {

public/editor/modules/ui/save-data/lib/navbar-dropdown-control.js

-50
This file was deleted.

public/editor/modules/ui/save-data/module.js

-3
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,3 @@ vcCake.add('ui-save-data', function (api) {
1818
})
1919
})
2020
require('./lib/navbar-save-button')
21-
22-
// require('./lib/navbar-dropdown-control')
23-

public/editor/modules/ui/wordpress-post/lib/navbar-dropdown-control.js

-30
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,107 @@
1+
var vcCake = require('vc-cake')
2+
var React = require('react')
3+
var classNames = require('classnames')
4+
require('../../../../../sources/less/ui/loader/init.less')
5+
6+
class WordPressPostSaveControl extends React.Component {
7+
constructor (props) {
8+
super(props)
9+
this.state = {
10+
saving: false
11+
}
12+
}
13+
14+
clickSaveData () {
15+
this.setState({ 'saving': true })
16+
setTimeout((() => {
17+
this.setState({ 'saving': false })
18+
this.setState({ 'saved': true })
19+
}).bind(this), 500
20+
)
21+
setTimeout((() => {
22+
this.setState({ 'saved': false })
23+
}).bind(this), 5000
24+
)
25+
this.props.api.notify('save')
26+
}
27+
28+
render () {
29+
var saveButtonClasses = classNames({
30+
'vcv-ui-navbar-control': true,
31+
'vcv-ui-state--success': this.state.saved
32+
})
33+
var saveIconClasses = classNames({
34+
'vcv-ui-navbar-control-icon': true,
35+
'vcv-ui-wp-spinner': this.state.saving,
36+
'vcv-ui-icon': !this.state.saving,
37+
'vcv-ui-icon-save': !this.state.saving
38+
})
39+
return (
40+
<div className="vcv-ui-navbar-controls-group vcv-ui-pull-end">
41+
<a className={saveButtonClasses} title="Save" onClick={this.clickSaveData.bind(this)}><span
42+
className="vcv-ui-navbar-control-content">
43+
<i className={saveIconClasses}></i><span>Save</span>
44+
</span></a>
45+
</div>
46+
)
47+
}
48+
}
49+
50+
class WordPressAdminControl extends React.Component {
51+
constructor (props) {
52+
super(props)
53+
this.state = window.vcvPostData
54+
}
55+
56+
render () {
57+
var saveDraftButton = ''
58+
if (
59+
this.state.status !== 'publish' &&
60+
this.state.status !== 'future' &&
61+
this.state.status !== 'pending' &&
62+
this.state.status !== 'private'
63+
) {
64+
saveDraftButton = (
65+
<a className="vcv-ui-navbar-control" href={this.state.permalink} title="Save Draft"><span
66+
className="vcv-ui-navbar-control-content">Save Draft</span></a>
67+
)
68+
}
69+
70+
var viewButton = ''
71+
if (this.state.status === 'publish') {
72+
viewButton = (
73+
<a className="vcv-ui-navbar-control" href={this.state.permalink} title="View Page"><span
74+
className="vcv-ui-navbar-control-content">View Page</span></a>
75+
)
76+
}
77+
var previewText = this.state.status === 'publish' ? 'Preview Changes' : 'Preview'
78+
var previewButton = (
79+
<a className="vcv-ui-navbar-control" href={this.state.previewUrl} title={previewText}><span
80+
className="vcv-ui-navbar-control-content">{previewText}</span></a>
81+
)
82+
83+
return (
84+
<div>
85+
{saveDraftButton}
86+
{previewButton}
87+
{viewButton}
88+
</div>
89+
)
90+
}
91+
}
92+
93+
vcCake.add('ui-wordpress-navbar-wp-admin',
94+
(api) => {
95+
api.module('ui-navbar').do('addElement', 'Wordpress Post Save Button', <WordPressPostSaveControl api={api} />,
96+
{
97+
pin: 'visible'
98+
}
99+
)
100+
api.module('ui-navbar').do('addElement', 'Wordpress Admin Controls', WordPressAdminControl,
101+
{
102+
pin: 'hidden'
103+
}
104+
)
105+
}
106+
)
107+

public/editor/modules/ui/wordpress-post/lib/navbar-save-button.js

-43
This file was deleted.

0 commit comments

Comments
 (0)