Mahsa Shadi
Mahsa Shadi
Hi again after long time. It will be great if we can approve these changes. Thanks. @andersevenrud @ajmeese7
> Have you tried maximizing before rendering ? Yes, no delay happened for maximizing in this way, thanks. Another problem happened due to having a responsive layout with` media-queries`: -...
I examined the code. In addition to explicitly setting options to `{}` in [this line](https://github.com/os-js/osjs-client/blob/385b38f3c4b113d1afaf5775c8402e5f22436a96/src/adapters/vfs/system.js#L62), I think we are loosing the set options, in [this line](https://github.com/os-js/osjs-client/blob/385b38f3c4b113d1afaf5775c8402e5f22436a96/src/utils/fetch.js#L68). Am I right?
In addition to replacing `options : {}` with `options` in [this line](https://github.com/os-js/osjs-client/blob/385b38f3c4b113d1afaf5775c8402e5f22436a96/src/adapters/vfs/system.js#L62), we can do the following changes in two mentioned files: ```js // osjs-client/src/utils/fetch.js // new encodeQueryData implementation const...
https://github.com/os-js/osjs-client/pull/164 https://github.com/os-js/osjs-client/pull/165 https://github.com/os-js/osjs-server/pull/56
As an example, below object is `options` in server-side vfs adapter, sending from file-manager. So by this encoding, the options you set [here](https://github.com/os-js/osjs-filemanager-application/blob/e997a8556e4fedf2b8a7efffc04b660a30df6f3f/index.js#L325), are accessible by _options.options_ ```js { path:...
I just want to ask you if I do the encoding of options in GET url in a correct way. No problem, of course you will check its correctness when...
Great, Thanks a lot. I hope you could find time to check these PRs out.
BTW, What is your idea about adding this pagination feature to your file manager app? As you suggest [here](https://github.com/os-js/osjs-gui/issues/38#issuecomment-904494719), it can be used by adapters supported this interface in their...
> An easier way to do this is simply to set a "page size" and whenever you get a "page" back from the api that is less than this page...