How to use the mobx-react-lite.useLocalStore function in mobx-react-lite

To help you get started, we’ve selected a few mobx-react-lite examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github choerodon / devops-service / react / routes / resource / main-view / contents / environment / stores / useStore.js View on Github external
export default function useStore({ defaultTab }) {
  return useLocalStore(() => ({
    tabKey: defaultTab,

    setTabKey(data) {
      this.tabKey = data;
    },
    get getTabKey() {
      return this.tabKey;
    },
    hasPermission: false,
    setPermission(data) {
      this.hasPermission = data;
    },
    get getPermission() {
      return this.hasPermission;
    },
github bsdelf / tikv-browser / web / src / components / Sider.tsx View on Github external
const AddProfileButton = () => {
  const emptyProfile: Profile = {
    name: '',
    tags: [],
    endpoints: [],
  };
  const store = useLocalStore(() => ({
    visiable: false,
    profile: emptyProfile,
    resolve: (profile: Profile) => profiles.add(profile),
  }));
  const onClick = () => {
    runInAction(() => {
      store.profile = emptyProfile;
      store.visiable = true;
    });
  };
  return (
    <div>
      <button size="small"></button>
      
    </div>
  );
github choerodon / devops-service / react / routes / environment / main-view / sidebar / tree-item / stores / useStore.js View on Github external
export default function useStore() {
  return useLocalStore(() => ({
    checkEffect(projectId, id) {
      return axios.post(`/devops/v1/projects/${projectId}/app_service_instances/list_running_instance?env_id=${id}&page=1&size=10`, JSON.stringify({ params: [], searchParam: {} }));
    },

    effectEnv(projectId, id, target) {
      return axios.put(`/devops/v1/projects/${projectId}/envs/${id}/active?active=${target}`);
    },

    deleteEnv(projectId, id) {
      return axios.delete(`/devops/v1/projects/${projectId}/envs/${id}`);
    },
  }));
}
github bsdelf / tikv-browser / web / src / components / CellForm.tsx View on Github external
export const CellForm = observer((props: CellFormProps) => {
  const store = useLocalStore(() => {
    autorun(() => {
      const cell = props.connection.cell;
      if (!cell.name) {
        runInAction(() => {
          store.value = '';
        });
        return;
      }
      const data = new HumanReadableData({ data: cell.data, encoding: store.encoding });
      const text = `${cell.name}: ${cell.data.length} bytes\n\n${data.text}`;
      runInAction(() => {
        store.value = text;
      });
    });
    return { value: '', encoding: defaultDecoderSelectOption.name };
  });
github choerodon / devops-service / react / routes / deployment / stores / useStore.js View on Github external
export default function useStore() {
  return useLocalStore(() => ({

    appService: [],
    setAppService(data) {
      this.appService = data;
    },
    get getAppService() {
      return this.appService.slice();
    },

    configValue: '',
    setConfigValue(data) {
      this.configValue = data;
    },
    get getConfigValue() {
      return this.configValue;
    },
github choerodon / devops-service / react / routes / resource / main-view / stores / useStore.js View on Github external
export default function useStore() {
  return useLocalStore(() => ({
    navBounds: {},
    setNavBounds(data) {
      this.navBounds = data;
    },
    get getNavBounds() {
      return this.navBounds;
    },

    deleteArr: [],
    setDeleteArr(data) {
      this.deleteArr = data;
    },
    get getDeleteArr() {
      return this.deleteArr;
    },
github choerodon / devops-service / react / routes / deployment / main-view / contents / instance / stores / useStore.js View on Github external
export default function useStore() {
  return useLocalStore(() => ({
    tabKey: 'cases',
    detailLoading: false,
    detail: {},
    valueLoading: true,
    upgradeValue: {},

    setTabKey(data) {
      this.tabKey = data;
    },
    get getTabKey() {
      return this.tabKey;
    },
    setDetailLoading(data) {
      this.detailLoading = data;
    },
    get getDetailLoading() {
github choerodon / devops-service / react / routes / resource / main-view / stores / useCustomStore.js View on Github external
export default function useStore() {
  return useLocalStore(() => ({
    singleData: {},
    setSingleData(data) {
      this.singleData = data;
    },
    get getSingleData() {
      return this.singleData;
    },

    async loadSingleData(projectId, id) {
      try {
        const res = await axios.get(`/devops/v1/projects/${projectId}/customize_resource/${id}`);
        if (handlePromptError(res)) {
          this.setSingleData(res);
        }
      } catch (e) {
        Choerodon.handleResponseError(e);
github choerodon / devops-service / react / routes / cluster / main-view / stores / useStore.js View on Github external
export default function useStore() {
  return useLocalStore(() => ({
    navBounds: {},
    setNavBounds(data) {
      this.navBounds = data;
    },
    get getNavBounds() {
      return this.navBounds;
    },
    checkClusterName({ projectId, clusterName }) {
      return axios.get(`/devops/v1/projects/${projectId}/clusters/check_name?name=${clusterName}`);
    },
    checkClusterCode({ projectId, clusterCode }) {
      return axios.get(`/devops/v1/projects/${projectId}/clusters/check_code?code=${clusterCode}`);
    },
    createCluster({ projectId, ...rest }) {
      return axios.post(`/devops/v1/projects/${projectId}/clusters`, JSON.stringify(rest));
    },

mobx-react-lite

Lightweight React bindings for MobX based on React 16.8+ and Hooks

MIT
Latest version published 7 months ago

Package Health Score

96 / 100
Full package analysis