當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript feathers.ClientApp類代碼示例

本文整理匯總了TypeScript中@feathersjs/feathers.ClientApp的典型用法代碼示例。如果您正苦於以下問題:TypeScript ClientApp類的具體用法?TypeScript ClientApp怎麽用?TypeScript ClientApp使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了ClientApp類的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: return

 return (app: ClientApp) => {
   app
     .configure(settingsEvents())
     .configure(profileEvents())
     .configure(usersEvents())
     .configure(pickupQueuesEvents())
     .configure(connectionEvents)
     .configure(pickupPlayerEvents);
 };
開發者ID:TF2PickupNET,項目名稱:TF2Pickup,代碼行數:9,代碼來源:events.ts

示例2: return

 return (app: ClientApp) => {
   app
     .service('queues')
     .on('patched', (queue) => {
       store.dispatch({
         type: QueueActionTypes.UPDATE,
         payload: { queue },
       });
     });
 };
開發者ID:TF2PickupNET,項目名稱:TF2Pickup,代碼行數:10,代碼來源:events.ts

示例3: getIdForPlayer

const events = (app: ClientApp) => {
  app
    .service('players')
    .on('created', (player) => {
      const id = getIdForPlayer(player);

      if (id === null) {
        return;
      }

      store.dispatch({
        type: PickupPlayerActionTypes.ADD_PLAYER,
        payload: {
          id,
          player,
        },
      });
    })
    .on('patched', (player) => {
      const id = getIdForPlayer(player);

      if (id === null) {
        return;
      }

      store.dispatch({
        type: PickupPlayerActionTypes.UPDATE_PLAYER,
        payload: {
          id,
          player,
        },
      });
    })
    .on('removed', (player) => {
      const id = getIdForPlayer(player);

      if (id === null) {
        return;
      }

      store.dispatch({
        type: PickupPlayerActionTypes.REMOVE_PLAYER,
        payload: {
          id,
          playerId: player.id,
        },
      });
    });
};
開發者ID:TF2PickupNET,項目名稱:TF2Pickup,代碼行數:49,代碼來源:events.ts

示例4: io

import io from 'socket.io-client';
import auth from '@feathersjs/authentication-client';

import events from './store/events';

const API_ENDPOINT = window.location.hostname === 'localhost'
  ? 'http://localhost:3000'
  : 'https://api.tf2pickup.net';
const SOCKET_TIMEOUT = 2000;

const socket = io(API_ENDPOINT, {
  path: '/ws/',
  transports: ['websocket'],
  reconnection: false,
  timeout: SOCKET_TIMEOUT,
  autoConnect: false,
});
const app: ClientApp = feathers();

app
  .configure(socketio(socket, { timeout: SOCKET_TIMEOUT }))
  .configure(auth({ storage: window.localStorage }))
  .configure(events());

export {
  API_ENDPOINT,
  socket,
};

export default app;
開發者ID:TF2PickupNET,項目名稱:TF2Pickup,代碼行數:30,代碼來源:app.ts


注:本文中的@feathersjs/feathers.ClientApp類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。