23537355b6
no issue - Adds live preview of members.js modal UI to the new settings modal behind dev flag - Uses `gh-site-iframe` to render site in preview mode with custom portal url
24 lines
836 B
JavaScript
24 lines
836 B
JavaScript
import Component from '@ember/component';
|
|
import {computed} from '@ember/object';
|
|
import {inject as service} from '@ember/service';
|
|
|
|
export default Component.extend({
|
|
config: service(),
|
|
tagName: '',
|
|
srcUrl: computed('src', function () {
|
|
return this.src || `${this.config.get('blogUrl')}/`;
|
|
}),
|
|
didReceiveAttrs() {
|
|
// reset the src attribute each time the guid changes - allows for
|
|
// a click on the navigation item to reset back to the homepage
|
|
if ((this.guid !== this._lastGuid) || (this.src !== this._lastSrc)) {
|
|
let iframe = document.querySelector('#site-frame');
|
|
if (iframe) {
|
|
iframe.src = this.src || `${this.config.get('blogUrl')}/`;
|
|
}
|
|
}
|
|
this._lastGuid = this.guid;
|
|
this._lastSrc = this.src;
|
|
}
|
|
});
|