No More Posting New Topics!

If you have a question or an issue, please start a thread in our Github Discussions Forum.
This forum is closed for new threads/ topics.

Navigation

    Quasar Framework

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    1. Home
    2. matroskin
    3. Posts
    • Profile
    • Following 0
    • Followers 0
    • Topics 18
    • Posts 51
    • Best 4
    • Groups 0

    Posts made by matroskin

    • RE: 1.2 update failed

      I haven’t tried yet, just reinstalled npm

      posted in Framework
      matroskin
      matroskin
    • RE: 1.2 update failed

      node.js was removed and installed again
      it helps
      thanks to @Hawkeye64
      so, solved

      posted in Framework
      matroskin
      matroskin
    • RE: 1.2 update failed

      I asked my friend to try npm i @quasar/app at empty dir
      here is result:
      photo_2019-10-11_16-27-52.jpg

      posted in Framework
      matroskin
      matroskin
    • RE: 1.2 update failed

      if I try to create new app from quasar cli:

      Quasar CLI · Generated "test".
      
      [*] Installing project dependencies ...
      
      npm ERR! Unexpected end of JSON input while parsing near '...shint":"2.8.x","nock"'
      
      npm ERR! A complete log of this run can be found in:
      npm ERR!     C:\Users\User\AppData\Roaming\npm-cache\_logs\2019-10-11T12_18_25_052Z-debug.log
      
      npm install FAILED... Possible temporary npm registry issues?
      Please try again later...
      
      posted in Framework
      matroskin
      matroskin
    • 1.2 update failed
      npm i @quasar/app
      npm ERR! Unexpected end of JSON input while parsing near '...shint":"2.8.x","nock"'
      npm ERR! A complete log of this run can be found in:
      npm ERR!     C:\Users\User\AppData\Roaming\npm-cache\_logs\2019-10-11T11_54_27_497Z-debug.log
      

      What’s wrong?
      here is log file
      https://drive.google.com/open?id=1W_MymquTHwlje6Vqvsuzb__q-vPRJKo_JAtU2k0_qgE

      posted in Framework
      matroskin
      matroskin
    • associate links with app

      but also I have SPA at web site www.mysite.com
      but when user open www.mysite.com at his mobile I want that the app run
      I can add
      <data android:host="www.mysite.com" android:scheme="https"/>
      to manifest
      but what url should I write there? am I right, that url of site inside app is localhost?

      posted in Help
      matroskin
      matroskin
    • RE: How to get process.env.GTM in index.template.html?

      Now it works?

      posted in Help
      matroskin
      matroskin
    • RE: adding an id attribute to q-input

      the better use ref instead id

      posted in Help
      matroskin
      matroskin
    • RE: Site Analytics [SOLVED BY matroskin]

      metrika.yandex.ru for web
      amplitude.com for app (the best)

      posted in Framework
      matroskin
      matroskin
    • RE: How to upload photos just taken with the cordova camera plugin

      Hello, please help
      file with key media is sending as [object Object], not as (binary)
      so at backend $_FILES are empty

      		captureImage(source) {
      
      			source = source || 1;
      
      			let cameraConfig = {
      				quality: 50,
      				sourceType: source,
      				destinationType: navigator.camera.DestinationType.FILE_URI,
      				encodingType: navigator.camera.EncodingType.JPEG,
      				mediaType: navigator.camera.MediaType.PICTURE,
      				cameraDirection: navigator.camera.Direction.BACK
      			};
      
      			navigator.camera.getPicture(
      				data => { this.processPicture(data) },
      				error => { this.$q.notify(error) },
      				cameraConfig
      			)
      
      		},
      
      		getFileEntry (fileURL) {
      			return new Promise((resolve, reject) => {
      				window.resolveLocalFileSystemURL(
      					fileURL,
      					fileEntry => {
      						resolve(fileEntry)
      					},
      					err => {
      						reject(err)
      					}
      				)
      			})
      		},
      
      		async getFile(fileEntry) {
      			try {
      				return await new Promise((resolve, reject) => fileEntry.file(resolve, reject));
      			} catch (err) {
      				console.log(err);
      			}
      		},
      
      		async processPicture (path) {
      			const fileEntry = await this.getFileEntry(path);
      			const file = await this.getFile(fileEntry);
      			this.upload(file)
      		},
      
      		upload(file) {
      			let data = new FormData(),
      				headers = { 'Content-Type': 'multipart/form-data' };
      			data.append('media', file);
      			this.$axios.post(this.sendRoute, data, { headers: headers })
      		},
      posted in Framework
      matroskin
      matroskin
    • emphasis in markdown

      how to disable emphasis in markdown?
      link below, I turn all switchers on, but formatting didn’t disappear
      https://quasarframework.github.io/app-extension-qmarkdown/demo/emphasis

      posted in Framework
      matroskin
      matroskin
    • RE: markdown and chat

      Yep, but messages is Array, so I should use v-for in default slot of q-chat-message, am I right?

      posted in Framework
      matroskin
      matroskin
    • RE: transition of components

      As always exhaustive! Thanks, Scott!

      posted in Framework
      matroskin
      matroskin
    • RE: markdown and chat

      nevertheless, I see in docs how to use markdown component, like this <q-markdown>text</q-markdown>
      but how can I use it in methods?

      posted in Framework
      matroskin
      matroskin
    • transition of components

      What components have transitions?
      It does not work
      https://jsfiddle.net/psprokofiev/dtg356fq/2/

      posted in Framework
      matroskin
      matroskin
    • markdown and chat

      How to use @quasar/qmarkdown in QChat component?

      posted in Framework
      matroskin
      matroskin
    • RE: Push Notification With Quasar

      https://documentation.onesignal.com/docs/cordova-sdk-setup

      posted in Framework
      matroskin
      matroskin
    • Auth package

      Hi,
      tell what package do you use to auth?
      I use websanova/vue-auth, but it doesn’t work with safari (

      posted in Show & Tell
      matroskin
      matroskin
    • RE: scss breakpoints

      awesome, looking forward)

      posted in Framework
      matroskin
      matroskin