Socket
Socket
Sign inDemoInstall

svelte-map-reduce-store

Package Overview
Dependencies
3
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    svelte-map-reduce-store

```typescript import { MapReduce } from 'svelte-map-reduce-store';


Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

Svelte Map Reduce Store

import { MapReduce } from 'svelte-map-reduce-store';

export type Folder = {
  _id: 'hello' | 'test' | 'beta';
  server?: string;
  config?: {
    maxsize: {
      MAXSIZE_ACTION: number;
      MAXSIZE_MEMOCNT: number;
      MAXSIZE_MEMOLINE: number;
    };
    path: {
      DIR_LIB: './lib';
      DIR_HTML: './html';
      DIR_RS: './rs';
      DIR_VIL: './data/vil';
      DIR_USER: '../data/user';
    };
  };
};

export const Folders = MapReduce({
  format: () => ({
    list: [] as Folder[],
    sameSites: new Set([location.origin])
  }),
  reduce: (data, doc) => {
    if (doc.server) data.sameSites.add(`http://${doc.server}`);
  },
  order: (data, { sort, group_sort }, mode: 'asc' | 'desc') => {
    data.list = sort(data.list)[mode]((o) => o.server);
  }
});
<script lang="ts">
  import { Folders } from './model';

  Folders.add([
    {
      _id: 'hello',
      server: 'https://localhost/hello-world'
    },
    {
      _id: 'test',
      server: 'https://localhost/testpage'
    }
  ]);

  Folders.deploy({
    hello: {
      server: 'https://localhost/hello-world'
    },
    test: {
      server: 'https://localhost/testpage'
    }
  });

  Folders.find('hello');
  Folders.reduce(['hello', 'test'], (o: { count: number }) => {
    o.count ||= 0;
    o.count++;
  }).asc((o) => o.count);

  Folders.sort('desc');
  Folders.sort('asc');

  $: console.log($Folders.list);
</script>

Keywords

FAQs

Last updated on 13 Feb 2022

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc