summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/static_site_editor/image_repository.js
blob: 02285ccdba3bef4c10783155a7575dbce13b0863 (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 { 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 getAll = () => images;

  return { add, getAll };
};

export default imageRepository;