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: 541d581bda8992eb519ff24cf038bd6c64d34c9d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import { __ } from '~/locale';
import 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 getAll = () => images;

  return { add, getAll };
};

export default imageRepository;