Code Monkey home page Code Monkey logo

Comments (7)

davidhorak avatar davidhorak commented on May 24, 2024

@UIX-Design you can subscribe to the onNavigationChanged event and handle the _qaq.push calls inside you callback function.

from svelte-router.

UIX-Design avatar UIX-Design commented on May 24, 2024

@davidhorak Could you give me a code example, how can i use it? Thanks

from svelte-router.

davidhorak avatar davidhorak commented on May 24, 2024
$router.onNavigationChanged((from, to) => {
        // In the case that you use history mode hash in your router: https://github.com/spaceavocado/svelte-router#create-router
        _paq.push(['setCustomUrl', '/' + to.hash]);
        // if you use history mode:
        _paq.push(['setCustomUrl', '/' + to.fullPath]);
        _paq.push(['setDocumentTitle', document.title]);
        _paq.push(['trackPageView']);
});

from svelte-router.

UIX-Design avatar UIX-Design commented on May 24, 2024

@davidhorak thank you very much, but i get an error on console, when using your code like this:

import {router} from '@spaceavocado/svelte-router';
import {ROUTER_MODE} from '@spaceavocado/svelte-router';
import {HASH_TYPE} from '@spaceavocado/svelte-router';

createRouter({
      routes: [
          {
               //Route Object
           }
      ],
      mode: 'HISTORY'
});

$router.onNavigationChanged((from, to) => {
    _paq.push(['setCustomUrl', '/' + to.fullPath]);
    _paq.push(['setDocumentTitle', document.title]);
    _paq.push(['trackPageView']);
  })

Error: 'router' is not a store with a 'subscribe' method - How can i solve this?

from svelte-router.

davidhorak avatar davidhorak commented on May 24, 2024

Remove the router import, by that time it is not being initialized yet, when you want to access the router instance in the file where you initializing it, you can access it like so:

const router = createRouter(...);

Than the $router ref will work

from svelte-router.

UIX-Design avatar UIX-Design commented on May 24, 2024

@davidhorak thank you, it works now, but the document.title will not be updated... I use the svelte:head in this case. When i try to log the document.title like this:

$router.onNavigationChanged((from, to) => {
    console.log(document.title);
})

I get the error on console: Uncaught TypeError: Cannot read property 'call' of undefined - What does this mean? How can i solve this, so the title will be updated after changing a page?

from svelte-router.

davidhorak avatar davidhorak commented on May 24, 2024

@UIX-Design This does not seems to be related to the router. I would suggest debug, what exactly throws that error, and you can search also for "how to get document title in vanilla JS"

from svelte-router.

Related Issues (16)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.