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
    • Profile
    • Following 0
    • Followers 0
    • Topics 18
    • Posts 51
    • Best 4
    • Groups 0

    matroskin

    @matroskin

    5
    Reputation
    40
    Profile views
    51
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    matroskin Follow

    Best posts made by matroskin

    • default style

      Hi,
      how can I set default props?
      for example I want that all q-card components make bordered

      posted in Framework
      matroskin
      matroskin
    • RE: smooth font

      Thanks! It works)

      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: Push Notification With Quasar

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

      posted in Framework
      matroskin
      matroskin

    Latest 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