Welcome to mirror list, hosted at ThFree Co, Russian Federation.

image_repository.js « static_site_editor « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 56b2434d2e28b12b235ce67a46dd8bff740f4093 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import { __ } from '~/locale';
import { deprecatedCreateFlash as Flash } from '~/flash';
import { getBinary } from './services/image_service';

const imageRepository = () => {
  const images = new Map();
  const flash = (message) => new Flash(message);

  const add = (file, url) => {
    getBinary(file)
      .then((content) => images.set(url, content))
      .catch(() => flash(__('Something went wrong while inserting your image. Please try again.')));
  };

  const get = (path) => images.get(path);

  const getAll = () => images;

  return { add, get, getAll };
};

export default imageRepository;