mirror of
https://github.com/flarum/framework.git
synced 2024-11-23 13:30:47 +08:00
Use new config keys
This commit is contained in:
parent
ffc2863f70
commit
5fad4acd76
|
@ -4,27 +4,21 @@ export default class WelcomeHero extends Component {
|
|||
constructor(props) {
|
||||
super(props);
|
||||
|
||||
this.title = m.prop('Mithril Forum')
|
||||
this.description = m.prop('Hello')
|
||||
this.hidden = m.prop(localStorage.getItem('welcomeHidden'))
|
||||
this.hidden = m.prop(localStorage.getItem('welcomeHidden'));
|
||||
}
|
||||
|
||||
hide() {
|
||||
localStorage.setItem('welcomeHidden', 'true')
|
||||
this.hidden(true)
|
||||
localStorage.setItem('welcomeHidden', 'true');
|
||||
this.hidden(true);
|
||||
}
|
||||
|
||||
view() {
|
||||
var root = m.prop()
|
||||
var self = this;
|
||||
return this.hidden() ? m('') : m('header.hero.welcome-hero', {config: root}, [
|
||||
return this.hidden() ? m('') : m('header.hero.welcome-hero', {config: this.element}, [
|
||||
m('div.container', [
|
||||
m('button.close.btn.btn-icon.btn-link', {onclick: function() {
|
||||
$(root()).slideUp(self.hide.bind(self))
|
||||
}}, m('i.fa.fa-times')),
|
||||
m('button.close.btn.btn-icon.btn-link', {onclick: () => this.$().slideUp(this.hide.bind(this))}, m('i.fa.fa-times')),
|
||||
m('div.container-narrow', [
|
||||
m('h2', this.title()),
|
||||
m('p', this.description())
|
||||
m('h2', app.config['welcome_title']),
|
||||
m('div.subtitle', m.trust(app.config['welcome_message']))
|
||||
])
|
||||
])
|
||||
])
|
||||
|
|
|
@ -38,7 +38,7 @@ export default class Model {
|
|||
|
||||
return m.request({
|
||||
method: this.exists ? 'PUT' : 'POST',
|
||||
url: app.config.apiURL+'/'+this.data().type+(this.exists ? '/'+this.data().id : ''),
|
||||
url: app.config['api_url']+'/'+this.data().type+(this.exists ? '/'+this.data().id : ''),
|
||||
data: {data},
|
||||
background: true,
|
||||
config: app.session.authorize.bind(app.session)
|
||||
|
@ -53,7 +53,7 @@ export default class Model {
|
|||
|
||||
return m.request({
|
||||
method: 'DELETE',
|
||||
url: app.config.apiURL+'/'+this.data().type+'/'+this.data().id,
|
||||
url: app.config['api_url']+'/'+this.data().type+'/'+this.data().id,
|
||||
background: true,
|
||||
config: app.session.authorize.bind(app.session)
|
||||
}).then(() => this.exists = false);
|
||||
|
|
|
@ -13,7 +13,7 @@ export default class Session extends mixin(class {}, evented) {
|
|||
var self = this;
|
||||
m.request({
|
||||
method: 'POST',
|
||||
url: app.config.baseURL+'/login',
|
||||
url: app.config['base_url']+'/login',
|
||||
data: {identification, password},
|
||||
background: true
|
||||
}).then(function(response) {
|
||||
|
|
|
@ -39,7 +39,7 @@ export default class Store {
|
|||
}
|
||||
return m.request({
|
||||
method: 'GET',
|
||||
url: app.config.apiURL+'/'+endpoint,
|
||||
url: app.config['api_url']+'/'+endpoint,
|
||||
data: params,
|
||||
background: true,
|
||||
config: app.session.authorize.bind(app.session)
|
||||
|
|
Loading…
Reference in New Issue
Block a user