Moving asgardcms related variables to the AsgardCMS namespace

parent fcb29ed6
......@@ -2,7 +2,7 @@ import PageTable from './components/PageTable.vue'
import PageTableServerSide from './components/PageTableServerSide.vue'
import PageForm from './components/PageForm.vue'
const locales = window.locales;
const locales = window.AsgardCMS.locales;
export default [
{
......
......@@ -75,11 +75,10 @@
@endforeach
<script>
window.AsgardCMS = {
translations: {!! json_encode(['page' => array_dot(trans('page::pages')), 'core' => array_dot(trans('core::core'))]) !!}
translations: {!! json_encode(['page' => array_dot(trans('page::pages')), 'core' => array_dot(trans('core::core'))]) !!},
locales: {!! json_encode(LaravelLocalization::getSupportedLocales()) !!},
currentLocale: '{{ locale() }}',
};
window.locales = {!! json_encode(LaravelLocalization::getSupportedLocales()) !!}
window.currentLocale = '{{ locale() }}';
</script>
<script src="{{ mix('js/app.js') }}"></script>
......
This source diff could not be displayed because it is too large. You can view the blob instead.
......@@ -18,6 +18,8 @@ Vue.component('DeleteButton', require('../../../Modules/Core/Assets/js/component
Vue.component('TagsInput', require('../../../Modules/Tag/Assets/js/components/TagInput.vue'));
import PageRoutes from '../../../Modules/Page/Assets/js/PageRoutes';
const currentLocale = window.AsgardCMS.currentLocale;
const router = new VueRouter({
mode: 'history',
base: `${currentLocale}/backend`,
......
......@@ -48,7 +48,7 @@ if (userApiToken) {
let currentLocale = document.head.querySelector('meta[name="current-locale"]');
if (currentLocale) {
window.currentLocale = currentLocale.content;
window.AsgardCMS.currentLocale = currentLocale.content;
} else {
console.error('Current locale token not found in a meta tag.');
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment