This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
meetingCount: 50, | |
activeMeetingCount: 10, | |
activeParticipantCount: 214 | |
} | |
] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"id": 42394, | |
"name": "Toplantı 1", | |
"startAt": "2021-06-21 12:04:00", | |
"endAt": "2021-06-21 12:44:00", | |
"createdAt": "2021-01-20 12:04:11", | |
"isOwner": false, | |
"type": "past" | |
"createdBy": "Rıza Rızaoğlu", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"id": 37543431, | |
"name": "join", | |
"userType": "user", | |
"params": [], | |
"room": { | |
"id": 42394, | |
"name": "Mod Kontrolü Testi", | |
"userId": "12040", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Native taraftan gelecek değerler | |
const properties = { | |
formattedDisplayName: selectedUser.formattedDisplayName, | |
displayName: selectedUser.displayName, | |
isHost: selectedUser.isHost, | |
isModerator: selectedUser.isModerator, | |
userId: selectedUser.id, | |
stoysUserId: selectedUser.stoys_user_id, | |
}; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import {useReducer, useEffect} from 'react'; | |
import PropTypes from 'prop-types'; | |
import { subjectReducer, chapterReducer, lessonReducer, treeReducer, videoReducer, testReducer, sLessonReducer } from '../reducers'; | |
import Api from '../../../../helpers/api'; | |
import { | |
prepareSubjectData, | |
prepareChapterData, | |
prepareLessonData, | |
prepareTreeElements, | |
prepareRoute, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"lastUpload":"2020-07-06T08:13:33.801Z","extensionVersion":"v3.4.3"} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Here is my template | |
<RadListView for="(item, index) in items" ref="listView" separatorColor="transparent" bufferSize="3" | |
loadOnDemandMode="Auto" @loadMoreDataRequested="onLoadMore"> | |
---- | |
</RadListView> | |
*/ | |
/* Here is nativescript-ui-listview/vue/component.js related part */ | |
methods:{ | |
.... |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
async.parallel({ | |
one: function(callback) { | |
setTimeout(function() { | |
callback(null, 1); | |
}, 200); | |
}, | |
two: function(callback) { | |
setTimeout(function() { | |
callback(null, 2); | |
}, 100); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
scrollToBottom () { | |
let listView = this.$refs.messagesscroll | |
setTimeout(() => { | |
if (listView && | |
listView.nativeView && | |
listView.nativeView.ios) { | |
listView.nativeView.ios.scrollToRowAtIndexPathAtScrollPositionAnimated(NSIndexPath.indexPathForItemInSection(listView.nativeView.items.length - 1, 0), | |
UITableViewScrollPosition.Bottom, | |
true) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export const openFileDialogBack = function (callback) { | |
let filePath; | |
let file; | |
let context = pickerCreate({mode: "single"}) | |
context.authorize().then(() => { | |
return context.present() | |
}).then((selection) => { | |
selection.forEach(function(selected) { | |
if(selected.android){ |
NewerOlder